Esempio n. 1
0
def get_gale_sys_env():	
	pygaledir = gale_env.get('PYGALE_DIR',
		os.path.join(userinfo.home_dir, '.gale'))
	fname = os.path.join(pygaledir, PYGALE_CONF)
	if os.path.exists(fname):
		gale_env.load_file(fname)
		result = 'Reading PyGale settings from ' + fname
	else:
		# Assume some reasonable defaults
		try:
			gale_env.set('GALE_SYS_DIR', os.path.join(string.strip(
				os.popen('gale-config --prefix', 'r').read()),
				'etc', 'gale'))
		except:			
			# Can't find gale-config; Gale probably isn't installed
			if sys.platform == 'win32':
				gale_env.set('GALE_SYS_DIR', get_start_dir())
			else:
				gale_env.set('GALE_SYS_DIR', '/usr/local/etc/gale')
		conffile = os.path.join(gale_env.get('GALE_SYS_DIR'), 'conf')
		if os.path.exists(conffile):
			confvars = gale_env.parse_sys_conf(conffile)
			result = 'Reading Gale settings from ' + conffile
		else:
			confvars = {}
			result = 'No existing Gale configuration found'
		if confvars.has_key('GALE_DOMAIN'):
			gale_env.set('GALE_DOMAIN', confvars['GALE_DOMAIN'])
		
	return result
Esempio n. 2
0
	def __init__(self, master, wizard, vars):
		Tkinter.Frame.__init__(self, master)
		self.wizard = wizard
		self.vars = vars
		self.title = 'PyGale configuration'
		self.galedir = gale_env.get('PYGALE_DIR',
			os.path.join(userinfo.home_dir, '.gale'))
		if not os.path.exists(self.galedir):
			create_str = "\n\nThis directory does not exist.  I'll " +\
				     'create it for you.\n'
		else:
			create_str = '\n\nGood!  This directory already exists.\n'
		
		conffile = os.path.join(self.galedir, PYGALE_CONF)
		if os.path.exists(conffile):
			create_str = create_str + "I'll read the settings from " +\
				'your existing conf file.\n'
			gale_env.load_file(conffile)

		self.label = Tkinter.Label(self, wraplength=310, anchor='nw',
			justify='left', text=
			'PyGale configuration, version %s\n\n' % version.VERSION +
			'By default, this configuration will be stored in the ' +
			'.gale directory in your home directory.  Optionally, you ' +
			'can set the environment variable PYGALE_DIR to a directory ' +
			'where the configuration file will be stored.\n\n' +
			'Your Gale directory is: ' + self.galedir +
			create_str
			)
Esempio n. 3
0
def check():
	pygaledir = gale_env.get('PYGALE_DIR',
		os.path.join(userinfo.home_dir, '.gale'))
	conf_file = os.path.join(pygaledir, PYGALE_CONF)
	if os.path.exists(conf_file):
		gale_env.load_file(conf_file)
		if gale_env.get('PYGALE_VERSION', '1.0') >= version.VERSION:
			return
	run_gui_setup()
Esempio n. 4
0
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()