brotherton-erpnext/home/page/profile_settings/profile_settings.py

119 lines
3.4 KiB
Python
Raw Normal View History

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/>.
from __future__ import unicode_literals
import webnotes
from webnotes.utils import load_json, cint, nowdate
2012-05-01 09:26:20 +00:00
def check_demo():
demo_user = 'demo@erpnext.com'
2012-05-01 09:26:20 +00:00
if webnotes.session['user']==demo_user:
webnotes.msgprint("Can't change in demo", raise_exception=1)
2012-02-13 11:20:52 +00:00
@webnotes.whitelist()
def change_password(arg):
2011-07-06 05:12:02 +00:00
"""
Change password
"""
2012-05-01 09:26:20 +00:00
check_demo()
arg = load_json(arg)
if not webnotes.conn.sql("""select * from `__Auth` where `user`=%s
and password=password(%s)""",
(webnotes.session["user"], arg["old_password"])):
2012-01-19 09:39:49 +00:00
webnotes.msgprint('Old password is not correct', raise_exception=1)
webnotes.conn.sql("""update `__Auth` set password=password(%s)
where `user`=%s""", (arg["new_password"], webnotes.session["user"]))
2012-01-19 09:39:49 +00:00
webnotes.msgprint('Password Updated');
2012-02-13 11:20:52 +00:00
@webnotes.whitelist()
def get_user_details(arg=None):
2011-09-05 07:44:18 +00:00
"""
Returns user first name, last name and bio
"""
2012-11-26 11:21:51 +00:00
return webnotes.conn.sql("""select first_name, last_name, bio, email_signature
from tabProfile where name=%s""", webnotes.user.name, as_dict=1)[0]
2012-02-13 11:20:52 +00:00
@webnotes.whitelist()
def set_user_details(arg=None):
2011-09-05 07:44:18 +00:00
"""
updates user details given in argument
"""
2012-05-01 09:26:20 +00:00
check_demo()
from webnotes.model.doc import Document
p = Document('Profile', webnotes.user.name)
2012-01-11 11:23:50 +00:00
arg_dict = load_json(arg)
if not 'bio' in arg_dict: arg_dict['bio'] = None
if not 'last_name' in arg_dict: arg_dict['last_name'] = None
if not 'email_signature' in arg_dict: arg_dict['email_signature'] = None
2012-01-11 11:23:50 +00:00
p.fields.update(arg_dict)
p.save()
webnotes.msgprint('Updated')
2011-09-05 07:44:18 +00:00
2012-02-13 11:20:52 +00:00
@webnotes.whitelist()
2012-05-10 13:37:53 +00:00
def set_user_image():
2011-09-05 07:44:18 +00:00
"""
Set uploaded image as user image
"""
2012-05-01 09:26:20 +00:00
check_demo()
2012-05-10 13:37:53 +00:00
from webnotes.utils.file_manager import add_file_list, remove_file, save_uploaded
2012-02-29 13:08:18 +00:00
user = webnotes.session['user']
2012-05-10 13:37:53 +00:00
fid, fname = save_uploaded()
2012-02-29 13:08:18 +00:00
# remove old file
old_image = webnotes.conn.get_value('Profile', user, 'user_image')
if old_image:
remove_file('Profile', user, old_image)
# add new file
add_file_list('Profile', user, fname, fid)
webnotes.conn.set_value('Profile', user, 'user_image', fid)
2012-05-10 13:37:53 +00:00
return fid
2012-02-29 13:08:18 +00:00
@webnotes.whitelist()
2012-05-10 13:37:53 +00:00
def set_user_background():
2012-02-29 13:08:18 +00:00
"""
Set uploaded image as user image
"""
2012-05-01 09:26:20 +00:00
check_demo()
2012-05-10 13:37:53 +00:00
from webnotes.utils.file_manager import add_file_list, remove_file, save_uploaded
2012-02-29 13:08:18 +00:00
user = webnotes.session['user']
2012-05-10 13:37:53 +00:00
fid, fname = save_uploaded()
2012-02-29 13:08:18 +00:00
# remove old file
old_image = webnotes.conn.get_value('Profile', user, 'background_image')
if old_image:
remove_file('Profile', user, old_image)
# add new file
add_file_list('Profile', user, fname, fid)
webnotes.conn.set_value('Profile', user, 'background_image', fid)
2012-05-10 13:37:53 +00:00
return fid
2012-09-28 10:41:57 +00:00
@webnotes.whitelist()
def set_user_theme():
webnotes.conn.set_default("theme", webnotes.form_dict.theme, webnotes.session.user)