fleast/main.py

109 lines
4.1 KiB
Python
Raw Normal View History

2018-03-05 13:57:23 +00:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import cherrypy
2018-08-13 19:10:52 +00:00
from twitch import TwitchClient
2018-03-05 13:57:23 +00:00
2021-05-16 12:27:15 +00:00
ver = '1.9.0'
2018-03-05 13:57:23 +00:00
class FleastServer(object):
def __init__(self):
try:
with open('.token', 'r') as reader:
self.twitch_token = reader.read().strip()
with open('.secret', 'r') as reader:
self.secret = reader.read().strip()
2018-03-05 13:57:23 +00:00
with open('./web/fl.html', 'r') as reader:
self.index_page = reader.read()
with open('./web/fl_template_main.html', 'r') as reader:
self.templ_main = reader.read()
with open('./web/fl_template_stream.html', 'r') as reader:
self.templ_stream = reader.read()
with open('./web/fl_template_lang.html', 'r') as reader:
self.templ_lang = reader.read().splitlines()
self.client = TwitchClient(self.twitch_token, self.secret, freq=1)
2018-03-05 13:57:23 +00:00
except:
print("Cannot read token for twitch app or templates, abort.")
exit(1)
def set_templ_lang(self, lang):
2018-08-13 19:10:52 +00:00
"""
Set autoselected language in html
:param lang: string with the shortcut of language
:return: string with html list of languages and one is selected
"""
2018-03-05 13:57:23 +00:00
templ = ''
end = False
for l in self.templ_lang:
if not end and 'option value="{}"'.format(lang) in l:
templ += l.format('selected') + '\n'
end = True
continue
templ += l.format(' ') + '\n'
return templ.rstrip()
def to_html(self, text):
2018-08-13 19:10:52 +00:00
"""
Relace all non xml symbols with aliases
:param text: string with html source code
:return: filtered string with html source code
"""
repl = {'"': '&quot;', '<': '&lt;', '>': '&gt;'}
text.replace('&', '&amp;')
2018-03-05 13:57:23 +00:00
for i in repl:
text = text.replace(i, repl[i])
return text
@cherrypy.expose
def index(self, game=None, lang=None):
return self.fleast(game, lang)
@cherrypy.expose
def fleast(self, game=None, lang=None):
if game is None or game == '':
2018-08-13 19:10:52 +00:00
return self.index_page.format(_version_=ver,
_opt_langs_=self.set_templ_lang('ru'))
2018-03-05 13:57:23 +00:00
game = game.rstrip()
2018-08-13 19:10:52 +00:00
cherrypy.log('Getting game:"{}" language:{}'.format(game, lang))
2018-11-25 12:35:50 +00:00
if game == "IRL":
data = self.client.get_irl_live_streams_v6(lang)
else:
2021-05-16 09:43:59 +00:00
data = self.client.get_live_streams_v6(game, lang)
2018-03-05 13:57:23 +00:00
if data is None:
2018-08-13 19:10:52 +00:00
return 'Internal Error<br>Tell me more at ' \
'<a href="https://twitter.com/alexvanin">https://twitter.com/alexvanin</a>'
if data['_total'] == 0:
return self.templ_main.format(_stream_num_=data['_total'],
_game_name_=game,
_opt_langs_=self.set_templ_lang(lang),
_stream_list_='',
_version_=ver)
2018-03-05 13:57:23 +00:00
cherrypy.log('Found %d streams' % data['_total'])
result_str = ''
irl_url = 'https://twitch.tv/{}'
for s in data['streams']:
result_str += self.templ_stream.format(irl_url.format(s['user_name']),
2021-05-16 09:06:28 +00:00
s['thumbnail_url'].format(width=320, height=180),
self.to_html(s['title']),
s['user_name'],
s['viewer_count']) + '\n'
2018-08-13 19:10:52 +00:00
return self.templ_main.format(_stream_num_=len(data['streams']),
2018-08-13 19:10:52 +00:00
_game_name_=game,
_opt_langs_=self.set_templ_lang(lang),
_stream_list_=result_str,
_version_=ver)
2018-03-05 13:57:23 +00:00
def main():
server = FleastServer()
cherrypy.quickstart(server, '/', './server.conf')
if __name__ == '__main__':
main()