forked from CactusDev/CactusBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeam.py
328 lines (257 loc) · 11.1 KB
/
beam.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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
from tornado.websocket import websocket_connect
from tornado.gen import coroutine
from tornado.ioloop import PeriodicCallback
from requests import Session
from requests.compat import urljoin
from logging import getLogger as get_logger
from logging import getLevelName as get_level_name
from logging import StreamHandler, FileHandler, Formatter
from functools import partial
from json import dumps, loads
from re import match
class Beam:
path = "https://beam.pro/api/v1/"
message_id = 0
def __init__(self, debug="INFO", **kwargs):
self._init_logger(debug, kwargs.get("log_to_file", True))
self.http_session = Session()
def _init_logger(self, level="INFO", file_logging=True, **kwargs):
"""Initialize logger."""
self.logger = get_logger("CactusBot")
self.logger.propagate = False
self.logger.setLevel("DEBUG")
if level is True or level.lower() == "true":
level = "DEBUG"
elif level is False or level.lower() == "false":
level = "WARNING"
elif hasattr(level, "upper"):
level = level.upper()
format = kwargs.get(
"format",
"%(asctime)s %(name)s %(levelname)-8s %(message)s"
)
formatter = Formatter(format, datefmt='%Y-%m-%d %H:%M:%S')
try:
from coloredlogs import ColoredFormatter
colored_formatter = ColoredFormatter(format)
except ImportError:
colored_formatter = formatter
self.logger.warning(
"Module 'coloredlogs' unavailable; using ugly logging.")
stream_handler = StreamHandler()
stream_handler.setLevel(level)
stream_handler.setFormatter(colored_formatter)
self.logger.addHandler(stream_handler)
if file_logging:
file_handler = FileHandler("latest.log")
file_handler.setLevel("DEBUG")
file_handler.setFormatter(formatter)
self.logger.addHandler(file_handler)
get_logger("requests").setLevel(get_level_name("WARNING"))
self.logger.info("Logger initialized with level '{}'.".format(level))
def _request(self, url, method="GET", **kwargs):
"""Send HTTP request to Beam."""
response = self.http_session.request(
method, urljoin(self.path, url.lstrip('/')), **kwargs)
try:
return response.json()
except Exception:
return response.text
def login(self, username, password, code=''):
"""Authenticate and login with Beam."""
packet = {
"username": username,
"password": password,
"code": code
}
return self._request("/users/login", method="POST", data=packet)
def get_channel(self, id, **params):
"""Get channel data by username."""
return self._request("/channels/{id}".format(id=id), params=params)
def get_chat(self, id):
"""Get chat server data."""
return self._request("/chats/{id}".format(id=id))
def connect(self, channel_id, bot_id, silent=False):
"""Connect to a Beam chat through a websocket."""
self.connection_information = {
"channel_id": channel_id,
"bot_id": bot_id,
"silent": silent
}
chat = self.get_chat(channel_id)
self.servers = chat["endpoints"]
self.server_offset = 0
authkey = chat["authkey"]
self.logger.debug("Connecting to: {server}.".format(
server=self.servers[self.server_offset]))
websocket_connection = websocket_connect(
self.servers[self.server_offset])
if silent:
websocket_connection.add_done_callback(
partial(self.authenticate, channel_id))
else:
websocket_connection.add_done_callback(
partial(self.authenticate, channel_id, bot_id, authkey))
def authenticate(self, *args):
"""Authenticate session to a Beam chat through a websocket."""
future = args[-1]
if future.exception() is None:
self.websocket = future.result()
self.logger.info("Successfully connected to chat {}.".format(
self.channel_data["token"]))
self.send_message(*args[:-1], method="auth")
self.read_chat(self.handle)
else:
raise ConnectionError(future.exception())
def send_message(self, *args, method="msg"):
"""Send a message to a Beam chat through a websocket."""
if method == "msg":
for message in args:
message_packet = {
"type": "method",
"method": "msg",
"arguments": (message,),
"id": self.message_id
}
self.websocket.write_message(dumps(message_packet))
self.message_id += 1
else:
message_packet = {
"type": "method",
"method": method,
"arguments": args,
"id": self.message_id
}
self.websocket.write_message(dumps(message_packet))
self.message_id += 1
if method == "whisper":
self.logger.info("$ [{bot_name} > {user}] {message}".format(
bot_name=self.config["auth"]["username"],
user=args[0],
message=args[1]))
def remove_message(self, channel_id, message_id):
"""Remove a message from chat."""
return self._request("/chats/{id}/message/{message}".format(
id=channel_id, message=message_id), method="DELETE")
@coroutine
def read_chat(self, handler=None):
"""Read and handle messages from a Beam chat through a websocket."""
while True:
message = yield self.websocket.read_message()
if message is None:
self.logger.warning(
"Connection to chat server lost. Attempting to reconnect.")
self.server_offset += 1
self.server_offset %= len(self.servers)
self.logger.debug("Connecting to: {server}.".format(
server=self.servers[self.server_offset]))
websocket_connection = websocket_connect(
self.servers[self.server_offset])
authkey = self.get_chat(
self.connection_information["channel_id"])["authkey"]
if self.connection_information["silent"]:
websocket_connection.add_done_callback(
partial(
self.authenticate,
self.connection_information["channel_id"]
)
)
else:
websocket_connection.add_done_callback(
partial(
self.authenticate,
self.connection_information["channel_id"],
self.connection_information["bot_id"],
authkey
)
)
response = loads(message)
self.logger.debug("CHAT: {}".format(response))
if callable(handler):
handler(response)
def connect_to_liveloading(self, channel_id, user_id):
"""Connect to Beam liveloading."""
liveloading_websocket_connection = websocket_connect(
"wss://realtime.beam.pro/socket.io/?EIO=3&transport=websocket")
liveloading_websocket_connection.add_done_callback(
partial(self.subscribe_to_liveloading, channel_id, user_id))
def subscribe_to_liveloading(self, channel_id, user_id, future):
"""Subscribe to Beam liveloading."""
if future.exception() is None:
self.liveloading_websocket = future.result()
self.logger.info(
"Successfully connected to liveloading websocket.")
interfaces = (
"channel:{channel_id}:update",
"channel:{channel_id}:followed",
"channel:{channel_id}:subscribed",
"channel:{channel_id}:resubscribed",
"user:{user_id}:update"
)
self.subscribe_to_interfaces(
*tuple(
interface.format(channel_id=channel_id, user_id=user_id)
for interface in interfaces
)
)
self.logger.info(
"Successfully subscribed to liveloading interfaces.")
self.watch_liveloading()
else:
raise ConnectionError(future.exception())
def subscribe_to_interfaces(self, *interfaces):
"""Subscribe to a Beam liveloading interface."""
for interface in interfaces:
packet = [
"put",
{
"method": "put",
"headers": {},
"data": {
"slug": [
interface
]
},
"url": "/api/v1/live"
}
]
self.liveloading_websocket.write_message('420' + dumps(packet))
def parse_liveloading_message(self, message):
"""Parse a message received from the Beam liveloading websocket."""
sections = match("(\d+)(.+)?$", message).groups()
return {
"code": sections[0],
"data": loads(sections[1]) if sections[1] is not None else None
}
@coroutine
def watch_liveloading(self, handler=None):
"""Watch and handle packets from the Beam liveloading websocket."""
response = yield self.liveloading_websocket.read_message()
if response is None:
raise ConnectionError
packet = self.parse_liveloading_message(response)
PeriodicCallback(
partial(self.liveloading_websocket.write_message, '2'),
packet["data"]["pingInterval"]
).start()
while True:
message = yield self.liveloading_websocket.read_message()
if message is None:
raise ConnectionError
packet = self.parse_liveloading_message(message)
if packet.get("data") is not None:
self.logger.debug("LIVE: {}".format(packet))
if isinstance(packet["data"], list):
if isinstance(packet["data"][0], str):
if packet["data"][1].get("following"):
self.logger.info("- {} followed.".format(
packet["data"][1]["user"]["username"]))
self.send_message(
"Thanks for the follow, @{}!".format(
packet["data"][1]["user"]["username"]))
elif packet["data"][1].get("subscribed"):
self.logger.info("- {} subscribed.".format(
packet["data"][1]["user"]["username"]))
self.send_message(
"Thanks for the subscription, @{}! <3".format(
packet["data"][1]["user"]["username"]))