def __init__(self, master, wizard, vars): Tkinter.Frame.__init__(self, master) self.wizard = wizard self.vars = vars self.title = 'Enter User ID' self.gale_user = Tkinter.StringVar() user = pygale.gale_user() self.gale_user.set(user) self.grid_propagate(0) self.grid_rowconfigure(0, weight = 1) self.grid_rowconfigure(1, weight = 1) self.grid_columnconfigure(0, weight = 1) self.label = Tkinter.Label(self, wraplength = 310, anchor = 'nw', justify = 'left', text = "Gale user id\n\nEnter your Gale id. This id identifies you to other Gale users. You must have a valid public/private key pair for this id.") self.entry = Tkinter.Entry(self, textvariable = self.gale_user)
def run_setup(): print get_gale_sys_env() print print 'PyGale configuration' galedir = gale_env.get('PYGALE_DIR', os.path.join(userinfo.home_dir, '.gale')) if not os.path.exists(galedir): print 'Creating directory', galedir # make PYGALE_DIR make_path(galedir) conffile = os.path.join(galedir, PYGALE_CONF) if os.path.exists(conffile): print 'Reading settings from %s' % conffile gale_env.load_file(conffile) gale_sys_dir = gale_env.get('GALE_SYS_DIR', '/usr/local/etc/gale') print print 'Gale system directory' print 'This directory contains the public key cache and other Gale-' print 'specific data. It can and should be shared between Gale users' print 'on the same machine or network. If you have an existing Gale' print 'installation, enter its path here. Otherwise, I will create' print 'this directory for you.' gsd = raw_input('Gale system directory [%s]: ' % gale_sys_dir) if gsd: gale_sys_dir = gsd gale_env.set('GALE_SYS_DIR', gale_sys_dir) print print 'Gale domain' print 'Enter the default domain to be appended to unqualified locations.' print 'It also determines the Gale server you connect to.' print "If you don't know what this is, contact your local Gale" print 'administrator.' domain = gale_env.get('GALE_DOMAIN', None) if domain is None: try: domain = socket.gethostbyaddr(socket.gethostname())[0] except: domain = 'NODOMAIN' gd = raw_input('Gale domain [%s]: ' % domain) if gd: domain = gd gale_env.set('GALE_DOMAIN', domain) print print 'Gale ID' print 'Enter the id that identifies you to other Gale users. You must' print 'have a valid public/private key pair for this id.' gale_user = pygale.gale_user() gu = raw_input('Gale ID [%s]: ' % gale_user) if gu: gale_user = gu gale_env.set('GALE_ID', gale_user) # check for private key file privkey = os.path.join(galedir, 'auth', 'private', gale_user) privkey_gpri = os.path.join(galedir, 'auth', 'private', gale_user + '.gpri') file_exists = 0 if os.path.exists(privkey_gpri) or os.path.exists(privkey): file_exists = 1 while not file_exists: print print 'The Gale ID you have specified requires a private key file.' print 'Normally it would exist as one of these files:' print ' ', privkey_gpri print ' ', privkey print 'Please enter the location of your private key file.' pkf = raw_input('Private key file: ') if not os.path.exists(pkf): continue if pkf == privkey or pkf == privkey_gpri: file_exists = 1 continue print 'Copying private key to %s' % privkey_gpri if not os.path.exists(os.path.dirname(privkey_gpri)): make_path(os.path.dirname(privkey_gpri)) shutil.copy(pkf, privkey_gpri) file_exists = 1 # select user name print print 'Enter your name. This is a freeform string that accompanies' print 'every puff. People generally use their full name (e.g., Joe' print 'Smith).' # Use (in order) GALE_NAME or our username fullname = gale_env.get('GALE_NAME', userinfo.user_name) gn = raw_input('Name [%s]: ' % fullname) if gn: fullname = gn gale_env.set('GALE_NAME', fullname) # write write_settings()