-
Notifications
You must be signed in to change notification settings - Fork 0
/
pywebio_app.py
437 lines (377 loc) · 14.6 KB
/
pywebio_app.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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
from __future__ import annotations
from typing import Any, Optional, Union
from pywebio import start_server, config
from pywebio.input import *
from pywebio.output import *
from pywebio.pin import *
from pywebio.session import set_env, info as session_info, run_js
from threading import Thread
from os import environ, path
from io import BytesIO
from requests import get as req_get, post as req_post
import requests
import json
import asyncio
from nbs_parser import TEMPO, get_metadata, parse, separate_data
try:
PLAYLIST_GIST = environ['PLAYLIST_GIST']
try:
GITHUB_TOKEN = environ['GITHUB_TOKEN']
URL = f'https://api.github.com/gists/{PLAYLIST_GIST}'
except:
GITHUB_TOKEN = None
except:
PLAYLIST_GIST = None
response: Optional[requests.Request] = None
# def lang(en: str, ru: str) -> str:
# return ru if 'ru' or 'ua' or 'be' in session_info.user_language else en
# def request():
# headers = {
# 'Accept': 'application/vnd.github+json',
# 'Authorization': f'Bearer {TOKEN}',
# 'X-GitHub-Api-Version': '2022-11-28'
# }
# content = json.dumps(
# {
# "C418": {
# "Sweeden":{
# "duration": 4643,
# "id": 'rsd34tt4t8hrvu',
# "file_amount": 2
# }
# }
# },
# )
# new_content = {
# "files": {
# "playlist.json": {
# "content": content,
# }
# }
# }
# global response
# response = requests.patch(
# url=URL, headers=headers, data=json.dumps(new_content)
# )
# print(URL, headers, new_content)
@config(theme='dark')
def main():
set_env(title='JustNBS Player DB')
put_scope('image', position=0)
put_scope('title', position=1)
put_scope('description', position=2)
put_scope('inputs', position=3)
put_scope('latest_tracks', position=4)
if PLAYLIST_GIST is None:
put_markdown('# ОТСУТСТВУЕТ PLAYLIST_GIST В ПЕРЕМЕННЫХ СРЕДЫ')
else:
if GITHUB_TOKEN is None:
put_markdown('# ОТСУТСТВУЕТ GITHUB_TOKEN В ПЕРЕМЕННЫХ СРЕДЫ')
elif not GITHUB_TOKEN.startswith('ghp_'):
put_markdown('# НЕВЕРНЫЙ ФОРМАТ GITHUB_TOKEN')
else:
try:
with use_scope('image', clear=True):
put_image(
open(path.join('resources', 'logo.png'), 'rb').read()
)
except:
with use_scope('image', clear=True):
put_markdown('# NO_IMAGE')
index_page()
def index_page():
def buttons_action(value):
match value:
case 'upload_page':
upload_page()
case 'module_page':
run_js(
"""
navigator.clipboard.writeText("Hello, World!").then(function() {
}, function(err) {
console.error('Could not copy text: ', err);
});
"""
)
toast(
content='Ссылка скопирована в буфер обмена!',
duration=3, color='info',
)
case 'onbs_download':
run_js(
"""
window.open(
"https://github.com/OpenNBS/OpenNoteBlockStudio/releases"
)
"""
)
case 'github_repo':
run_js(
"""
window.open("https://github.com/AMD-Boii/JustNBS-Player")
"""
)
case 'advice_page':
advice_page()
case _:
toast(
content='ОШИБКА ОБРАБОТЧИКА НАЖАТИЙ INDEX_PAGE',
duration=3, color='red',
)
index_page()
with use_scope('title', clear=True):
put_markdown('# Добро пожаловать')
with use_scope('description', clear=True):
put_markdown(
'''
Ссылка на ресурс пак с расширением октав
Требования к .nbs файлу:
• версия OpenNBS -- 3.10.0
• использовать только стандартные звуки
Короткий гайд по созданию мелодии:
• скачайте и установите Open Note Block Studio 3.10.0
'''
)
with use_scope('inputs', clear=True):
put_buttons(
[
dict(label=i[0], value=i[1], color=i[2])
for i in [
['Опубликовать NBS трек', 'upload_page', 'primary'],
['Ссылка на модуль', 'module_page', 'info'],
['Скачать OpenNBS', 'onbs_download', 'danger'],
['GitHub репозиторий', 'github_repo', 'info'],
['Советы по OpenNBS', 'advice_page', 'info'],
]
],
onclick=lambda value: buttons_action(value)
)
def advice_page():
def buttons_action(value):
match value:
case 'index_page':
index_page()
with use_scope('title', clear=True):
put_markdown('# Советы по работе с OpenNBS')
with use_scope('description', clear=True):
put_markdown(
'''
Короткий гайд по созданию мелодии:
• скачайте и установите Open Note Block Studio 3.10.0
'''
)
with use_scope('inputs', clear=True):
put_buttons(
[
dict(label=i[0], value=i[1], color=i[2])
for i in [
['На главную', 'index_page', 'primary'],
]
],
onclick=lambda value: buttons_action(value)
)
def upload_page():
def buttons_action(value):
match value:
case 'upload_nbs':
if pin.uploaded_nbs is None:
toast(
content='Для начала, выберите файл',
duration=3, color='info',
)
else:
nbs_data = get_metadata(BytesIO(pin.uploaded_nbs['content']))
if isinstance(nbs_data, str):
toast(
content=str(nbs_data),
duration=3, color='red',
)
elif not nbs_data[0].tempo in TEMPO:
edit_tempo_page(nbs_data)
else:
edit_meta_page(nbs_data)
case 'index_page':
index_page()
with use_scope('title', clear=True):
put_markdown('# Выберите файл для загрузки')
with use_scope('description', clear=True):
put_markdown('правила загрузки')
with use_scope('inputs', clear=True):
put_file_upload(
name='uploaded_nbs', accept=".nbs",
max_size='250K', placeholder='Выбери NBS файл для загрузки',
help_text='hello'
)
put_buttons(
[
dict(label=i[0], value=i[1], color=i[2])
for i in [
['Загрузить', 'upload_nbs', 'primary'],
['Отмена', 'index_page', 'danger']
]
],
onclick=lambda value: buttons_action(value)
)
def edit_tempo_page(nbs_data):
def buttons_action(value):
match value:
case 'edit_meta_page':
edit_meta_page(nbs_data)
case 'upload_page':
upload_page()
with use_scope('title', clear=True):
put_markdown('# NBS имеет неподдерживаемый темп!')
with use_scope('description', clear=True):
put_markdown('Не беда! Вы можете изменить темп прямо здесь!')
put_markdown('Но лучше вернуться в OpenNBS и тщательно его отредактировать...')
put_markdown('')
put_markdown('Выберите максимально близкий к исходному темп.')
with use_scope('inputs', clear=True):
put_select(
label=f'Выберите поддерживаемый темп (исходный темп {nbs_data[0].tempo} t/s)',
name='new_tempo',
options=[
dict(label=i[0], value=i[1], selected=i[2])
for i in [
['20.0 t/s', 20.0, True],
['10.0 t/s', 10.0, None],
['6.67 t/s', 6.67, None],
['5.0 t/s', 5.0, None],
['4.0 t/s', 4.0, None],
['3.33 t/s', 3.33, None],
['2.86 t/s', 2.86, None],
['2.5 t/s', 2.5, None],
['2.22 t/s', 2.22, None],
['10.0 t/s', 10.0, None],
]
],
)
put_buttons(
[
dict(label=i[0], value=i[1], color=i[2])
for i in [
['Подтвердить', 'edit_meta_page', 'danger'],
['Отмена', 'upload_page', 'danger'],
]
],
onclick=lambda value: buttons_action(value)
)
def edit_meta_page(nbs_data):
def buttons_action(value):
match value:
case 'use_song_author':
pin.author = nbs_data[0].song_author
case 'use_origin_author':
pin.author = nbs_data[0].original_author
case 'upload_page':
upload_page()
with use_scope('title', clear=True):
put_markdown('# Подготовка к публикации')
with use_scope('description', clear=True):
put_markdown('Подтвердите или измените метаданные NBS файла')
with use_scope('inputs', clear=True):
put_input('author', label='Автор', value=nbs_data[0].original_author)
put_markdown('Использовать имя автора из:')
put_buttons(
[
dict(label=i[0], value=i[1], color=i[2])
for i in [
['Song author', 'use_song_author', 'danger'],
['Original song author', 'use_origin_author', 'danger']
]
],
onclick=lambda value: buttons_action(value)
)
put_input('song_name', label='Название', value=nbs_data[0].song_name)
put_buttons(
[
dict(label=i[0], value=i[1], color=i[2])
for i in [
['Отмена', 'upload_page', 'danger']
]
],
onclick=lambda value: buttons_action(value)
)
# FIXME
def add_lyrics_page(nbs_data):
def buttons_action(value):
match value:
case 'upload_nbs':
if pin.uploaded_nbs is None:
toast(
content='Для начала, выберите файл',
duration=3, color='info',
)
else:
nbs_data = get_metadata(BytesIO(pin.uploaded_nbs['content']))
if isinstance(nbs_data, str):
toast(
content=str(nbs_data),
duration=3, color='red',
)
elif not nbs_data[0].tempo in TEMPO:
edit_tempo_page(nbs_data)
else:
edit_meta_page(nbs_data)
case 'index_page':
index_page()
with use_scope('title', clear=True):
put_markdown('# Выберите файл для загрузки')
with use_scope('description', clear=True):
put_markdown('правила загрузки')
with use_scope('inputs', clear=True):
put_file_upload(
name='uploaded_nbs', accept=".nbs",
max_size='250K', placeholder='Выбери NBS файл для загрузки',
help_text='hello'
)
put_buttons(
[
dict(label=i[0], value=i[1], color=i[2])
for i in [
['Загрузить', 'upload_nbs', 'primary'],
['Отмена', 'index_page', 'danger']
]
],
onclick=lambda value: buttons_action(value)
)
def show_latests_table():
with use_scope('latest_tracks', clear=True):
data = get_latest_tracks()
table_data = []
for author in data:
for track in data[author]:
meta = data[author][track]
table_data.append([author, meta['duration'], meta['file_amount'],],)
put_table(table_data)
def get_latest_tracks():
response = requests.get(url='https://gist.github.com/AMD-Boii/f8c7e17f23454fbf34c7ca0be7fe6d27/raw/ce4675c5463ced399e779790f51b5bda5169ecff/latest_tracks.json')
return response.json()
def backup_latest_tracks():
pass
def get_full_playlist():
pass
def backup_full_playlist():
pass
def upload_data(uploaded_nbs):
# popup(title='Размер файла', content=str(len(fileobj['content']),),)
show_lyrics_input()
# put_buttons(
# ['Обновить Gist'],
# onclick=lambda _: Thread(target=request).start()
# )
# global response
# while True:
# if response is not None:
# if response.status_code == 200:
# response = None
# popup('Обновление плейлиста успешно!', [
# put_buttons(['OK'], onclick=lambda _: close_popup())
# ])
# else:
# response = None
# popup('Ошибка обновления', [
# put_buttons(['Не OK :с'], onclick=lambda _: close_popup())
# ])
if __name__ == '__main__':
start_server(main, host='127.0.0.1', port=8000)