69 lines
1.7 KiB
Python
69 lines
1.7 KiB
Python
"""
|
|
bootstrap client session
|
|
"""
|
|
|
|
|
|
def get_bootinfo():
|
|
"""build and return boot info"""
|
|
import webnotes
|
|
bootinfo = {}
|
|
doclist = []
|
|
|
|
webnotes.conn.begin()
|
|
# profile
|
|
get_profile(bootinfo)
|
|
|
|
# control panel
|
|
import webnotes.model.doc
|
|
cp = webnotes.model.doc.getsingle('Control Panel')
|
|
|
|
# system info
|
|
bootinfo['control_panel'] = cp
|
|
bootinfo['account_name'] = cp.get('account_id')
|
|
bootinfo['sysdefaults'] = webnotes.utils.get_defaults()
|
|
|
|
if webnotes.session['user'] != 'Guest':
|
|
import webnotes.widgets.menus
|
|
bootinfo['start_items'] = webnotes.widgets.menus.get_menu_items()
|
|
bootinfo['dt_labels'] = get_dt_labels()
|
|
|
|
# home page
|
|
get_home_page(bootinfo, doclist)
|
|
|
|
# ipinfo
|
|
if webnotes.session['data'].get('ipinfo'):
|
|
bootinfo['ipinfo'] = webnotes.session['data']['ipinfo']
|
|
|
|
# add docs
|
|
bootinfo['docs'] = doclist
|
|
|
|
# plugins
|
|
import startup.event_handlers
|
|
if getattr(startup.event_handlers, 'boot_session'):
|
|
startup.event_handlers.boot_session(bootinfo)
|
|
|
|
webnotes.conn.commit()
|
|
|
|
return bootinfo
|
|
|
|
def get_profile(bootinfo):
|
|
"""get profile info"""
|
|
import webnotes
|
|
bootinfo['profile'] = webnotes.user.load_profile()
|
|
webnotes.session['data']['profile'] = bootinfo['profile']
|
|
|
|
def get_home_page(bootinfo, doclist):
|
|
"""load home page"""
|
|
import webnotes
|
|
home_page = webnotes.user.get_home_page()
|
|
if home_page:
|
|
import webnotes.widgets.page
|
|
page_doclist = webnotes.widgets.page.get(home_page)
|
|
doclist += webnotes.widgets.page.get(home_page)
|
|
bootinfo['home_page'] = home_page or ''
|
|
bootinfo['home_page_html'] = page_doclist[0].content
|
|
|
|
def get_dt_labels():
|
|
import webnotes
|
|
res = webnotes.conn.sql("select name, dt_label from `tabDocType Label`")
|
|
return dict(res)
|