|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718 |
- #!/usr/bin/env python2.7
-
- # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
- # MIT License. See license.txt
-
- from __future__ import unicode_literals
- import sys
-
- if __name__=="__main__":
- sys.path = [".", "lib", "app"] + sys.path
-
- import webnotes
-
- def main():
- parsed_args = webnotes._dict(vars(setup_parser()))
- fn = get_function(parsed_args)
- if parsed_args.get("site")=="all":
- for site in get_sites():
- args = parsed_args.copy()
- args["site"] = site
- run(fn, args)
- else:
- run(fn, parsed_args)
-
- def cmd(fn):
- def new_fn(*args, **kwargs):
- import inspect
- fnargs, varargs, varkw, defaults = inspect.getargspec(fn)
- new_kwargs = {}
- for a in fnargs:
- if a in kwargs:
- new_kwargs[a] = kwargs.get(a)
-
- return fn(*args, **new_kwargs)
-
- return new_fn
-
-
- def run(fn, args):
- if isinstance(args.get(fn), (list, tuple)):
- out = globals().get(fn)(*args.get(fn), **args)
- else:
- out = globals().get(fn)(**args)
-
- return out
-
- def get_function(args):
- for fn, val in args.items():
- if (val or isinstance(val, list)) and globals().get(fn):
- return fn
-
- def get_sites():
- import os
- import conf
- return [site for site in os.listdir(conf.sites_dir)
- if not os.path.islink(os.path.join(conf.sites_dir, site))
- and os.path.isdir(os.path.join(conf.sites_dir, site))]
-
- def setup_parser():
- import argparse
- parser = argparse.ArgumentParser(description="Run webnotes utility functions")
-
- setup_install(parser)
- setup_utilities(parser)
- setup_translation(parser)
- setup_git(parser)
-
- # common
- parser.add_argument("-f", "--force", default=False, action="store_true",
- help="Force execution where applicable (look for [-f] in help)")
- parser.add_argument("--quiet", default=True, action="store_false", dest="verbose",
- help="Show verbose output where applicable")
- parser.add_argument("--site", nargs="?", metavar="SITE-NAME or all",
- help="Run for a particular site")
-
- return parser.parse_args()
-
- def setup_install(parser):
- parser.add_argument("--install", metavar="DB-NAME", nargs=1,
- help="Install a new app")
- parser.add_argument("--root-password", nargs=1,
- help="Root password for new app")
- parser.add_argument("--reinstall", default=False, action="store_true",
- help="Install a fresh app in db_name specified in conf.py")
- parser.add_argument("--restore", metavar=("DB-NAME", "SQL-FILE"), nargs=2,
- help="Restore from an sql file")
- parser.add_argument("--install_fixtures", default=False, action="store_true",
- help="(Re)Install install-fixtures from app/startup/install_fixtures")
- parser.add_argument("--make_demo", default=False, action="store_true",
- help="Install demo in demo_db_name specified in conf.py")
- parser.add_argument("--make_demo_fresh", default=False, action="store_true",
- help="(Re)Install demo in demo_db_name specified in conf.py")
- parser.add_argument("--add_system_manager", nargs="+",
- metavar=("EMAIL", "[FIRST-NAME] [LAST-NAME]"), help="Add a user with all roles")
-
- def setup_utilities(parser):
- # update
- parser.add_argument("-u", "--update", nargs="*", metavar=("REMOTE", "BRANCH"),
- help="Perform git pull, run patches, sync schema and rebuild files/translations")
- parser.add_argument("--reload_gunicorn", default=False, action="store_true", help="reload gunicorn on update")
- parser.add_argument("--patch", nargs=1, metavar="PATCH-MODULE",
- help="Run a particular patch [-f]")
- parser.add_argument("-l", "--latest", default=False, action="store_true",
- help="Run patches, sync schema and rebuild files/translations")
- parser.add_argument("--sync_all", default=False, action="store_true",
- help="Reload all doctypes, pages, etc. using txt files [-f]")
- parser.add_argument("--update_all_sites", nargs="*", metavar=("REMOTE", "BRANCH"),
- help="Perform git pull, run patches, sync schema and rebuild files/translations")
-
- parser.add_argument("--reload_doc", nargs=3,
- metavar=('"MODULE"', '"DOCTYPE"', '"DOCNAME"'))
-
- # build
- parser.add_argument("-b", "--build", default=False, action="store_true",
- help="Minify + concatenate JS and CSS files, build translations")
- parser.add_argument("-w", "--watch", default=False, action="store_true",
- help="Watch and concatenate JS and CSS files as and when they change")
-
- # misc
- parser.add_argument("--backup", default=False, action="store_true",
- help="Take backup of database in backup folder [--with_files]")
- parser.add_argument("--move", default=False, action="store_true",
- help="Move site to different directory defined by --dest_dir")
- parser.add_argument("--dest_dir", nargs=1, metavar="DEST-DIR",
- help="Move site to different directory")
- parser.add_argument("--with_files", default=False, action="store_true",
- help="Also take backup of files")
- parser.add_argument("--docs", default=False, action="store_true",
- help="Build docs")
- parser.add_argument("--domain", nargs="*",
- help="Get or set domain in Website Settings")
- parser.add_argument("--make_conf", nargs="*", metavar=("DB-NAME", "DB-PASSWORD"),
- help="Create new conf.py file")
- parser.add_argument("--make_custom_server_script", nargs=1, metavar="DOCTYPE",
- help="Create new conf.py file")
- parser.add_argument("--set_admin_password", metavar='ADMIN-PASSWORD', nargs=1,
- help="Set administrator password")
- parser.add_argument("--mysql", action="store_true", help="get mysql shell for a site")
- parser.add_argument("--serve", action="store_true", help="Run development server")
- parser.add_argument("--profile", action="store_true", help="enable profiling in development server")
- parser.add_argument("--smtp", action="store_true", help="Run smtp debug server",
- dest="smtp_debug_server")
- parser.add_argument("--python", action="store_true", help="get python shell for a site")
- parser.add_argument("--get_site_status", action="store_true", help="Get site details")
- parser.add_argument("--update_site_config", nargs=1,
- metavar="SITE-CONFIG-JSON",
- help="Update site_config.json for a given --site")
- parser.add_argument("--port", default=8000, type=int, help="port for development server")
-
- # clear
- parser.add_argument("--clear_web", default=False, action="store_true",
- help="Clear website cache")
- parser.add_argument("--build_sitemap", default=False, action="store_true",
- help="Build Website Sitemap")
- parser.add_argument("--clear_cache", default=False, action="store_true",
- help="Clear cache, doctype cache and defaults")
- parser.add_argument("--reset_perms", default=False, action="store_true",
- help="Reset permissions for all doctypes")
-
- # scheduler
- parser.add_argument("--run_scheduler", default=False, action="store_true",
- help="Trigger scheduler")
- parser.add_argument("--run_scheduler_event", nargs=1,
- metavar="all | daily | weekly | monthly",
- help="Run a scheduler event")
-
- # replace
- parser.add_argument("--replace", nargs=3,
- metavar=("SEARCH-REGEX", "REPLACE-BY", "FILE-EXTN"),
- help="Multi-file search-replace [-f]")
-
- # import/export
- parser.add_argument("--export_doc", nargs=2, metavar=('"DOCTYPE"', '"DOCNAME"'))
- parser.add_argument("--export_doclist", nargs=3, metavar=("DOCTYPE", "NAME", "PATH"),
- help="""Export doclist as json to the given path, use '-' as name for Singles.""")
- parser.add_argument("--export_csv", nargs=2, metavar=("DOCTYPE", "PATH"),
- help="""Dump DocType as csv""")
- parser.add_argument("--import_doclist", nargs=1, metavar="PATH",
- help="""Import (insert/update) doclist. If the argument is a directory, all files ending with .json are imported""")
-
- def setup_git(parser):
- parser.add_argument("--pull", nargs="*", metavar=("REMOTE", "BRANCH"),
- help="Run git pull for both repositories")
- parser.add_argument("-p", "--push", nargs="*", metavar=("REMOTE", "BRANCH"),
- help="Run git push for both repositories")
- parser.add_argument("--status", default=False, action="store_true",
- help="Run git status for both repositories")
- parser.add_argument("--commit", nargs=1, metavar="COMMIT-MSG",
- help="Run git commit COMMIT-MSG for both repositories")
- parser.add_argument("--checkout", nargs=1, metavar="BRANCH",
- help="Run git checkout BRANCH for both repositories")
- parser.add_argument("--git", nargs="*", metavar="OPTIONS",
- help="Run git command for both repositories")
-
-
- def setup_translation(parser):
- parser.add_argument("--build_message_files", default=False, action="store_true",
- help="Build message files for translation")
- parser.add_argument("--export_messages", nargs=2, metavar=("LANG-CODE", "FILENAME"),
- help="""Export all messages for a language to translation in a csv file.
- Example, lib/wnf.py --export_messages hi hindi.csv""")
- parser.add_argument("--import_messages", nargs=2, metavar=("LANG-CODE", "FILENAME"),
- help="""Import messages for a language and make language files.
- Example, lib/wnf.py --import_messages hi hindi.csv""")
- parser.add_argument("--google_translate", nargs=3,
- metavar=("LANG-CODE", "INFILE", "OUTFILE"),
- help="Auto translate using Google Translate API")
- parser.add_argument("--translate", nargs=1, metavar="LANG-CODE",
- help="""Rebuild translation for the given langauge and
- use Google Translate to tranlate untranslated messages. use "all" """)
-
- # methods
-
- # install
- @cmd
- def install(db_name, source_sql=None, site=None, verbose=True, force=False, root_password=None, site_config=None, admin_password='admin'):
- from webnotes.install_lib.install import Installer
- inst = Installer('root', db_name=db_name, site=site, root_password=root_password, site_config=site_config)
- inst.install(db_name, source_sql=source_sql, verbose=verbose, force=force, admin_password=admin_password)
- webnotes.destroy()
-
- @cmd
- def reinstall(site=None, verbose=True):
- webnotes.init(site=site)
- install(webnotes.conf.db_name, site=site, verbose=verbose, force=True)
-
- @cmd
- def restore(db_name, source_sql, site=None, verbose=True, force=False):
- install(db_name, source_sql, site=site, verbose=verbose, force=force)
-
- @cmd
- def install_fixtures(site=None):
- webnotes.init(site=site)
- from webnotes.install_lib.install import install_fixtures
- install_fixtures()
- webnotes.destroy()
-
- @cmd
- def add_system_manager(email, first_name=None, last_name=None, site=None):
- webnotes.connect(site=site)
- webnotes.profile.add_system_manager(email, first_name, last_name)
- webnotes.conn.commit()
- webnotes.destroy()
-
- @cmd
- def make_demo(site=None):
- import utilities.demo.make_demo
- webnotes.init(site=site)
- utilities.demo.make_demo.make()
- webnotes.destroy()
-
- @cmd
- def make_demo_fresh(site=None):
- import utilities.demo.make_demo
- webnotes.init(site=site)
- utilities.demo.make_demo.make(reset=True)
- webnotes.destroy()
-
- # utilities
-
- @cmd
- def update(remote=None, branch=None, site=None, reload_gunicorn=False):
- pull(remote=remote, branch=branch, site=site)
-
- # maybe there are new framework changes, any consequences?
- reload(webnotes)
-
- if not site: build()
-
- latest(site=site)
- if reload_gunicorn:
- import subprocess
- subprocess.check_output("killall -HUP gunicorn".split())
-
- @cmd
- def latest(site=None, verbose=True):
- import webnotes.modules.patch_handler
- import webnotes.model.sync
- import webnotes.plugins
- from website.doctype.website_sitemap_config.website_sitemap_config import build_website_sitemap_config
-
- webnotes.connect(site=site)
-
- try:
- # run patches
- webnotes.local.patch_log_list = []
- webnotes.modules.patch_handler.run_all()
- if verbose:
- print "\n".join(webnotes.local.patch_log_list)
-
- # sync
- webnotes.model.sync.sync_all()
-
- # remove __init__.py from plugins
- webnotes.plugins.remove_init_files()
-
- # build website config if any changes in templates etc.
- build_website_sitemap_config()
-
- except webnotes.modules.patch_handler.PatchError, e:
- print "\n".join(webnotes.local.patch_log_list)
- raise
- finally:
- webnotes.destroy()
-
- @cmd
- def sync_all(site=None, force=False):
- import webnotes.model.sync
- webnotes.connect(site=site)
- webnotes.model.sync.sync_all(force=force)
- webnotes.destroy()
-
- @cmd
- def patch(patch_module, site=None, force=False):
- import webnotes.modules.patch_handler
- webnotes.connect(site=site)
- webnotes.local.patch_log_list = []
- webnotes.modules.patch_handler.run_single(patch_module, force=force)
- print "\n".join(webnotes.local.patch_log_list)
- webnotes.destroy()
-
- @cmd
- def update_all_sites(remote=None, branch=None, verbose=True):
- pull(remote, branch)
-
- # maybe there are new framework changes, any consequences?
- reload(webnotes)
-
- build()
- for site in get_sites():
- latest(site=site, verbose=verbose)
-
- @cmd
- def reload_doc(module, doctype, docname, site=None, force=False):
- webnotes.connect(site=site)
- webnotes.reload_doc(module, doctype, docname, force=force)
- webnotes.destroy()
-
- @cmd
- def build():
- import webnotes.build
- webnotes.build.bundle(False)
-
- @cmd
- def watch():
- import webnotes.build
- webnotes.build.watch(True)
-
- @cmd
- def backup(site=None, with_files=False, verbose=True, backup_path_db=None, backup_path_files=None):
- from webnotes.utils.backups import scheduled_backup
- webnotes.connect(site=site)
- odb = scheduled_backup(ignore_files=not with_files, backup_path_db=backup_path_db, backup_path_files=backup_path_files)
- if verbose:
- from webnotes.utils import now
- print "database backup taken -", odb.backup_path_db, "- on", now()
- if with_files:
- print "files backup taken -", odb.backup_path_files, "- on", now()
- webnotes.destroy()
- return odb
-
- @cmd
- def move(site=None, dest_dir=None):
- import os
- if not dest_dir:
- raise Exception, "--dest_dir is required for --move"
- dest_dir = dest_dir[0]
- if not os.path.isdir(dest_dir):
- raise Exception, "destination is not a directory or does not exist"
- webnotes.init(site=site)
- old_path = webnotes.utils.get_site_path()
- new_path = os.path.join(dest_dir, site)
-
- # check if site dump of same name already exists
- site_dump_exists = True
- count = 0
- while site_dump_exists:
- final_new_path = new_path + (count and str(count) or "")
- site_dump_exists = os.path.exists(final_new_path)
- count = int(count or 0) + 1
-
- os.rename(old_path, final_new_path)
- webnotes.destroy()
- return os.path.basename(final_new_path)
-
- @cmd
- def docs():
- from core.doctype.documentation_tool.documentation_tool import write_static
- write_static()
-
- @cmd
- def domain(host_url=None, site=None):
- webnotes.connect(site=site)
- if host_url:
- webnotes.conn.set_value("Website Settings", None, "subdomain", host_url)
- webnotes.conn.commit()
- else:
- print webnotes.conn.get_value("Website Settings", None, "subdomain")
- webnotes.destroy()
-
- @cmd
- def make_conf(db_name=None, db_password=None, site=None, site_config=None):
- from webnotes.install_lib.install import make_conf
- make_conf(db_name=db_name, db_password=db_password, site=site, site_config=site_config)
-
- @cmd
- def make_custom_server_script(doctype, site=None):
- from core.doctype.custom_script.custom_script import make_custom_server_script_file
- webnotes.connect(site=site)
- make_custom_server_script_file(doctype)
- webnotes.destroy()
-
- # clear
- @cmd
- def clear_cache(site=None):
- import webnotes.sessions
- webnotes.connect(site=site)
- webnotes.sessions.clear_cache()
- webnotes.destroy()
-
- @cmd
- def clear_web(site=None):
- import webnotes.webutils
- webnotes.connect(site=site)
- webnotes.webutils.clear_cache()
- webnotes.destroy()
-
- @cmd
- def build_sitemap(site=None):
- from website.doctype.website_sitemap_config.website_sitemap_config import build_website_sitemap_config
- webnotes.connect(site=site)
- build_website_sitemap_config()
- webnotes.destroy()
-
- @cmd
- def reset_perms(site=None):
- webnotes.connect(site=site)
- for d in webnotes.conn.sql_list("""select name from `tabDocType`
- where ifnull(istable, 0)=0 and ifnull(custom, 0)=0"""):
- webnotes.clear_cache(doctype=d)
- webnotes.reset_perms(d)
- webnotes.destroy()
-
- # scheduler
- @cmd
- def run_scheduler(site=None):
- import webnotes.utils.scheduler
- webnotes.connect(site=site)
- print webnotes.utils.scheduler.execute()
- webnotes.destroy()
-
- @cmd
- def run_scheduler_event(event, site=None):
- import webnotes.utils.scheduler
- webnotes.connect(site=site)
- print webnotes.utils.scheduler.trigger("execute_" + event)
- webnotes.destroy()
-
- # replace
- @cmd
- def replace(search_regex, replacement, extn, force=False):
- print search_regex, replacement, extn
- replace_code('.', search_regex, replacement, extn, force=force)
-
- # import/export
- @cmd
- def export_doc(doctype, docname, site=None):
- import webnotes.modules
- webnotes.connect(site=site)
- webnotes.modules.export_doc(doctype, docname)
- webnotes.destroy()
-
- @cmd
- def export_doclist(doctype, name, path, site=None):
- from core.page.data_import_tool import data_import_tool
- webnotes.connect(site=site)
- data_import_tool.export_json(doctype, name, path)
- webnotes.destroy()
-
- @cmd
- def export_csv(doctype, path, site=None):
- from core.page.data_import_tool import data_import_tool
- webnotes.connect(site=site)
- data_import_tool.export_csv(doctype, path)
- webnotes.destroy()
-
- @cmd
- def import_doclist(path, site=None, force=False):
- from core.page.data_import_tool import data_import_tool
- webnotes.connect(site=site)
- data_import_tool.import_doclist(path, overwrite=force)
- webnotes.destroy()
-
- # translation
- @cmd
- def build_message_files(site=None):
- import webnotes.translate
- webnotes.connect(site=site)
- webnotes.translate.build_message_files()
- webnotes.destroy()
-
- @cmd
- def export_messages(lang, outfile, site=None):
- import webnotes.translate
- webnotes.connect(site=site)
- webnotes.translate.export_messages(lang, outfile)
- webnotes.destroy()
-
- @cmd
- def import_messages(lang, infile, site=None):
- import webnotes.translate
- webnotes.connect(site=site)
- webnotes.translate.import_messages(lang, infile)
- webnotes.destroy()
-
- @cmd
- def google_translate(lang, infile, outfile, site=None):
- import webnotes.translate
- webnotes.connect(site=site)
- webnotes.translate.google_translate(lang, infile, outfile)
- webnotes.destroy()
-
- @cmd
- def translate(lang, site=None):
- import webnotes.translate
- webnotes.connect(site=site)
- webnotes.translate.translate(lang)
- webnotes.destroy()
-
- # git
- @cmd
- def git(param):
- if isinstance(param, (list, tuple)):
- param = " ".join(param)
- import os
- os.system("""cd lib && git %s""" % param)
- os.system("""cd app && git %s""" % param)
-
- def get_remote_and_branch(remote=None, branch=None):
- if not (remote and branch):
- webnotes.init()
- if not webnotes.conf.branch:
- raise Exception("Please specify remote and branch")
-
- remote = remote or "origin"
- branch = branch or webnotes.conf.branch
- webnotes.destroy()
-
- return remote, branch
-
- @cmd
- def pull(remote=None, branch=None):
- remote, branch = get_remote_and_branch(remote, branch)
- git(("pull", remote, branch))
-
- @cmd
- def push(remote=None, branch=None):
- remote, branch = get_remote_and_branch(remote, branch)
- git(("push", remote, branch))
-
- @cmd
- def status():
- git("status")
-
- @cmd
- def commit(message):
- git("""commit -a -m "%s" """ % message.replace('"', '\"'))
-
- @cmd
- def checkout(branch):
- git(("checkout", branch))
-
- @cmd
- def set_admin_password(admin_password, site=None):
- import webnotes
- webnotes.connect(site=site)
- webnotes.conn.sql("""update __Auth set `password`=password(%s)
- where user='Administrator'""", (admin_password,))
- webnotes.conn.commit()
- webnotes.destroy()
-
- @cmd
- def mysql(site=None):
- import webnotes
- import commands, os
- msq = commands.getoutput('which mysql')
- webnotes.init(site=site)
- os.execv(msq, [msq, '-u', webnotes.conf.db_name, '-p'+webnotes.conf.db_password, webnotes.conf.db_name, '-h', webnotes.conf.db_host or "localhost"])
- webnotes.destroy()
-
- @cmd
- def python(site=None):
- import webnotes
- import commands, os
- python = commands.getoutput('which python')
- webnotes.init(site=site)
- if site:
- os.environ["site"] = site
- os.environ["PYTHONSTARTUP"] = os.path.join(os.path.dirname(__file__), "pythonrc.py")
- os.execv(python, [python])
- webnotes.destroy()
-
- @cmd
- def smtp_debug_server():
- import commands, os
- python = commands.getoutput('which python')
- os.execv(python, [python, '-m', "smtpd", "-n", "-c", "DebuggingServer", "localhost:25"])
-
- @cmd
- def serve(port=8000, profile=False):
- import webnotes.app
- webnotes.app.serve(port=port, profile=profile)
-
- def replace_code(start, txt1, txt2, extn, search=None, force=False):
- """replace all txt1 by txt2 in files with extension (extn)"""
- import webnotes.utils
- import os, re
- esc = webnotes.utils.make_esc('[]')
- if not search: search = esc(txt1)
- for wt in os.walk(start, followlinks=1):
- for fn in wt[2]:
- if fn.split('.')[-1]==extn:
- fpath = os.path.join(wt[0], fn)
- with open(fpath, 'r') as f:
- content = f.read()
-
- if re.search(search, content):
- res = search_replace_with_prompt(fpath, txt1, txt2, force)
- if res == 'skip':
- return 'skip'
-
-
- def search_replace_with_prompt(fpath, txt1, txt2, force=False):
- """ Search and replace all txt1 by txt2 in the file with confirmation"""
- from termcolor import colored
- with open(fpath, 'r') as f:
- content = f.readlines()
-
- tmp = []
- for c in content:
- if c.find(txt1) != -1:
- print fpath
- print colored(txt1, 'red').join(c[:-1].split(txt1))
- a = ''
- if force:
- c = c.replace(txt1, txt2)
- else:
- while a.lower() not in ['y', 'n', 'skip']:
- a = raw_input('Do you want to Change [y/n/skip]?')
- if a.lower() == 'y':
- c = c.replace(txt1, txt2)
- elif a.lower() == 'skip':
- return 'skip'
- tmp.append(c)
-
- with open(fpath, 'w') as f:
- f.write(''.join(tmp))
- print colored('Updated', 'green')
-
- @cmd
- def get_site_status(site=None, verbose=False):
- import webnotes
- import webnotes.utils
- from webnotes.profile import get_system_managers
- from core.doctype.profile.profile import get_total_users, get_active_users, \
- get_website_users, get_active_website_users
-
- import json
- webnotes.connect(site=site)
- ret = {
- 'last_backup_on': webnotes.local.conf.last_backup_on,
- 'active_users': get_active_users(),
- 'total_users': get_total_users(),
- 'active_website_users': get_active_website_users(),
- 'website_users': get_website_users(),
- 'system_managers': "\n".join(get_system_managers()),
- 'default_company': webnotes.conn.get_default("company"),
- 'disk_usage': webnotes.utils.get_disk_usage(),
- 'working_directory': webnotes.utils.get_base_path()
- }
-
- # country, timezone, industry
- control_panel_details = webnotes.conn.get_value("Control Panel", "Control Panel",
- ["country", "time_zone", "industry"], as_dict=True)
- if control_panel_details:
- ret.update(control_panel_details)
-
- # basic usage/progress analytics
- for doctype in ("Company", "Customer", "Item", "Quotation", "Sales Invoice",
- "Journal Voucher", "Stock Ledger Entry"):
- key = doctype.lower().replace(" ", "_") + "_exists"
- ret[key] = 1 if webnotes.conn.count(doctype) else 0
-
- webnotes.destroy()
-
- if verbose:
- print json.dumps(ret, indent=1, sort_keys=True)
-
- return ret
-
- @cmd
- def update_site_config(site_config, site, verbose=False):
- import json
-
- if isinstance(site_config, basestring):
- site_config = json.loads(site_config)
-
- webnotes.init(site=site)
- webnotes.conf.site_config.update(site_config)
- site_config_path = webnotes.get_conf_path(webnotes.conf.sites_dir, site)
-
- with open(site_config_path, "w") as f:
- json.dump(webnotes.conf.site_config, f, indent=1, sort_keys=True)
-
- webnotes.destroy()
-
- if __name__=="__main__":
- main()
|