forked from indymedia/epicyon
Configuration file functions
parent
b1e46d74d3
commit
e783b99737
|
@ -0,0 +1,44 @@
|
||||||
|
__filename__ = "config.py"
|
||||||
|
__author__ = "Bob Mottram"
|
||||||
|
__license__ = "AGPL3+"
|
||||||
|
__version__ = "0.0.1"
|
||||||
|
__maintainer__ = "Bob Mottram"
|
||||||
|
__email__ = "bob@freedombone.net"
|
||||||
|
__status__ = "Production"
|
||||||
|
|
||||||
|
import os
|
||||||
|
import json
|
||||||
|
import commentjson
|
||||||
|
|
||||||
|
def createConfig(baseDir: str) -> None:
|
||||||
|
"""Creates a configuration file
|
||||||
|
"""
|
||||||
|
configFilename=baseDir+'/config.json'
|
||||||
|
if os.path.isfile(configFilename):
|
||||||
|
return
|
||||||
|
configJson = {
|
||||||
|
}
|
||||||
|
with open(configFilename, 'w') as fp:
|
||||||
|
commentjson.dump(configJson, fp, indent=4, sort_keys=True)
|
||||||
|
|
||||||
|
def setConfigParam(baseDir: str, variableName: str, variableValue) -> None:
|
||||||
|
"""Sets a configuration value
|
||||||
|
"""
|
||||||
|
createConfig(baseDir)
|
||||||
|
configFilename=baseDir+'/config.json'
|
||||||
|
with open(configFilename, 'r') as fp:
|
||||||
|
configJson=commentjson.load(fp)
|
||||||
|
configJson[variableName]=variableValue
|
||||||
|
with open(configFilename, 'w') as fp:
|
||||||
|
commentjson.dump(configJson, fp, indent=4, sort_keys=True)
|
||||||
|
|
||||||
|
def getConfigParam(baseDir: str, variableName: str):
|
||||||
|
"""Gets a configuration value
|
||||||
|
"""
|
||||||
|
createConfig(baseDir)
|
||||||
|
configFilename=baseDir+'/config.json'
|
||||||
|
with open(configFilename, 'r') as fp:
|
||||||
|
configJson=commentjson.load(fp)
|
||||||
|
if configJson.get(variableName):
|
||||||
|
return configJson[variableName]
|
||||||
|
return None
|
101
epicyon.py
101
epicyon.py
|
@ -36,6 +36,8 @@ from follow import unfollowPerson
|
||||||
from follow import unfollowerOfPerson
|
from follow import unfollowerOfPerson
|
||||||
from tests import testPostMessageBetweenServers
|
from tests import testPostMessageBetweenServers
|
||||||
from tests import runAllTests
|
from tests import runAllTests
|
||||||
|
from config import setConfigParam
|
||||||
|
from config import getConfigParam
|
||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
def str2bool(v):
|
def str2bool(v):
|
||||||
|
@ -49,9 +51,9 @@ def str2bool(v):
|
||||||
raise argparse.ArgumentTypeError('Boolean value expected.')
|
raise argparse.ArgumentTypeError('Boolean value expected.')
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(description='ActivityPub Server')
|
parser = argparse.ArgumentParser(description='ActivityPub Server')
|
||||||
parser.add_argument('-d','--domain', dest='domain', type=str,default='localhost',
|
parser.add_argument('-d','--domain', dest='domain', type=str,default=None,
|
||||||
help='Domain name of the server')
|
help='Domain name of the server')
|
||||||
parser.add_argument('-p','--port', dest='port', type=int,default=8085,
|
parser.add_argument('-p','--port', dest='port', type=int,default=None,
|
||||||
help='Port number to run on')
|
help='Port number to run on')
|
||||||
parser.add_argument('--path', dest='baseDir', type=str,default=os.getcwd(),
|
parser.add_argument('--path', dest='baseDir', type=str,default=os.getcwd(),
|
||||||
help='Directory in which to store posts')
|
help='Directory in which to store posts')
|
||||||
|
@ -116,9 +118,28 @@ baseDir=args.baseDir
|
||||||
if baseDir.endswith('/'):
|
if baseDir.endswith('/'):
|
||||||
print("--path option should not end with '/'")
|
print("--path option should not end with '/'")
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
|
# get domain name from configuration
|
||||||
|
configDomain=getConfigParam(baseDir,'domain')
|
||||||
|
if configDomain:
|
||||||
|
domain=configDomain
|
||||||
|
else:
|
||||||
|
domain='localhost'
|
||||||
|
|
||||||
|
# get port number from configuration
|
||||||
|
configPort=getConfigParam(baseDir,'port')
|
||||||
|
if configPort:
|
||||||
|
port=configPort
|
||||||
|
else:
|
||||||
|
port=8085
|
||||||
|
|
||||||
nickname='admin'
|
nickname='admin'
|
||||||
domain=args.domain
|
if args.domain:
|
||||||
port=args.port
|
domain=args.domain
|
||||||
|
setConfigParam(baseDir,'domain',domain)
|
||||||
|
if args.port:
|
||||||
|
port=args.port
|
||||||
|
setConfigParam(baseDir,'port',port)
|
||||||
httpPrefix='https'
|
httpPrefix='https'
|
||||||
if args.http:
|
if args.http:
|
||||||
httpPrefix='http'
|
httpPrefix='http'
|
||||||
|
@ -132,21 +153,23 @@ if args.addaccount:
|
||||||
domain=args.addaccount.split('@')[1]
|
domain=args.addaccount.split('@')[1]
|
||||||
else:
|
else:
|
||||||
nickname=args.addaccount
|
nickname=args.addaccount
|
||||||
if not args.domain:
|
if not args.domain or not getConfigParam(baseDir,'domain'):
|
||||||
print('Use the --domain option to set the domain name')
|
print('Use the --domain option to set the domain name')
|
||||||
sys.exit()
|
sys.exit()
|
||||||
if not args.password:
|
if not args.password:
|
||||||
print('Use the --password option to set the password for '+nickname)
|
print('Use the --password option to set the password for '+nickname)
|
||||||
sys.exit()
|
sys.exit()
|
||||||
if len(args.password.strip())<8:
|
if len(args.password.strip())<8:
|
||||||
print('Password should be at least 8 characters')
|
print('Password should be at least 8 characters')
|
||||||
sys.exit()
|
sys.exit()
|
||||||
if os.path.isdir(baseDir+'/accounts/'+nickname+'@'+domain):
|
if os.path.isdir(baseDir+'/accounts/'+nickname+'@'+domain):
|
||||||
print('Account already exists')
|
print('Account already exists')
|
||||||
sys.exit()
|
sys.exit()
|
||||||
createPerson(baseDir,nickname,domain,port,httpPrefix,False,args.password.strip())
|
createPerson(baseDir,nickname,domain,port,httpPrefix,True,args.password.strip())
|
||||||
if os.path.isdir(baseDir+'/accounts/'+nickname+'@'+domain):
|
if os.path.isdir(baseDir+'/accounts/'+nickname+'@'+domain):
|
||||||
print('Account created for '+nickname+'@'+domain)
|
print('Account created for '+nickname+'@'+domain)
|
||||||
|
else:
|
||||||
|
print('Account creation failed')
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
if args.rmaccount:
|
if args.rmaccount:
|
||||||
|
@ -155,14 +178,37 @@ if args.rmaccount:
|
||||||
domain=args.rmaccount.split('@')[1]
|
domain=args.rmaccount.split('@')[1]
|
||||||
else:
|
else:
|
||||||
nickname=args.rmaccount
|
nickname=args.rmaccount
|
||||||
if not args.domain:
|
if not args.domain or not getConfigParam(baseDir,'domain'):
|
||||||
print('Use the --domain option to set the domain name')
|
print('Use the --domain option to set the domain name')
|
||||||
sys.exit()
|
sys.exit()
|
||||||
if os.path.isdir(baseDir+'/accounts/'+nickname+'@'+domain):
|
handle=nickname+'@'+domain
|
||||||
shutil.rmtree(baseDir+'/accounts/'+nickname+'@'+domain)
|
accountRemoved=False
|
||||||
if os.path.isfile(baseDir+'/accounts/'+nickname+'@'+domain+'.json'):
|
passwordFile=baseDir+'/accounts/passwords'
|
||||||
os.remove(baseDir+'/accounts/'+nickname+'@'+domain+'.json')
|
if os.path.isfile(passwordFile):
|
||||||
print('Account for '+nickname+'@'+domain+' was removed')
|
# remove from passwords file
|
||||||
|
with open(passwordFile, "r") as fin:
|
||||||
|
with open(passwordFile+'.new', "w") as fout:
|
||||||
|
for line in fin:
|
||||||
|
if not line.startswith(nickname+':'):
|
||||||
|
fout.write(line)
|
||||||
|
os.rename(passwordFile+'.new', passwordFile)
|
||||||
|
if os.path.isdir(baseDir+'/accounts/'+handle):
|
||||||
|
shutil.rmtree(baseDir+'/accounts/'+handle)
|
||||||
|
accountRemoved=True
|
||||||
|
if os.path.isfile(baseDir+'/accounts/'+handle+'.json'):
|
||||||
|
os.remove(baseDir+'/accounts/'+handle+'.json')
|
||||||
|
accountRemoved=True
|
||||||
|
if os.path.isfile(baseDir+'/wfendpoints/'+handle+'.json'):
|
||||||
|
os.remove(baseDir+'/wfendpoints/'+handle+'.json')
|
||||||
|
accountRemoved=True
|
||||||
|
if os.path.isfile(baseDir+'/keys/private/'+handle+'.key'):
|
||||||
|
os.remove(baseDir+'/keys/private/'+handle+'.key')
|
||||||
|
accountRemoved=True
|
||||||
|
if os.path.isfile(baseDir+'/keys/public/'+handle+'.key'):
|
||||||
|
os.remove(baseDir+'/keys/public/'+handle+'.pem')
|
||||||
|
accountRemoved=True
|
||||||
|
if accountRemoved:
|
||||||
|
print('Account for '+handle+' was removed')
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
if not args.domain:
|
if not args.domain:
|
||||||
|
@ -171,11 +217,26 @@ if not args.domain:
|
||||||
|
|
||||||
federationList=[]
|
federationList=[]
|
||||||
if args.federationList:
|
if args.federationList:
|
||||||
federationList=args.federationList.copy()
|
if len(args.federationList)==1:
|
||||||
|
if not (args.federationList[0].lower()=='any' or \
|
||||||
|
args.federationList[0].lower()=='all' or \
|
||||||
|
args.federationList[0].lower()=='*'):
|
||||||
|
for federationDomain in args.federationList:
|
||||||
|
if '@' in federationDomain:
|
||||||
|
print(federationDomain+': Federate with domains, not individual accounts')
|
||||||
|
sys.exit()
|
||||||
|
federationList=args.federationList.copy()
|
||||||
|
setConfigParam(baseDir,'federationList',federationList)
|
||||||
|
else:
|
||||||
|
configFederationList=getConfigParam(baseDir,'federationList')
|
||||||
|
if configFederationList:
|
||||||
|
federationList=configFederationList
|
||||||
|
|
||||||
|
if federationList:
|
||||||
print('Federating with: '+str(federationList))
|
print('Federating with: '+str(federationList))
|
||||||
|
|
||||||
if not os.path.isdir(baseDir+'/accounts/'+nickname+'@'+domain):
|
if not os.path.isdir(baseDir+'/accounts/'+nickname+'@'+domain):
|
||||||
print('Creating default admin account '+nickname+'@'+domain)
|
print('Creating default admin account '+nickname+'@'+domain)
|
||||||
privateKeyPem,publicKeyPem,person,wfEndpoint=createPerson(baseDir,nickname,domain,port,httpPrefix,True)
|
createPerson(baseDir,nickname,domain,port,httpPrefix,True)
|
||||||
|
|
||||||
runDaemon(baseDir,domain,port,httpPrefix,federationList,useTor,debug)
|
runDaemon(baseDir,domain,port,httpPrefix,federationList,useTor,debug)
|
||||||
|
|
|
@ -87,6 +87,8 @@ def createPerson(baseDir: str,nickname: str,domain: str,port: int, \
|
||||||
peopleSubdir='/accounts'
|
peopleSubdir='/accounts'
|
||||||
if not os.path.isdir(baseDir+peopleSubdir):
|
if not os.path.isdir(baseDir+peopleSubdir):
|
||||||
os.mkdir(baseDir+peopleSubdir)
|
os.mkdir(baseDir+peopleSubdir)
|
||||||
|
if not os.path.isdir(baseDir+peopleSubdir+'/'+handle):
|
||||||
|
os.mkdir(baseDir+peopleSubdir+'/'+handle)
|
||||||
filename=baseDir+peopleSubdir+'/'+handle+'.json'
|
filename=baseDir+peopleSubdir+'/'+handle+'.json'
|
||||||
with open(filename, 'w') as fp:
|
with open(filename, 'w') as fp:
|
||||||
commentjson.dump(newPerson, fp, indent=4, sort_keys=False)
|
commentjson.dump(newPerson, fp, indent=4, sort_keys=False)
|
||||||
|
|
Loading…
Reference in New Issue