Added support for regenerate the modules for direct loading in bottle
This commit is contained in:
parent
3f1942cbfb
commit
11dd833f08
6 changed files with 259 additions and 96 deletions
102
paramecio/create_module.py
Normal file
102
paramecio/create_module.py
Normal file
|
|
@ -0,0 +1,102 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import traceback
|
||||||
|
import argparse
|
||||||
|
import os,sys
|
||||||
|
import shutil
|
||||||
|
import getpass
|
||||||
|
from pathlib import Path
|
||||||
|
from settings import config
|
||||||
|
from importlib import import_module
|
||||||
|
|
||||||
|
def start():
|
||||||
|
|
||||||
|
parser=argparse.ArgumentParser(description='A tool for create new modules for paramecio')
|
||||||
|
|
||||||
|
parser.add_argument('--path', help='The path where the new paramecio module is located', required=True)
|
||||||
|
|
||||||
|
args=parser.parse_args()
|
||||||
|
|
||||||
|
workdir=os.path.dirname(os.path.abspath(__file__))
|
||||||
|
|
||||||
|
# Create directory
|
||||||
|
|
||||||
|
path=Path('modules/'+args.path)
|
||||||
|
|
||||||
|
try:
|
||||||
|
path.mkdir(0o755, True)
|
||||||
|
|
||||||
|
except:
|
||||||
|
|
||||||
|
print('Error: cannot create the directory. Check if exists and if you have permissions')
|
||||||
|
exit(1)
|
||||||
|
|
||||||
|
#Create base controller file
|
||||||
|
|
||||||
|
#f=open('modules/'+args.path+'/index.py', 'w')
|
||||||
|
|
||||||
|
try:
|
||||||
|
shutil.copy(workdir+'/examples/index.py', 'modules/'+args.path)
|
||||||
|
|
||||||
|
except:
|
||||||
|
|
||||||
|
print('Error: cannot copy controller example. Check if you have permissions')
|
||||||
|
exit(1)
|
||||||
|
|
||||||
|
# Regenerate modules
|
||||||
|
|
||||||
|
regenerate_modules_config()
|
||||||
|
|
||||||
|
def regenerate_modules_config():
|
||||||
|
|
||||||
|
print("Regenerating modules configuration...")
|
||||||
|
|
||||||
|
modules=[]
|
||||||
|
|
||||||
|
modules.append("#!/usr/bin/python3\n\n")
|
||||||
|
modules.append("list_modules=[]\n\n")
|
||||||
|
|
||||||
|
for module in config.modules:
|
||||||
|
|
||||||
|
try:
|
||||||
|
|
||||||
|
controller_path=import_module(module)
|
||||||
|
|
||||||
|
controller_base=os.path.dirname(controller_path.__file__)
|
||||||
|
|
||||||
|
base_module=module.split('.')[-1]
|
||||||
|
|
||||||
|
dir_controllers=os.listdir(controller_base)
|
||||||
|
|
||||||
|
modules.append('from '+module+' import ')
|
||||||
|
|
||||||
|
for controller in dir_controllers:
|
||||||
|
|
||||||
|
if controller.find('.py')!=-1 and controller.find('__init__')==-1:
|
||||||
|
|
||||||
|
controller_py=controller.replace('.py', '')
|
||||||
|
|
||||||
|
modules.append(controller_py)
|
||||||
|
|
||||||
|
#load(module+'.'+controller_py)
|
||||||
|
|
||||||
|
modules.append("\n\n")
|
||||||
|
|
||||||
|
#add_func_static_module(controller_base)
|
||||||
|
|
||||||
|
except:
|
||||||
|
|
||||||
|
print("Exception in user code:")
|
||||||
|
print("-"*60)
|
||||||
|
traceback.print_exc(file=sys.stdout)
|
||||||
|
print("-"*60)
|
||||||
|
exit(1)
|
||||||
|
|
||||||
|
f=open('./settings/modules.py', 'w')
|
||||||
|
|
||||||
|
f.write("".join(modules))
|
||||||
|
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
if __name__=="__main__":
|
||||||
|
start()
|
||||||
46
paramecio/cromosoma/extrafields/dictfield.py
Normal file
46
paramecio/cromosoma/extrafields/dictfield.py
Normal file
|
|
@ -0,0 +1,46 @@
|
||||||
|
from paramecio.cromosoma.webmodel import PhangoField
|
||||||
|
import json
|
||||||
|
|
||||||
|
class DictField(PhangoField):
|
||||||
|
|
||||||
|
def __init__(self, name, field_type, required=False):
|
||||||
|
|
||||||
|
super().__init__(name, required)
|
||||||
|
|
||||||
|
self.field_type=field_type
|
||||||
|
|
||||||
|
def check(self, value):
|
||||||
|
|
||||||
|
if type(value).__name__=='str':
|
||||||
|
try:
|
||||||
|
value=json.loads(value)
|
||||||
|
except json.JSONDecodeError:
|
||||||
|
|
||||||
|
value={}
|
||||||
|
self.error=True
|
||||||
|
self.txt_error='Sorry, the json array is invalid'
|
||||||
|
|
||||||
|
elif type(value).__name__!='dict':
|
||||||
|
|
||||||
|
value={}
|
||||||
|
self.error=True
|
||||||
|
self.txt_error='Sorry, the json array is invalid'
|
||||||
|
|
||||||
|
for k,v in enumerate(value):
|
||||||
|
|
||||||
|
value[k]=self.field_type.check(v)
|
||||||
|
|
||||||
|
final_value=json.dumps(value)
|
||||||
|
|
||||||
|
final_value=super().check(final_value)
|
||||||
|
|
||||||
|
return final_value
|
||||||
|
|
||||||
|
def get_type_sql(self):
|
||||||
|
|
||||||
|
return 'TEXT NOT NULL DEFAULT ""'
|
||||||
|
|
||||||
|
def show_formatted(self, value):
|
||||||
|
|
||||||
|
return ", ".join(value)
|
||||||
|
|
||||||
12
paramecio/examples/index.py
Normal file
12
paramecio/examples/index.py
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
from paramecio.citoplasma.mtemplates import ptemplate
|
||||||
|
from paramecio.citoplasma.urls import make_url
|
||||||
|
from bottle import route, request
|
||||||
|
from settings import config
|
||||||
|
|
||||||
|
t=ptemplate(__file__)
|
||||||
|
|
||||||
|
@route('/example')
|
||||||
|
def home():
|
||||||
|
|
||||||
|
return "Hello World!!"
|
||||||
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
from paramecio.index import create_app, run_app
|
from paramecio.index import app, run_app
|
||||||
|
|
||||||
app=create_app()
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
run_app(app)
|
run_app(app)
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
import os, sys, traceback, inspect
|
import os, sys, traceback, inspect
|
||||||
from importlib import import_module
|
from importlib import import_module
|
||||||
from bottle import route, get, post, run, default_app, abort, request, static_file
|
from bottle import route, get, post, run, default_app, abort, request, static_file, load
|
||||||
from settings import config
|
from settings import config, modules
|
||||||
from beaker.middleware import SessionMiddleware
|
from beaker.middleware import SessionMiddleware
|
||||||
|
|
||||||
#Prepare links for static.
|
#Prepare links for static.
|
||||||
#WARNING: only use this feature in development, not in production.
|
#WARNING: only use this feature in development, not in production.
|
||||||
|
|
||||||
def create_app():
|
#def create_app():
|
||||||
|
|
||||||
arr_module_path={}
|
arr_module_path={}
|
||||||
|
|
||||||
|
|
@ -48,9 +48,16 @@ def create_app():
|
||||||
|
|
||||||
for module in config.modules:
|
for module in config.modules:
|
||||||
|
|
||||||
|
module=module.replace('.', '/')
|
||||||
|
|
||||||
|
controller_base=os.path.basename(module)
|
||||||
|
|
||||||
|
add_func_static_module(controller_base)
|
||||||
|
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
|
|
||||||
controller_path=import_module(module)
|
controller_path=load(module)
|
||||||
|
|
||||||
controller_base=os.path.dirname(controller_path.__file__)
|
controller_base=os.path.dirname(controller_path.__file__)
|
||||||
|
|
||||||
|
|
@ -66,7 +73,7 @@ def create_app():
|
||||||
|
|
||||||
controller_py=controller.replace('.py', '')
|
controller_py=controller.replace('.py', '')
|
||||||
|
|
||||||
import_module(module+'.'+controller_py)
|
load(module+'.'+controller_py)
|
||||||
|
|
||||||
add_func_static_module(controller_base)
|
add_func_static_module(controller_base)
|
||||||
|
|
||||||
|
|
@ -76,7 +83,7 @@ def create_app():
|
||||||
print("-"*60)
|
print("-"*60)
|
||||||
traceback.print_exc(file=sys.stdout)
|
traceback.print_exc(file=sys.stdout)
|
||||||
print("-"*60)
|
print("-"*60)
|
||||||
|
"""
|
||||||
#exit()
|
#exit()
|
||||||
|
|
||||||
#Prepare ssl
|
#Prepare ssl
|
||||||
|
|
@ -102,8 +109,6 @@ def create_app():
|
||||||
|
|
||||||
app = SessionMiddleware(app, config.session_opts, environ_key=config.cookie_name)
|
app = SessionMiddleware(app, config.session_opts, environ_key=config.cookie_name)
|
||||||
|
|
||||||
return app
|
|
||||||
|
|
||||||
def run_app(app):
|
def run_app(app):
|
||||||
|
|
||||||
run(app=app, host=config.host, server=config.server_used, port=config.port, debug=config.debug, reloader=config.reloader)
|
run(app=app, host=config.host, server=config.server_used, port=config.port, debug=config.debug, reloader=config.reloader)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue