194 lines
6 KiB
Python
Executable file
194 lines
6 KiB
Python
Executable file
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
|
# MIT License. See license.txt
|
|
|
|
# called from wnf.py
|
|
# lib/wnf.py --install [rootpassword] [dbname] [source]
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import os, json
|
|
import frappe
|
|
import frappe.database
|
|
import getpass
|
|
from frappe import _
|
|
from frappe.model.db_schema import DbManager
|
|
from frappe.model.sync import sync_for
|
|
from frappe.utils.fixtures import sync_fixtures
|
|
|
|
def install_db(root_login="root", root_password=None, db_name=None, source_sql=None,
|
|
admin_password = 'admin', verbose=True, force=0, site_config=None, reinstall=False):
|
|
frappe.flags.in_install_db = True
|
|
make_conf(db_name, site_config=site_config)
|
|
if reinstall:
|
|
frappe.connect(db_name=db_name)
|
|
dbman = DbManager(frappe.local.db)
|
|
dbman.create_database(db_name)
|
|
|
|
else:
|
|
frappe.local.db = make_connection(root_login, root_password)
|
|
frappe.local.session = frappe._dict({'user':'Administrator'})
|
|
create_database_and_user(force, verbose)
|
|
|
|
frappe.conf.admin_password = admin_password
|
|
|
|
frappe.connect(db_name=db_name)
|
|
import_db_from_sql(source_sql, verbose)
|
|
|
|
create_auth_table()
|
|
frappe.flags.in_install_db = False
|
|
|
|
def create_database_and_user(force, verbose):
|
|
db_name = frappe.local.conf.db_name
|
|
dbman = DbManager(frappe.local.db)
|
|
if force or (db_name not in dbman.get_database_list()):
|
|
dbman.delete_user(db_name)
|
|
dbman.drop_database(db_name)
|
|
else:
|
|
raise Exception("Database %s already exists" % (db_name,))
|
|
|
|
dbman.create_user(db_name, frappe.conf.db_password)
|
|
if verbose: print "Created user %s" % db_name
|
|
|
|
dbman.create_database(db_name)
|
|
if verbose: print "Created database %s" % db_name
|
|
|
|
dbman.grant_all_privileges(db_name, db_name)
|
|
dbman.flush_privileges()
|
|
if verbose: print "Granted privileges to user %s and database %s" % (db_name, db_name)
|
|
|
|
# close root connection
|
|
frappe.db.close()
|
|
|
|
def create_auth_table():
|
|
frappe.db.sql_ddl("""create table if not exists __Auth (
|
|
`user` VARCHAR(180) NOT NULL PRIMARY KEY,
|
|
`password` VARCHAR(180) NOT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8""")
|
|
|
|
def import_db_from_sql(source_sql, verbose):
|
|
if verbose: print "Starting database import..."
|
|
db_name = frappe.conf.db_name
|
|
if not source_sql:
|
|
source_sql = os.path.join(os.path.dirname(frappe.__file__), 'data', 'Framework.sql')
|
|
DbManager(frappe.local.db).restore_database(db_name, source_sql, db_name, frappe.conf.db_password)
|
|
if verbose: print "Imported from database %s" % source_sql
|
|
|
|
def make_connection(root_login, root_password):
|
|
if root_login:
|
|
if not root_password:
|
|
root_password = frappe.conf.get("root_password") or None
|
|
|
|
if not root_password:
|
|
root_password = getpass.getpass("MySQL root password: ")
|
|
return frappe.database.Database(user=root_login, password=root_password)
|
|
|
|
def install_app(name, verbose=False, set_as_patched=True):
|
|
frappe.flags.in_install_app = name
|
|
frappe.clear_cache()
|
|
|
|
app_hooks = frappe.get_hooks(app_name=name)
|
|
installed_apps = frappe.get_installed_apps()
|
|
|
|
if name not in frappe.get_all_apps(with_frappe=True):
|
|
raise Exception("App not in apps.txt")
|
|
|
|
if name in installed_apps:
|
|
print "App Already Installed"
|
|
frappe.msgprint("App {0} already installed".format(name))
|
|
return
|
|
|
|
if name != "frappe":
|
|
frappe.only_for("System Manager")
|
|
|
|
for before_install in app_hooks.before_install or []:
|
|
frappe.get_attr(before_install)()
|
|
|
|
if name != "frappe":
|
|
add_module_defs(name)
|
|
|
|
sync_for(name, force=True, sync_everything=True, verbose=verbose)
|
|
|
|
add_to_installed_apps(name)
|
|
|
|
if set_as_patched:
|
|
set_all_patches_as_completed(name)
|
|
|
|
for after_install in app_hooks.after_install or []:
|
|
frappe.get_attr(after_install)()
|
|
|
|
sync_fixtures()
|
|
|
|
frappe.flags.in_install_app = False
|
|
|
|
def add_to_installed_apps(app_name, rebuild_sitemap=True):
|
|
installed_apps = frappe.get_installed_apps()
|
|
if not app_name in installed_apps:
|
|
installed_apps.append(app_name)
|
|
frappe.db.set_global("installed_apps", json.dumps(installed_apps))
|
|
frappe.db.commit()
|
|
|
|
if rebuild_sitemap:
|
|
from frappe.website.doctype.website_template.website_template import rebuild_website_template
|
|
rebuild_website_template()
|
|
|
|
frappe.clear_cache()
|
|
|
|
def set_all_patches_as_completed(app):
|
|
patch_path = os.path.join(frappe.get_pymodule_path(app), "patches.txt")
|
|
if os.path.exists(patch_path):
|
|
for patch in frappe.get_file_items(patch_path):
|
|
frappe.get_doc({
|
|
"doctype": "Patch Log",
|
|
"patch": patch
|
|
}).insert()
|
|
frappe.db.commit()
|
|
|
|
def make_conf(db_name=None, db_password=None, site_config=None):
|
|
site = frappe.local.site
|
|
make_site_config(db_name, db_password, site_config)
|
|
sites_path = frappe.local.sites_path
|
|
frappe.destroy()
|
|
frappe.init(site, sites_path=sites_path)
|
|
|
|
def make_site_config(db_name=None, db_password=None, site_config=None):
|
|
frappe.create_folder(os.path.join(frappe.local.site_path))
|
|
site_file = os.path.join(frappe.local.site_path, "site_config.json")
|
|
|
|
if not os.path.exists(site_file):
|
|
if not (site_config and isinstance(site_config, dict)):
|
|
site_config = get_conf_params(db_name, db_password)
|
|
|
|
with open(site_file, "w") as f:
|
|
f.write(json.dumps(site_config, indent=1, sort_keys=True))
|
|
|
|
def get_conf_params(db_name=None, db_password=None):
|
|
if not db_name:
|
|
db_name = raw_input("Database Name: ")
|
|
if not db_name:
|
|
raise Exception("Database Name Required")
|
|
|
|
if not db_password:
|
|
from frappe.utils import random_string
|
|
db_password = random_string(16)
|
|
|
|
return {"db_name": db_name, "db_password": db_password}
|
|
|
|
def make_site_dirs():
|
|
site_public_path = os.path.join(frappe.local.site_path, 'public')
|
|
site_private_path = os.path.join(frappe.local.site_path, 'private')
|
|
for dir_path in (
|
|
os.path.join(site_private_path, 'backups'),
|
|
os.path.join(site_public_path, 'files')):
|
|
if not os.path.exists(dir_path):
|
|
os.makedirs(dir_path)
|
|
locks_dir = frappe.get_site_path('locks')
|
|
if not os.path.exists(locks_dir):
|
|
os.makedirs(locks_dir)
|
|
|
|
def add_module_defs(app):
|
|
modules = frappe.get_module_list(app)
|
|
for module in modules:
|
|
d = frappe.new_doc("Module Def")
|
|
d.app_name = app
|
|
d.module_name = frappe.unscrub(module)
|
|
d.save()
|