-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreport.py
executable file
·183 lines (142 loc) · 5.69 KB
/
report.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# webex-messaging-activity-report-sample
# Copyright (c) 2019 Cisco and/or its affiliates.
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from jinja2 import Environment, FileSystemLoader
import sqlite3
import webbrowser
from datetime import datetime, timedelta
import zoneinfo
from webexteamssdk import WebexTeamsAPI
def generate(conn, webexAccessToken, startDate, endDate, criteria):
cursor = conn.cursor()
api = WebexTeamsAPI(access_token=webexAccessToken)
userId = api.people.me().id
def renderName(id, displayName):
return "<b>You</b>" if id == userId else displayName
def renderRow(id):
return '<tr class="mention-row">' if id == userId else "<tr>"
def renderText(id, text, html, parentId):
cssClass = "activity-item--message"
cssClass = (
cssClass
if parentId is None
else "activity-item activity-threading-reply " + cssClass
)
cssClass = cssClass if id != userId else cssClass + " message-mine"
text = text if text is not None else ""
text = html if html is not None else text
return f'<td class="{ cssClass}"><div class="message-cell">{ text }</div></td>'
def renderShortDate(timeStr):
testDate = datetime.strptime(timeStr, "%Y-%m-%dT%H:%M:%S.%f%z")
return testDate.astimezone().strftime("%m/%d %H:%M")
resp = cursor.execute(
'SELECT COUNT(*) FROM sqlite_master WHERE type="table" AND name="people"'
)
if resp.fetchone()[0] == 0:
resp = cursor.execute(
"""CREATE TABLE people (
id text,
displayName text,
avatar text)"""
)
conn.commit
print("Retrieving people...", end="")
startTime = (datetime.strptime(startDate, "%Y/%m/%d")).astimezone(
zoneinfo.ZoneInfo("UTC")
)
startTime = startTime.strftime("%Y-%m-%dT%H:%M:%S.%f%z")
endTime = (datetime.strptime(endDate, "%Y/%m/%d") + timedelta(days=1)).astimezone(
zoneinfo.ZoneInfo("UTC")
)
endTime = endTime.strftime("%Y-%m-%dT%H:%M:%S.%f%z")
sqlMentioningMe = (
f'mentionedPeople like "%{ userId }%" OR' if criteria["mentioningMe"] else ""
)
sqlMentioningAll = (
"mentionedGroups = '[\"all\"]' OR" if criteria["mentioningAll"] else ""
)
sqlDirectMessage = 'roomType = "direct" OR' if criteria["directMessage"] else ""
sqlPersonId = f'personId = "{ userId }"'
query = f"""
SELECT DISTINCT messages.personId
FROM messages LEFT OUTER JOIN people
ON messages.personId = people.id
WHERE
people.id IS NULL AND
messages.created > "{ startTime }" AND
messages.created < "{ endTime }" AND
roomId IN
( SELECT roomId FROM messages WHERE
{ sqlMentioningMe }
{ sqlMentioningAll }
{ sqlDirectMessage }
{ sqlPersonId }
)"""
rows = cursor.execute(query)
data = []
peopleCount = 0
for row in rows:
peopleCount += 1
print(f"\rRetrieving people: {peopleCount}", end="")
personId = row[0]
try:
person = api.people.get(personId)
data.append(
(
person.id,
person.displayName if bool(person.displayName) else "Unknown",
person.avatar if bool(person.avatar) else None,
)
)
except:
data.append((personId, "Unknown", None))
pass
cursor.executemany("INSERT INTO people VALUES (?,?,?)", data)
conn.commit()
print("\nGenerating report...", end="")
query = f"""
SELECT messages.*, people.displayName, people.avatar
FROM messages LEFT OUTER JOIN people
ON messages.personId = people.id
WHERE
messages.created > "{ startTime }" AND
messages.created < "{ endTime }" AND
roomId IN
( SELECT roomId FROM messages WHERE
{ sqlMentioningMe }
{ sqlMentioningAll }
{ sqlDirectMessage }
{ sqlPersonId }
)
ORDER BY messages.roomId, messages.threadCreated, messages.created
"""
rows = cursor.execute(query)
file_loader = FileSystemLoader(".")
env = Environment(loader=file_loader, line_statement_prefix="#")
html = env.get_template("template.html").render(
startDate=startDate,
endDate=endDate,
rows=rows,
renderShortDate=renderShortDate,
renderName=renderName,
renderText=renderText,
renderRow=renderRow,
)
with open("www/report.html", "w", encoding="utf-8") as outfile:
outfile.write(html)
webbrowser.open("www/report.html")
print("\rReport complete ")