@ -26,30 +26,37 @@ from stat import S_IRUSR, S_IWUSR
import yaml
import yaml
from ansible import constants as C
from ansible . module_utils . _text import to_bytes , to_text
from ansible . utils . display import Display
from ansible . utils . display import Display
display = Display ( )
display = Display ( )
class GalaxyToken ( object ) :
class GalaxyToken ( object ) :
''' Class to storing and retrieving token in ~/.ansible_galaxy '''
''' Class to storing and retrieving local galaxy token '''
def __init__ ( self ) :
def __init__ ( self ) :
self . file = os . path . expanduser ( " ~ " ) + ' /.ansible_galaxy '
self . b_file = to_bytes ( C . GALAXY_TOKEN_PATH )
self . config = yaml . safe_load ( self . __open_config_for_read ( ) )
self . config = yaml . safe_load ( self . __open_config_for_read ( ) )
if not self . config :
if not self . config :
self . config = { }
self . config = { }
def __open_config_for_read ( self ) :
def __open_config_for_read ( self ) :
if os . path . isfile ( self . file ) :
display . vvv ( ' Opened %s ' % self . file )
f = None
return open ( self . file , ' r ' )
action = ' Opened '
# config.yml not found, create and chomd u+rw
if not os . path . isfile ( self . b_file ) :
f = open ( self . file , ' w ' )
# token file not found, create and chomd u+rw
f = open ( self . b_file , ' w ' )
f . close ( )
f . close ( )
os . chmod ( self . file , S_IRUSR | S_IWUSR ) # owner has +rw
os . chmod ( self . b_file , S_IRUSR | S_IWUSR ) # owner has +rw
display . vvv ( ' Created %s ' % self . file )
action = ' Created '
return open ( self . file , ' r ' )
f = open ( self . b_file , ' r ' )
display . vvv ( ' %s %s ' % ( action , to_text ( self . b_file ) ) )
return f
def set ( self , token ) :
def set ( self , token ) :
self . config [ ' token ' ] = token
self . config [ ' token ' ] = token
@ -59,5 +66,5 @@ class GalaxyToken(object):
return self . config . get ( ' token ' , None )
return self . config . get ( ' token ' , None )
def save ( self ) :
def save ( self ) :
with open ( self . file, ' w ' ) as f :
with open ( self . b_ file, ' w ' ) as f :
yaml . safe_dump ( self . config , f , default_flow_style = False )
yaml . safe_dump ( self . config , f , default_flow_style = False )