forked from vicwomg/pikaraoke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
994 lines (883 loc) · 31.6 KB
/
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
import argparse
import datetime
import hashlib
import json
import logging
import os
import os.path
import signal
import subprocess
import sys
import threading
import time
import cherrypy
import flask_babel
import psutil
from flask import (Flask, flash, make_response, redirect, render_template,
request, send_file, url_for, session, jsonify)
from flask_babel import Babel
from flask_paginate import Pagination, get_page_parameter
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import WebDriverWait
import karaoke
from constants import LANGUAGES, VERSION
from lib.get_platform import get_platform
try:
from urllib.parse import quote, unquote
except ImportError:
from urllib import quote, unquote
_ = flask_babel.gettext
app = Flask(__name__)
app.secret_key = os.urandom(24)
app.jinja_env.add_extension('jinja2.ext.i18n')
app.config['BABEL_TRANSLATION_DIRECTORIES'] = 'translations'
babel = Babel(app)
site_name = "PiKaraoke"
# added default password
admin_password = "mypi"
is_raspberry_pi = get_platform() == "raspberry_pi"
def filename_from_path(file_path, remove_youtube_id=True):
rc = os.path.basename(file_path)
rc = os.path.splitext(rc)[0]
if remove_youtube_id:
try:
rc = rc.split("---")[0] # removes youtube id if present
except TypeError:
# more fun python 3 hacks
rc = rc.split("---".encode("utf-8", "ignore"))[0]
return rc
def arg_path_parse(path):
if (type(path) == list):
return " ".join(path)
else:
return path
def url_escape(filename):
return quote(filename.encode("utf8"))
def hash_dict(d):
return hashlib.md5(json.dumps(d, sort_keys=True, ensure_ascii=True).encode('utf-8', "ignore")).hexdigest()
def is_admin():
if (admin_password == None):
return True
if ('admin' in request.cookies):
a = request.cookies.get("admin")
if (a == admin_password):
return True
return False
@babel.localeselector
def get_locale():
"""Select the language to display the webpage in based on the Accept-Language header"""
return request.accept_languages.best_match(LANGUAGES.keys())
@app.route("/")
def home():
return render_template(
"home.html",
site_title=site_name,
title="Home",
transpose_value=k.now_playing_transpose,
admin=is_admin()
)
@app.route("/auth", methods=["POST"])
def auth():
d = request.form.to_dict()
p = d["admin-password"]
if (p == admin_password):
resp = make_response(redirect('/'))
expire_date = datetime.datetime.now()
expire_date = expire_date + datetime.timedelta(days=90)
resp.set_cookie('admin', admin_password, expires=expire_date)
# MSG: Message shown after logging in as admin successfully
flash(_("Admin mode granted!"), "is-success")
else:
resp = make_response(redirect(url_for('login')))
# MSG: Message shown after failing to login as admin
flash(_("Incorrect admin password!"), "is-danger")
return resp
@app.route("/login")
def login():
return render_template("login.html")
@app.route("/username", methods=["GET", "POST"])
def username():
if request.method == 'POST':
# Handle form submission here
name = request.form.get('username').strip()
if (name ==''):
flash('Please enter a valid user name if you want to add songs to the queue.', 'is-danger')
return render_template("username.html")
else:
resp = make_response(redirect('/'))
resp.set_cookie("user", name, max_age=1*24*60*60) # Set cookie that expires in 1 day
flash('User name set! You can add songs to the queue.', "is-success")
return resp
return render_template("username.html", admin=is_admin())
@app.route("/logout")
def logout():
resp = make_response(redirect('/'))
resp.set_cookie('admin', '')
flash("Logged out of admin mode!", "is-success")
return resp
@app.route("/nowplaying")
def nowplaying():
try:
if len(k.queue) >= 1:
next_song = k.queue[0]["title"]
next_user = k.queue[0]["user"]
else:
next_song = None
next_user = None
rc = {
"now_playing": k.now_playing,
"now_playing_user": k.now_playing_user,
"now_playing_command": k.now_playing_command,
"up_next": next_song,
"next_user": next_user,
"now_playing_url": k.now_playing_url,
"is_paused": k.is_paused,
"transpose_value": k.now_playing_transpose,
"volume": k.volume
}
rc["hash"] = hash_dict(rc) # used to detect changes in the now playing data
return json.dumps(rc)
except (Exception) as e:
logging.error("Problem loading /nowplaying, pikaraoke may still be starting up: " + str(e))
return ""
# Call this after receiving a command in the front end
@app.route("/clear_command")
def clear_command():
k.now_playing_command = None
return ""
@app.route("/queue")
def queue():
song_count = len(k.available_songs)
song_dir = k.download_path
return render_template(
"queue.html",
queue=k.queue,
site_title=site_name,
title="Queue",
admin=is_admin(),
song_count=song_count,
song_dir=song_dir
)
@app.route("/get_queue")
def get_queue():
if len(k.queue) >= 1:
return json.dumps(k.queue)
else:
return json.dumps([])
@app.route("/queue/addsongs", methods=["GET"])
def add_songs():
amount = request.args.get("amount")
if amount is None:
return redirect(url_for("home"))
elif amount.lower() == "all":
amount = len(k.available_songs)
else:
try:
amount = int(amount)
except ValueError:
flash("Invalid input! Please enter a number or 'all'.", "is-warning")
return redirect(request.referrer)
if amount > len(k.available_songs):
flash(f"Too many songs! There are only {len(k.available_songs)} songs available.", "is-warning")
return redirect(request.referrer)
song_count = k.queue_add_random(amount)
if song_count > 0:
flash(f"Added {amount} song(s) to the queue.", "is-success")
return redirect(url_for("queue"))
@app.route("/queue/edit", methods=["GET"])
def queue_edit():
action = request.args["action"]
if action == "clear":
k.queue_clear()
flash("Cleared the queue!", "is-warning")
return redirect(url_for("queue"))
else:
song = request.args["song"]
song = unquote(song)
if action == "down":
result = k.queue_edit(song, "down")
if result:
flash("Moved down in queue: " + song, "is-success")
else:
flash("Error moving down in queue: " + song, "is-danger")
elif action == "up":
result = k.queue_edit(song, "up")
if result:
flash("Moved up in queue: " + song, "is-success")
else:
flash("Error moving up in queue: " + song, "is-danger")
elif action == "delete":
result = k.queue_edit(song, "delete")
if result:
flash("Deleted from queue: " + song, "is-success")
else:
flash("Error deleting from queue: " + song, "is-danger")
return redirect(url_for("queue"))
@app.route("/enqueue", methods=["POST", "GET"])
def enqueue():
if "song" in request.args:
song = request.args["song"]
else:
d = request.form.to_dict()
song = d["song-to-add"]
if "user" in request.args:
user = request.args["user"]
else:
d = request.form.to_dict()
user = d["song-added-by"]
rc = k.enqueue(song, user)
song_title = filename_from_path(song)
return json.dumps({"song": song_title, "success": rc })
@app.route("/skip")
def skip():
k.skip()
return redirect(url_for("home"))
@app.route("/pause")
def pause():
k.pause()
return redirect(url_for("home"))
@app.route("/transpose/<semitones>", methods=["GET"])
def transpose(semitones):
k.transpose_current(int(semitones))
return redirect(url_for("home"))
def make_usersubdir(semitones, file_path, username):
# Remove any path separators in the username to prevent nestling
username = username.replace('/', '').replace('\\', '')
# Prepare user subdirectory path string
save_basepath = f"{k.download_path}/k-users"
usr_subdir = f"{save_basepath}/{username}"
usr_subdir = os.path.normpath(usr_subdir)
# Generate save_path string
kiss_usr_filename = k.kiss_filename(file_path)
str_semitones = f'+{semitones}' if semitones > 0 else f'{semitones}'
save_path = f"{usr_subdir}/{kiss_usr_filename} {str_semitones} semitones - {username}.mp4"
return save_path, usr_subdir
@app.route("/generate_save_path", methods=["GET"]) # User path check
def generate_save_path():
semitones = request.args.get('semitones', default = 0, type = int)
file_path = request.args.get('file_path', default = "", type = str)
username = request.args.get('username', default = "", type = str)
save_path, _ = make_usersubdir(semitones, file_path, username)
return jsonify({'save_path': save_path}) # Return the save_path to the user
@app.route("/check_and_save", methods=["GET"]) # Create path and tranpose_save
def check_and_save():
semitones = request.args.get('semitones', default = 0, type = int)
file_path = request.args.get('file_path', default = "", type = str)
username = request.args.get('username', default = "", type = str)
_, usr_subdir = make_usersubdir(semitones, file_path, username)
# Check if user subdirectory exists
if not os.path.exists(usr_subdir):
# Create user subdirectory if it doesn't exist
os.makedirs(usr_subdir, exist_ok=True)
result = k.transpose_save(semitones, file_path, username, usr_subdir)
if result:
print('### Transpose Save: ERROR ###') # for debugging
return redirect(url_for('edit_file'))
else:
print('### Transpose Save: SUCCESS ###') # for debugging
return redirect(url_for('browse'))
@app.route("/restart")
def restart():
k.restart()
return redirect(url_for("home"))
@app.route("/volume/<volume>")
def volume(volume):
k.volume_change(float(volume))
return redirect(url_for("home"))
@app.route("/vol_up")
def vol_up():
k.vol_up()
return redirect(url_for("home"))
@app.route("/vol_down")
def vol_down():
k.vol_down()
return redirect(url_for("home"))
@app.route("/search", methods=["GET"])
def search():
if "search_string" in request.args:
search_string = request.args["search_string"]
if ("non_karaoke" in request.args and request.args["non_karaoke"] == "true"):
search_results = k.get_search_results(search_string)
else:
search_results = k.get_karaoke_search_results(search_string)
else:
search_string = None
search_results = None
return render_template(
"search.html",
site_title=site_name,
title="Search",
songs=k.available_songs,
search_results=search_results,
search_string=search_string,
admin=is_admin()
)
@app.route("/autocomplete")
def autocomplete():
q = request.args.get('q').lower()
result = []
for each in k.available_songs:
if q in each.lower():
result.append({"path": each, "fileName": k.filename_from_path(each), "type": "autocomplete"})
response = app.response_class(
response=json.dumps(result),
mimetype='application/json'
)
return response
@app.route("/browse", methods=["GET"])
def browse():
search = False
q = request.args.get('q')
if q:
search = True
page = request.args.get(get_page_parameter(), type=int, default=1)
available_songs = k.available_songs
letter = request.args.get('letter')
if (letter):
result = []
if (letter == "numeric"):
for song in available_songs:
f = k.filename_from_path(song)[0]
if (f.isnumeric()):
result.append(song)
else:
for song in available_songs:
f = k.filename_from_path(song).lower()
if (f.startswith(letter.lower())):
result.append(song)
available_songs = result
if "sort" in request.args and request.args["sort"] == "date":
songs = sorted(available_songs, key=lambda x: os.path.getctime(x))
songs.reverse()
sort_order = "Date"
else:
songs = available_songs
sort_order = "Alphabetical"
results_per_page = 500
pagination = Pagination(css_framework='bulma', page=page, total=len(songs), search=search, record_name='songs', per_page=results_per_page)
start_index = (page - 1) * (results_per_page - 1)
return render_template(
"files.html",
pagination=pagination,
sort_order=sort_order,
site_title=site_name,
letter=letter,
# MSG: Title of the files page.
title=_("Browse"),
songs=songs[start_index:start_index + results_per_page],
admin=is_admin()
)
@app.route("/download", methods=["POST"])
def download():
d = request.form.to_dict()
song = d["song-url"]
user = d["song-added-by"]
if "queue" in d and d["queue"] == "on":
queue = True
else:
queue = False
# download in the background since this can take a few minutes
t = threading.Thread(target=k.download_video, args=[song, queue, user])
t.daemon = True
t.start()
flash("WARNING: Your download might fail. If so, contact management.", "is-danger")
return redirect(url_for("search"))
@app.route("/qrcode")
def qrcode():
return send_file(k.qr_code_path, mimetype="image/png")
@app.route("/logo")
def logo():
return send_file(k.logo_path, mimetype="image/png")
@app.route("/end_song", methods=["GET"])
def end_song():
k.end_song()
return "ok"
@app.route("/start_song", methods=["GET"])
def start_song():
k.start_song()
return "ok"
@app.route("/files/delete", methods=["GET"])
def delete_file():
if "song" in request.args:
song_path = request.args["song"]
if song_path in k.queue:
flash(
"Error: Can't delete this song because it is in the current queue: "
+ song_path,
"is-danger",
)
else:
k.delete(song_path)
flash("Song deleted: " + song_path, "is-warning")
else:
flash("Error: No song parameter specified!", "is-danger")
return redirect(url_for("browse"))
@app.route("/files/edit", methods=["GET", "POST"])
def edit_file():
queue_error_msg = "Error: Can't edit this song because it is in the current queue: "
if "song" in request.args:
song_path = request.args["song"]
if song_path in k.queue:
flash(queue_error_msg + song_path, "is-danger")
return redirect(url_for("browse"))
else:
return render_template(
"edit.html",
site_title=site_name,
title="Song File Edit",
song=song_path.encode("utf-8", "ignore"),
admin=is_admin()
)
else:
d = request.form.to_dict()
if "new_file_name" in d and "old_file_name" in d:
new_name = d["new_file_name"]
song_path = d["old_file_name"]
song_dir = os.path.dirname(song_path)
file_extension = os.path.splitext(song_path)[1]
new_file_path = os.path.join(song_dir, new_name + file_extension)
if k.is_song_in_queue(song_path):
# check one more time just in case someone added it during editing
flash(queue_error_msg + song_path, "is-danger")
elif os.path.isfile(new_file_path):
flash(
"Error Renaming file: '%s' to '%s'. Filename already exists."
% (song_path, new_name + file_extension),
"is-danger",
)
else:
k.rename(song_path, new_file_path)
flash("Renamed file", "is-warning")
else:
flash("Error: No filename parameters were specified!", "is-danger")
return redirect(url_for("browse"))
@app.route("/splash")
def splash():
return render_template(
"splash.html",
blank_page=True,
url=k.url,
hide_url=k.hide_url,
hide_overlay=k.hide_overlay,
screensaver_timeout=k.screensaver_timeout
)
@app.route("/info")
def info():
url=k.url
# cpu
cpu = str(psutil.cpu_percent(interval=1.0)) + "%"
# mem
memory = psutil.virtual_memory()
available = round(memory.available / 1024.0 / 1024.0, 1)
total = round(memory.total / 1024.0 / 1024.0, 1)
memory = (
str(available)
+ "MB free / "
+ str(total)
+ "MB total ( "
+ str(memory.percent)
+ "% )"
)
# disk
disk = psutil.disk_usage("/")
# Divide from Bytes -> KB -> MB -> GB
free = round(disk.free / 1024.0 / 1024.0 / 1024.0, 1)
total = round(disk.total / 1024.0 / 1024.0 / 1024.0, 1)
disk = (
str(free)
+ "GB free / "
+ str(total)
+ "GB total ( "
+ str(disk.percent)
+ "% )"
)
# youtube-dl
youtubedl_version = k.youtubedl_version
# The song directory is the same as the download_path
song_dir = k.download_path
return render_template(
"info.html",
site_title=site_name,
title="Info",
url=url,
memory=memory,
cpu=cpu,
disk=disk,
youtubedl_version=youtubedl_version,
is_pi=is_raspberry_pi,
pikaraoke_version=VERSION,
admin=is_admin(),
admin_enabled=admin_password != None,
song_dir = song_dir
)
@app.route("/storage", methods=["GET"])
def storage():
song_dir = k.download_path
main_dir = session.get('main_dir', song_dir)
is_pi = get_platform() == "raspberry_pi"
k_users_path = os.path.join(song_dir, 'k-users')
if os.path.isdir(k_users_path):
subdirs = [d for d in os.listdir(k_users_path) if os.path.isdir(os.path.join(k_users_path, d))]
else:
subdirs = []
return render_template(
'storage.html',
is_pi=is_pi,
admin=is_admin(),
song_dir=song_dir,
subdirs=subdirs,
main_dir=main_dir
)
# Delay system commands to allow redirect to render first
def delayed_halt(cmd):
time.sleep(1.5)
k.queue_clear()
cherrypy.engine.stop()
cherrypy.engine.exit()
k.stop()
if cmd == 0:
sys.exit()
if cmd == 1:
os.system("shutdown now")
if cmd == 2:
os.system("reboot")
if cmd == 3:
process = subprocess.Popen(["raspi-config", "--expand-rootfs"])
process.wait()
os.system("reboot")
def update_youtube_dl():
time.sleep(3)
k.upgrade_youtubedl()
@app.route("/change_dir", methods=["GET", "POST"])
def change_dir():
if (is_admin()):
if request.method == "POST":
new_dir = request.form.get("song_dir")
print(f"This is the song directory from the change directory route {new_dir}") # for debugging
new_dir = os.path.normpath(new_dir) # Normalize the path
if os.path.isdir(new_dir):
# Handle form submission here
k.download_path = new_dir
flash("Please RESCAN the song directory for the changes to take effect!", "is-info")
return redirect(url_for("storage"))
else:
print("ERROR no valid directory from route") # for debugging
flash("Not a valid directory!", "is-danger")
return redirect(url_for("storage"))
else:
print('ERROR: Nothing posting') # for debugging
return redirect(url_for("storage"))
else:
flash("You don't have permission to change the directory.", "is-danger")
@app.route("/change_to_subdir/<path:new_dir>", methods=["GET"])
def change_to_subdir(new_dir):
if (is_admin()):
new_dir_path = os.path.normpath(os.path.join(k.download_path, 'k-users', new_dir))
if os.path.isdir(new_dir_path):
# Store the main directory path in the session
session['main_dir'] = k.download_path
k.download_path = new_dir_path
flash("Please RESCAN the song directory for the changes to take effect!", "is-info")
else:
flash("Not a valid directory!", "is-danger")
return redirect(url_for("storage"))
@app.route("/change_to_base_dir", methods=["GET"])
def change_to_base_dir():
if 'main_dir' in session:
k.download_path = session['main_dir']
flash("Please RESCAN the song directory for the changes to take effect!", "is-info")
else:
flash("No base directory found!", "is-danger")
return redirect(url_for("storage"))
@app.route("/update_ytdl")
def update_ytdl():
if (is_admin()):
flash(
"Updating youtube-dl! Should take a minute or two... ",
"is-warning",
)
th = threading.Thread(target=update_youtube_dl)
th.start()
else:
flash("You don't have permission to update youtube-dl", "is-danger")
return redirect(url_for("home"))
@app.route("/refresh")
def refresh():
if (is_admin()):
k.get_available_songs()
else:
flash("You don't have permission to refresh", "is-danger")
return redirect(url_for("browse"))
@app.route("/quit")
def quit():
if (is_admin()):
flash("Quitting pikaraoke now!", "is-warning")
th = threading.Thread(target=delayed_halt, args=[0])
th.start()
else:
flash("You don't have permission to quit", "is-danger")
return redirect(url_for("home"))
@app.route("/shutdown")
def shutdown():
if (is_admin()):
flash("Shutting down system now!", "is-danger")
th = threading.Thread(target=delayed_halt, args=[1])
th.start()
else:
flash("You don't have permission to shut down", "is-danger")
return redirect(url_for("home"))
@app.route("/reboot")
def reboot():
if (is_admin()):
flash("Rebooting system now!", "is-danger")
th = threading.Thread(target=delayed_halt, args=[2])
th.start()
else:
flash("You don't have permission to Reboot", "is-danger")
return redirect(url_for("home"))
@app.route("/expand_fs")
def expand_fs():
if (is_admin() and is_raspberry_pi):
flash("Expanding filesystem and rebooting system now!", "is-danger")
th = threading.Thread(target=delayed_halt, args=[3])
th.start()
elif (platform != "raspberry_pi"):
flash("Cannot expand fs on non-raspberry pi devices!", "is-danger")
else:
flash("You don't have permission to resize the filesystem", "is-danger")
return redirect(url_for("home"))
# Handle sigterm, apparently cherrypy won't shut down without explicit handling
signal.signal(signal.SIGTERM, lambda signum, stack_frame: k.stop())
def get_default_youtube_dl_path(platform):
if platform == "windows":
return os.path.join(os.path.dirname(__file__), ".venv\Scripts\yt-dlp.exe")
return os.path.join(os.path.dirname(__file__), ".venv/bin/yt-dlp")
def get_default_dl_dir(platform):
if is_raspberry_pi:
return "~/pikaraoke-songs"
elif platform == "windows":
legacy_directory = os.path.expanduser("~\pikaraoke\songs")
if os.path.exists(legacy_directory):
return legacy_directory
else:
return "~\pikaraoke-songs"
else:
legacy_directory = "~/pikaraoke/songs"
if os.path.exists(legacy_directory):
return legacy_directory
else:
return "~/pikaraoke-songs"
if __name__ == "__main__":
platform = get_platform()
default_port = 5555
default_ffmpeg_port = 5556
default_volume = 0.85
default_splash_delay = 3
default_screensaver_delay = 300
default_log_level = logging.INFO
default_prefer_hostname = False
default_dl_dir = get_default_dl_dir(platform)
default_youtubedl_path = get_default_youtube_dl_path(platform)
# parse CLI args
parser = argparse.ArgumentParser()
parser.add_argument(
"-p",
"--port",
help="Desired http port (default: %d)" % default_port,
default=default_port,
required=False,
)
parser.add_argument(
"-f",
"--ffmpeg-port",
help=f"Desired ffmpeg port. This is where video stream URLs will be pointed (default: {default_ffmpeg_port})" ,
default=default_ffmpeg_port,
required=False,
)
parser.add_argument(
"-d",
"--download-path",
nargs='+',
help="Desired path for downloaded songs. (default: %s)" % default_dl_dir,
default=default_dl_dir,
required=False,
)
parser.add_argument(
"-y",
"--youtubedl-path",
nargs='+',
help="Path of youtube-dl. (default: %s)" % default_youtubedl_path,
default=default_youtubedl_path,
required=False,
)
parser.add_argument(
"-v",
"--volume",
help="Set initial player volume. A value between 0 and 1. (default: %s)" % default_volume,
default=default_volume,
required=False,
)
parser.add_argument(
"-s",
"--splash-delay",
help="Delay during splash screen between songs (in secs). (default: %s )"
% default_splash_delay,
default=default_splash_delay,
required=False,
)
parser.add_argument(
"-t",
"--screensaver-timeout",
help="Delay before the screensaver begins (in secs). (default: %s )"
% default_screensaver_delay,
default=default_screensaver_delay,
required=False,
)
parser.add_argument(
"-l",
"--log-level",
help=f"Logging level int value (DEBUG: 10, INFO: 20, WARNING: 30, ERROR: 40, CRITICAL: 50). (default: {default_log_level} )",
default=default_log_level,
required=False,
)
parser.add_argument(
"--hide-url",
action="store_true",
help="Hide URL and QR code from the splash screen.",
required=False,
)
parser.add_argument(
"--prefer-hostname",
action="store_true",
help=f"Use the local hostname instead of the IP as the connection URL. Use at your discretion: mDNS is not guaranteed to work on all LAN configurations. Defaults to {default_prefer_hostname}",
default=default_prefer_hostname,
required=False,
)
parser.add_argument(
"--hide-raspiwifi-instructions",
action="store_true",
help="Hide RaspiWiFi setup instructions from the splash screen.",
required=False,
)
parser.add_argument(
"--hide-splash-screen",
"--headless",
action="store_true",
help="Headless mode. Don't launch the splash screen/player on the pikaraoke server",
required=False,
)
parser.add_argument(
"--high-quality",
action="store_true",
help="Download higher quality video. Note: requires ffmpeg and may cause CPU, download speed, and other performance issues",
required=False,
)
parser.add_argument(
"--logo-path",
nargs='+',
help="Path to a custom logo image file for the splash screen. Recommended dimensions ~ 2048x1024px",
default=None,
required=False,
),
parser.add_argument(
"-u",
"--url",
help="Override the displayed IP address with a supplied URL. This argument should include port, if necessary",
default=None,
required=False,
),
parser.add_argument(
"--hide-overlay",
action="store_true",
help="Hide overlay that shows on top of video with pikaraoke QR code and IP",
required=False,
),
parser.add_argument(
"--admin-password",
help="Administrator password, for locking down certain features of the web UI such as queue editing, player controls, song editing, and system shutdown. If unspecified, everyone is an admin.",
default=None,
required=False,
),
args = parser.parse_args()
if (args.admin_password):
admin_password = args.admin_password
app.jinja_env.globals.update(filename_from_path=filename_from_path)
app.jinja_env.globals.update(url_escape=quote)
# check if required binaries exist
if not os.path.isfile(args.youtubedl_path):
print("Youtube-dl path not found! " + args.youtubedl_path)
sys.exit(1)
# setup/create download directory if necessary
dl_path = os.path.expanduser(arg_path_parse(args.download_path))
if not dl_path.endswith("/"):
dl_path += "/"
if not os.path.exists(dl_path):
print("Creating download path: " + dl_path)
os.makedirs(dl_path)
parsed_volume = float(args.volume)
if parsed_volume > 1 or parsed_volume < 0:
# logging.warning("Volume must be between 0 and 1. Setting to default: %s" % default_volume)
print(f"[ERROR] Volume: {args.volume} must be between 0 and 1. Setting to default: {default_volume}")
parsed_volume = default_volume
# Configure karaoke process
global k
k = karaoke.Karaoke(
port=args.port,
ffmpeg_port=args.ffmpeg_port,
download_path=dl_path,
youtubedl_path=arg_path_parse(args.youtubedl_path),
splash_delay=args.splash_delay,
log_level=args.log_level,
volume=parsed_volume,
hide_url=args.hide_url,
hide_raspiwifi_instructions=args.hide_raspiwifi_instructions,
hide_splash_screen=args.hide_splash_screen,
high_quality=args.high_quality,
logo_path=arg_path_parse(args.logo_path),
hide_overlay=args.hide_overlay,
screensaver_timeout=args.screensaver_timeout,
url=args.url,
prefer_hostname=args.prefer_hostname
)
# Start the CherryPy WSGI web server
cherrypy.tree.graft(app, "/")
# Set the configuration of the web server
cherrypy.config.update(
{
"engine.autoreload.on": False,
"log.screen": True,
"server.socket_port": int(args.port),
"server.socket_host": "0.0.0.0",
"server.thread_pool": 100
}
)
cherrypy.engine.start()
# Start the splash screen using selenium
if not args.hide_splash_screen:
if platform == "raspberry_pi":
service = Service(executable_path='/usr/bin/chromedriver')
else:
service = None
options = Options()
options.add_argument("--kiosk")
options.add_argument("--start-maximized")
options.add_experimental_option("excludeSwitches", ['enable-automation'])
driver = webdriver.Chrome(service=service, options=options)
driver.get(f"{k.url}/splash" )
driver.add_cookie({'name': 'user', 'value': 'PiKaraoke-Host'})
# Clicking this counts as an interaction, which will allow the browser to autoplay audio
wait = WebDriverWait(driver, 60)
elem = wait.until(EC.element_to_be_clickable((By.ID, "permissions-button")))
elem.click()
# Start the karaoke process
k.run()
# Close running processes when done
if not args.hide_splash_screen:
driver.quit()
cherrypy.engine.exit()
sys.exit()