-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspark.py
166 lines (131 loc) · 4.7 KB
/
spark.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
__author__ = 'Chad Peterson'
__email__ = '[email protected]'
import base64
import requests
import json
import iso8601
import datetime
import pytz
import tzlocal
import sys
class ROOM(object):
"""
Class used for creating rooms
"""
def __init__(self, auth, roomId):
self.auth = auth
self.roomId = roomId
self.title = self.getRoomTitle
self.urlid = self.getRoomURL
self.users = self.getUsers
#self.messages = self.getMessages
@property
def getRoomTitle(self):
url = "https://api.ciscospark.com/v1/rooms/" + self.roomId
headers = {
'authorization': self.auth,
'cache-control': "no-cache",
'content-type': 'application/json'
}
response = requests.request("GET", url, headers=headers)
roominfo = json.loads(response.content)
title = str(roominfo[u'title'])
return title
@property
def getRoomURL(self):
basedecode = base64.b64decode(self.roomId)
roomurl = basedecode.split('/')[-1]
return roomurl
@property
def getUsers(self):
url = "https://api.ciscospark.com/v1/memberships"
querystring = {"roomId": self.roomId}
headers = {
'authorization': self.auth,
'cache-control': "no-cache",
'content-type': 'application/json'
}
response = requests.request("GET", url, headers=headers, params=querystring)
users = json.loads(response.content)
users = users[u'items']
user_list = []
for user in users:
##Ignore monitor bots
if user[u'isMonitor'] == False:
#user_list.append(str(user['personId']))
user_list.append(USER(self.auth, user['personId']))
return user_list
def shiftTimeZone(self, timestamp):
from_zone = tz.gettz('UTC')
to_zone = tz.gettz('America/Chicago')
@property
def getMessages(self):
#date = datetime.datetime.now().date()
#date = (datetime.datetime.now() - datetime.timedelta(days=1)).date()
local_timezone = tzlocal.get_localzone()
url = "https://api.ciscospark.com/v1/messages"
#querystring = {"roomId": self.roomId,
# "max": 50}
querystring = {"roomId": self.roomId}
headers = {
'authorization': self.auth,
'cache-control': "no-cache",
'content-type': 'application/json'}
response = requests.request("GET", url, headers=headers, params=querystring)
messages = json.loads(response.content)
messages = messages[u'items']
#todaymsg_list = []
todaymsg_list = messages
if len(todaymsg_list) == 0:
sys.exit("No Messages to send")
return todaymsg_list
def getMsgBeforeDate(self, date):
tz = pytz.timezone("America/Chicago")
date = date + datetime.timedelta(days=1)
midnight = datetime.datetime.combine(date, datetime.time())
print midnight
datestring = midnight.strftime('%Y-%m-%dT%H:%m:%S.%f')[:-3] + "-05:00"
print datestring
url = "https://api.ciscospark.com/v1/messages"
querystring = {"roomId": self.roomId,
'before': str(datestring)
}
headers = {
'authorization': self.auth,
'cache-control': "no-cache",
'content-type': 'application/json'
}
response = requests.request("GET", url, headers=headers, params=querystring)
messages = json.loads(response.content)
messages = messages[u'items']
todaymsg_list = messages
if len(todaymsg_list) == 0:
sys.exit("No Messages to send")
return todaymsg_list
class USER(object):
def __init__(self, auth, personId):
self.auth = auth
self.personId = personId
self.emails = []
self.emails = self.getEmails()
self.displayname = self.getDisplayName()
def getEmails(self):
emails = self.getUserInfo()[u'emails']
return emails
def getDisplayName(self):
displayname = str(self.getUserInfo()['displayName'])
return displayname
def getUserInfo(self):
url = "https://api.ciscospark.com/v1/people/" + self.personId
headers = {
'authorization': self.auth,
'cache-control': "no-cache",
'content-type': 'application/json'
}
response = requests.request("GET", url, headers=headers)
userinfo = json.loads(response.content)
return userinfo
class MESSAGE(object):
def __init__(self, message):
for key in message:
setattr(self, key, message[key])