2012-02-28 12:10:13 +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
|
2012-02-27 12:33:54 +00:00
|
|
|
import webnotes
|
|
|
|
|
|
|
|
@webnotes.whitelist()
|
|
|
|
def get_list(arg=None):
|
|
|
|
"""get list of messages"""
|
|
|
|
webnotes.form_dict['limit_start'] = int(webnotes.form_dict['limit_start'])
|
|
|
|
webnotes.form_dict['limit_page_length'] = int(webnotes.form_dict['limit_page_length'])
|
|
|
|
webnotes.form_dict['user'] = webnotes.session['user']
|
|
|
|
|
|
|
|
if webnotes.form_dict['contact'] == webnotes.session['user']:
|
2012-02-27 12:47:57 +00:00
|
|
|
# set all messages as read
|
2012-03-30 06:59:06 +00:00
|
|
|
webnotes.conn.sql("""UPDATE `tabComment`
|
2012-02-27 12:47:57 +00:00
|
|
|
set docstatus = 1 where comment_doctype in ('My Company', 'Message')
|
|
|
|
and comment_docname = %s
|
|
|
|
""", webnotes.user.name)
|
|
|
|
|
|
|
|
# return messages
|
2012-03-30 06:59:06 +00:00
|
|
|
return webnotes.conn.sql("""select * from `tabComment`
|
2012-10-03 13:02:10 +00:00
|
|
|
where (owner=%(contact)s
|
|
|
|
or comment_docname=%(user)s
|
|
|
|
or (owner=comment_docname and ifnull(parenttype, "")!="Assignment"))
|
|
|
|
and comment_doctype ='Message'
|
2012-02-27 12:33:54 +00:00
|
|
|
order by creation desc
|
|
|
|
limit %(limit_start)s, %(limit_page_length)s""", webnotes.form_dict, as_dict=1)
|
|
|
|
else:
|
2012-03-30 06:59:06 +00:00
|
|
|
return webnotes.conn.sql("""select * from `tabComment`
|
2012-02-27 12:33:54 +00:00
|
|
|
where (owner=%(contact)s and comment_docname=%(user)s)
|
|
|
|
or (owner=%(user)s and comment_docname=%(contact)s)
|
2012-10-03 13:02:10 +00:00
|
|
|
or (owner=%(contact)s and comment_docname=%(contact)s)
|
|
|
|
and comment_doctype ='Message'
|
2012-02-27 12:33:54 +00:00
|
|
|
order by creation desc
|
|
|
|
limit %(limit_start)s, %(limit_page_length)s""", webnotes.form_dict, as_dict=1)
|
|
|
|
|
|
|
|
|
|
|
|
@webnotes.whitelist()
|
|
|
|
def get_active_users(arg=None):
|
2012-09-27 13:11:46 +00:00
|
|
|
return webnotes.conn.sql("""select name,
|
|
|
|
(select count(*) from tabSessions where user=tabProfile.name
|
|
|
|
and timediff(now(), lastupdate) < time("01:00:00")) as has_session
|
|
|
|
from tabProfile
|
2012-03-01 08:17:51 +00:00
|
|
|
where ifnull(enabled,0)=1 and
|
|
|
|
docstatus < 2 and
|
2012-02-27 12:33:54 +00:00
|
|
|
name not in ('Administrator', 'Guest')
|
|
|
|
order by first_name""", as_dict=1)
|
|
|
|
|
|
|
|
@webnotes.whitelist()
|
|
|
|
def post(arg=None):
|
2012-04-30 08:52:02 +00:00
|
|
|
import webnotes
|
2012-02-27 12:33:54 +00:00
|
|
|
"""post message"""
|
2012-03-08 06:40:51 +00:00
|
|
|
if arg:
|
|
|
|
import json
|
|
|
|
arg = json.loads(arg)
|
|
|
|
else:
|
|
|
|
arg = {}
|
|
|
|
arg.update(webnotes.form_dict)
|
2012-02-27 12:33:54 +00:00
|
|
|
from webnotes.model.doc import Document
|
2012-03-30 06:59:06 +00:00
|
|
|
d = Document('Comment')
|
2012-02-27 12:33:54 +00:00
|
|
|
d.comment = arg['txt']
|
|
|
|
d.comment_docname = arg['contact']
|
|
|
|
d.comment_doctype = 'Message'
|
|
|
|
d.save()
|
2012-04-06 12:24:17 +00:00
|
|
|
|
|
|
|
import webnotes.utils
|
|
|
|
if webnotes.utils.cint(arg.get('notify')):
|
|
|
|
notify(arg)
|
2012-02-27 13:11:11 +00:00
|
|
|
|
|
|
|
@webnotes.whitelist()
|
|
|
|
def delete(arg=None):
|
2012-03-30 06:59:06 +00:00
|
|
|
webnotes.conn.sql("""delete from `tabComment` where name=%s""",
|
2012-02-27 13:11:11 +00:00
|
|
|
webnotes.form_dict['name']);
|
2012-04-06 12:24:17 +00:00
|
|
|
|
|
|
|
def notify(arg=None):
|
|
|
|
from webnotes.utils import cstr
|
|
|
|
fn = webnotes.conn.sql('select first_name, last_name from tabProfile where name=%s', webnotes.user.name)[0]
|
|
|
|
if fn[0] or f[1]:
|
|
|
|
fn = cstr(fn[0]) + (fn[0] and ' ' or '') + cstr(fn[1])
|
|
|
|
else:
|
|
|
|
fn = webnotes.user.name
|
|
|
|
|
|
|
|
message = '''A new comment has been posted on your page by %s:
|
|
|
|
|
|
|
|
<b>Comment:</b> %s
|
|
|
|
|
|
|
|
To answer, please login to your erpnext account!
|
|
|
|
''' % (fn, arg['txt'])
|
|
|
|
|
|
|
|
from webnotes.model.code import get_obj
|
|
|
|
note = get_obj('Notification Control')
|
|
|
|
email_msg = note.prepare_message({
|
|
|
|
'type': 'New Comment',
|
|
|
|
'message': message
|
|
|
|
})
|
|
|
|
|
|
|
|
sender = webnotes.user.name!='Administrator' and webnotes.user.name or 'support+admin_post@erpnext.com'
|
2012-03-08 06:36:27 +00:00
|
|
|
|
2012-04-06 12:24:17 +00:00
|
|
|
from webnotes.utils.email_lib import sendmail
|
|
|
|
sendmail([arg['contact']], sender, email_msg, fn + ' has posted a new comment')
|