seitime-frappe/frappe/desk/page/activity/activity.py
Suraj Shetty c0c5b2ebdd
style: format all python files using black (#16453)
Co-authored-by: Frappe Bot <developers@frappe.io>
2022-04-12 10:59:25 +05:30

65 lines
1.9 KiB
Python

# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
# License: MIT. See LICENSE
import frappe
from frappe.core.doctype.activity_log.feed import get_feed_match_conditions
from frappe.utils import cint
@frappe.whitelist()
def get_feed(start, page_length):
"""get feed"""
match_conditions_communication = get_feed_match_conditions(frappe.session.user, "Communication")
match_conditions_comment = get_feed_match_conditions(frappe.session.user, "Comment")
result = frappe.db.sql(
"""select X.*
from (select name, owner, modified, creation, seen, comment_type,
reference_doctype, reference_name, '' as link_doctype, '' as link_name, subject,
communication_type, communication_medium, content
from
`tabCommunication`
where
communication_type = 'Communication'
and communication_medium != 'Email'
and {match_conditions_communication}
UNION
select name, owner, modified, creation, '0', 'Updated',
reference_doctype, reference_name, link_doctype, link_name, subject,
'Comment', '', content
from
`tabActivity Log`
UNION
select name, owner, modified, creation, '0', comment_type,
reference_doctype, reference_name, link_doctype, link_name, '',
'Comment', '', content
from
`tabComment`
where
{match_conditions_comment}
) X
order by X.creation DESC
LIMIT %(page_length)s
OFFSET %(start)s""".format(
match_conditions_comment=match_conditions_comment,
match_conditions_communication=match_conditions_communication,
),
{"user": frappe.session.user, "start": cint(start), "page_length": cint(page_length)},
as_dict=True,
)
return result
@frappe.whitelist()
def get_heatmap_data():
return dict(
frappe.db.sql(
"""select unix_timestamp(date(creation)), count(name)
from `tabActivity Log`
where
date(creation) > subdate(curdate(), interval 1 year)
group by date(creation)
order by creation asc"""
)
)