2012-02-23 07:05:32 +00:00
|
|
|
# ERPNext - web based ERP (http://erpnext.com)
|
|
|
|
# Copyright (C) 2012 Web Notes Technologies Pvt Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2012-07-19 08:10:31 +00:00
|
|
|
from __future__ import unicode_literals
|
2011-06-08 09:07:15 +00:00
|
|
|
import webnotes
|
|
|
|
from webnotes.utils import cint
|
2012-02-03 07:26:12 +00:00
|
|
|
import home
|
2011-06-08 09:07:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
def on_login_post_session(login_manager):
|
2012-01-17 12:47:06 +00:00
|
|
|
"""
|
|
|
|
called after login
|
|
|
|
update login_from and delete parallel sessions
|
|
|
|
"""
|
2012-01-03 10:41:04 +00:00
|
|
|
# Clear previous sessions i.e. logout previous log-in attempts
|
2012-01-19 09:39:49 +00:00
|
|
|
exception_list = ['demo@webnotestech.com', 'Administrator', 'Guest']
|
2012-01-03 05:56:00 +00:00
|
|
|
if webnotes.session['user'] not in exception_list:
|
2012-01-03 10:41:04 +00:00
|
|
|
sid_list = webnotes.conn.sql("""
|
2012-01-17 12:47:06 +00:00
|
|
|
DELETE FROM `tabSessions`
|
2012-01-03 10:41:04 +00:00
|
|
|
WHERE
|
|
|
|
user=%s AND
|
2012-01-17 12:47:06 +00:00
|
|
|
sid!=%s""", \
|
2012-01-03 10:41:04 +00:00
|
|
|
(webnotes.session['user'], webnotes.session['sid']), as_list=1)
|
2012-01-20 10:02:18 +00:00
|
|
|
|
2012-04-27 10:00:23 +00:00
|
|
|
# check if account is expired
|
|
|
|
check_if_expired()
|
|
|
|
|
|
|
|
if webnotes.session['user'] not in ('Guest', 'demo@webnotestech.com'):
|
2012-02-03 07:26:12 +00:00
|
|
|
# create feed
|
|
|
|
from webnotes.utils import nowtime
|
2012-07-13 09:24:40 +00:00
|
|
|
from webnotes.profile import get_user_fullname
|
2012-02-03 07:26:12 +00:00
|
|
|
home.make_feed('Login', 'Profile', login_manager.user, login_manager.user,
|
2012-07-13 09:24:40 +00:00
|
|
|
'%s logged in at %s' % (get_user_fullname, nowtime()),
|
2012-02-03 07:26:12 +00:00
|
|
|
login_manager.user=='Administrator' and '#8CA2B3' or '#1B750D')
|
|
|
|
|
2012-02-15 08:35:42 +00:00
|
|
|
|
2012-02-03 07:26:12 +00:00
|
|
|
def comment_added(doc):
|
|
|
|
"""add comment to feed"""
|
|
|
|
home.make_feed('Comment', doc.comment_doctype, doc.comment_docname, doc.comment_by,
|
|
|
|
'<i>"' + doc.comment + '"</i>', '#6B24B3')
|
|
|
|
|
2012-01-20 10:02:18 +00:00
|
|
|
def doclist_all(doc, method):
|
|
|
|
"""doclist trigger called from webnotes.model.doclist on any event"""
|
2012-01-24 09:03:21 +00:00
|
|
|
home.update_feed(doc, method)
|
|
|
|
|
|
|
|
def boot_session(bootinfo):
|
|
|
|
"""boot session - send website info if guest"""
|
|
|
|
import webnotes
|
|
|
|
import webnotes.model.doc
|
|
|
|
|
2012-02-22 06:37:42 +00:00
|
|
|
bootinfo['custom_css'] = webnotes.conn.get_value('Style Settings', None, 'custom_css') or ''
|
2012-05-01 08:37:41 +00:00
|
|
|
bootinfo['website_settings'] = webnotes.model.doc.getsingle('Website Settings')
|
2012-02-22 06:37:42 +00:00
|
|
|
|
2012-01-24 09:03:21 +00:00
|
|
|
if webnotes.session['user']=='Guest':
|
2012-02-07 05:09:17 +00:00
|
|
|
bootinfo['website_menus'] = webnotes.conn.sql("""select label, url, custom_page,
|
2012-01-31 12:31:16 +00:00
|
|
|
parent_label, parentfield
|
2012-02-02 08:12:28 +00:00
|
|
|
from `tabTop Bar Item` where parent='Website Settings' order by idx asc""", as_dict=1)
|
2012-04-27 13:09:14 +00:00
|
|
|
bootinfo['startup_code'] = \
|
2012-04-30 08:52:02 +00:00
|
|
|
webnotes.conn.get_value('Website Settings', None, 'startup_code')
|
2012-01-24 09:03:21 +00:00
|
|
|
else:
|
|
|
|
bootinfo['letter_heads'] = get_letter_heads()
|
|
|
|
|
2012-02-27 07:24:04 +00:00
|
|
|
import webnotes.model.doctype
|
|
|
|
bootinfo['docs'] += webnotes.model.doctype.get('Event')
|
2012-03-15 06:20:26 +00:00
|
|
|
bootinfo['docs'] += webnotes.model.doctype.get('Search Criteria')
|
2012-02-28 13:26:56 +00:00
|
|
|
|
|
|
|
bootinfo['modules_list'] = webnotes.conn.get_global('modules_list')
|
2012-02-29 09:41:06 +00:00
|
|
|
|
|
|
|
# if no company, show a dialog box to create a new company
|
|
|
|
bootinfo['setup_complete'] = webnotes.conn.sql("""select name from
|
|
|
|
tabCompany limit 1""") and 'Yes' or 'No'
|
2012-02-29 13:08:18 +00:00
|
|
|
|
|
|
|
bootinfo['user_background'] = webnotes.conn.get_value("Profile", webnotes.session['user'], 'background_image') or ''
|
2012-04-27 10:00:23 +00:00
|
|
|
|
|
|
|
# load subscription info
|
|
|
|
import conf
|
2012-09-17 13:40:36 +00:00
|
|
|
for key in ['max_users', 'expires_on', 'max_space', 'status', 'developer_mode']:
|
2012-06-08 10:37:01 +00:00
|
|
|
if hasattr(conf, key): bootinfo[key] = getattr(conf, key)
|
2012-02-27 07:24:04 +00:00
|
|
|
|
2012-05-10 13:49:31 +00:00
|
|
|
company = webnotes.conn.sql("select name, default_currency from `tabCompany`", as_dict=1)
|
|
|
|
company_dict = {}
|
|
|
|
for c in company:
|
|
|
|
company_dict.setdefault(c['name'], {}).update(c)
|
|
|
|
|
|
|
|
bootinfo['company'] = company_dict
|
2012-09-17 13:40:36 +00:00
|
|
|
|
2012-01-24 09:03:21 +00:00
|
|
|
def get_letter_heads():
|
|
|
|
"""load letter heads with startup"""
|
|
|
|
import webnotes
|
2012-02-03 07:26:12 +00:00
|
|
|
ret = webnotes.conn.sql("""select name, content from `tabLetter Head`
|
|
|
|
where ifnull(disabled,0)=0""")
|
2012-01-25 09:36:28 +00:00
|
|
|
return dict(ret)
|
2012-04-27 10:00:23 +00:00
|
|
|
|
2012-02-14 10:46:13 +00:00
|
|
|
|
2012-04-27 10:00:23 +00:00
|
|
|
def check_if_expired():
|
|
|
|
"""check if account is expired. If expired, do not allow login"""
|
|
|
|
import conf
|
|
|
|
# check if expires_on is specified
|
|
|
|
if not hasattr(conf, 'expires_on'): return
|
|
|
|
|
|
|
|
# check if expired
|
|
|
|
from datetime import datetime, date
|
|
|
|
expires_on = datetime.strptime(conf.expires_on, '%Y-%m-%d').date()
|
|
|
|
if date.today() <= expires_on: return
|
|
|
|
|
|
|
|
# if expired, stop user from logging in
|
|
|
|
from webnotes.utils import formatdate
|
2012-09-28 10:36:06 +00:00
|
|
|
msg = """Oops! Your subscription expired on <b>%s</b>.
|
|
|
|
<br>Nothing catastrophic.<br>""" % formatdate(conf.expires_on)
|
|
|
|
|
2012-04-27 10:00:23 +00:00
|
|
|
if 'System Manager' in webnotes.user.roles:
|
2012-09-28 10:36:06 +00:00
|
|
|
msg += """Just drop in a mail at <b>support@erpnext.com</b> and
|
|
|
|
we will guide you to get your account re-activated."""
|
2012-04-27 10:00:23 +00:00
|
|
|
else:
|
2012-09-28 10:36:06 +00:00
|
|
|
msg += """Just ask your System Manager to drop in a mail at <b>support@erpnext.com</b> and
|
|
|
|
we will guide him to get your account re-activated."""
|
|
|
|
|
|
|
|
webnotes.msgprint(msg)
|
2012-04-27 10:00:23 +00:00
|
|
|
|
|
|
|
webnotes.response['message'] = 'Account Expired'
|
2012-04-27 13:09:56 +00:00
|
|
|
raise webnotes.AuthenticationError
|
2012-05-07 12:30:57 +00:00
|
|
|
|
|
|
|
#### website
|
|
|
|
|
|
|
|
def get_web_script():
|
|
|
|
"""returns web startup script"""
|
|
|
|
return webnotes.conn.get_value('Website Settings', None, 'startup_code') or ''
|
|
|
|
|
|
|
|
def get_web_style():
|
|
|
|
"""returns web css"""
|
|
|
|
return webnotes.conn.get_value('Style Settings', None, 'custom_css') or ''
|
|
|
|
|
2012-05-09 04:47:08 +00:00
|
|
|
def get_web_header(page_name):
|
2012-05-07 12:30:57 +00:00
|
|
|
"""get website header"""
|
|
|
|
from website.utils import get_header
|
2012-05-09 04:47:08 +00:00
|
|
|
return get_header(page_name)
|
2012-05-07 12:30:57 +00:00
|
|
|
|
2012-05-09 04:47:08 +00:00
|
|
|
def get_web_footer(page_name):
|
2012-05-07 12:30:57 +00:00
|
|
|
"""get website footer"""
|
|
|
|
from website.utils import get_footer
|
2012-05-09 04:47:08 +00:00
|
|
|
return get_footer(page_name)
|