-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sample.py
256 lines (233 loc) · 5.68 KB
/
config.sample.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
"""
sample config module
run "cp config.sample.py config.py" to create local config
edit config.py functions to override default bot behavior
"""
__name__ = 'localConfig'
__package__ = 'ringcentral_bot_framework'
'''
import copy
def botJoinPrivateChatAction(bot, groupId, user, dbAction):
"""
bot join private chat event handler
bot could send some welcome message or help, or something else
"""
bot.sendMessage(
groupId,
{
'text': f'Hello, I am a chatbot. Please reply "![:Person]({bot.id})" if you want to talk to me.'
}
)
def botGotPostAddAction(
bot,
groupId,
creatorId,
user,
text,
dbAction,
handledByExtension
):
"""
bot got group chat message: text
bot could send some response
"""
if f'![:Person]({bot.id})' in text:
bot.sendMessage(
groupId,
{
'text': f'![:Person]({creatorId}), Hello, you just posted "{text}"'
}
)
def botGroupLeftAction(
bot,
message,
dbAction
):
"""
got message that bot has left chat group
could do some clean up work here
default: remove group id ref in all user database
"""
users = dbAction('user', 'get')
for user in users:
id = user['id']
groups = user['groups']
keys = groups.keys()
ngroups = copy.deepcopy(groups)
for groupId in keys:
if groups[groupId] == bot.id:
ngroups.pop(groupId, None)
dbAction('user', 'update', {
'id': id,
'update': {
'groups': ngroups
}
})
def botDeleteAction(bot, message, dbAction):
"""
got message that bot has beed deleted
could do some clean up work here
default: delete bot from database
"""
bot.destroy()
def botAuthAction(bot, dbAction):
"""
After bot auth success,
can do some bot actions
default: do nothing
"""
return
def userAuthSuccessAction(bot, groupId, userId, dbAction):
"""
user auth bot app to access user data success,
bot would do something
default: send login success message to chatgroup
if you only have bot app, it is not needed
"""
bot.sendMessage(groupId, {
'text': f'![:Person]({userId}), you have successfully authorized me to access your RingCentral data!'
})
def userAddGroupInfoAction(bot, user, groupId, dbAction):
"""
user add group and bot connect info,
bot or user could do something about it,
default: do nothing
if you only have bot app, it is not needed
"""
return
def userAuthSuccessHtml(user, conf):
"""
user auth success, would see this html from browser
if you only have bot app, it is not needed
"""
return '<div style="text-align: center;font-size: 20px;border: 5px solid #08c;padding: 30px;">You have authorized the bot to access your RingCentral data! Please close this page and get back to Glip</div>'
def userEventAction(
user,
eventType,
event,
getBot,
dbAction
):
"""
bot got subscribed user event,
do something about it
default: post to chatgroup about the event
if you only have bot app, it is not needed
"""
groups = user.groups
keys = groups.keys()
for groupId in keys:
botId = groups[groupId]
bot = getBot(botId)
if bot != False and eventType != 'PostAdded':
bot.sendMessage(groupId, {
'text': f'![:Person]({user.id}), got event "{eventType}"'
})
def botFilters():
"""
customize bot filters to subscribe
"""
return [
'/restapi/v1.0/glip/posts',
'/restapi/v1.0/glip/groups',
'/restapi/v1.0/account/~/extension/~'
]
def userFilters():
"""
customize user filters to subscribe
"""
return [
'/restapi/v1.0/account/~/extension/~/message-store'
]
def dbTables():
"""
db tables to init
"""
return [
{
'name': 'bot',
'schemas': [
{
'name': 'id',
'type': 'string',
'primary': True
},
{
'name': 'token',
'type': 'json'
},
{
'name': 'data',
'type': 'json'
}
]
},
{
'name': 'user',
'schemas': [
{
'name': 'id',
'type': 'string',
'primary': True
},
{
'name': 'token',
'type': 'json'
},
{
'name': 'groups',
'type': 'json'
},
{
'name': 'data',
'type': 'json'
}
]
}
]
def dbWrapper(tableName, action, data = None):
"""custom db action wrapper
* set DB_TYPE=custom in .env to activate
* make sure it it stateless,
* in every action, you should check database is ready or not, if not, init it first
* check https://github.com/zxdong262/ringcentral-chatbot-python/blob/master/ringcentral_bot_framework/core/dynamodb.py or https://github.com/zxdong262/ringcentral-chatbot-python/blob/master/ringcentral_bot_framework/core/filedb.py as example
* @param {String} tableName, user or bot, or other table you defined
* @param {String} action, add, remove, update, get
* @param {Object} data
* for add, {'id': 'xxx', 'token': {...}, 'groups': {...}, 'data': {...}}
* for remove, {'id': xxx} or {'ids': [...]}
* for update, {'id': xxx, 'update': {...}}
* for get, singleUser:{'id': xxx}, allUser: None
"""
# todo prepare/check database
# prepareDB()
try:
id = None
if 'id' in data:
id = data['id']
if action == 'add':
# todo
print(id)
return 'added'
elif action == 'remove':
# todo
return 'removed'
elif action == 'update':
# todo
return 'updated'
elif action == 'get':
# todo
if not id is None:
return {}
else:
return [{}]
except Exception as e:
print(e)
return False
def dbName():
"""
return db name
* set DB_TYPE=custom in .env to activate
"""
return 'custom'
'''