party-upload: port to python 3
[clinton/unknownlamer-kodi-addons.git] / party-upload / normals.cgi
1 #!/usr/bin/python3
2
3 # Simple PartyMode Web Console
4 # Limited interface for normal party goers
5 # Copyright (c) 2015,2016 Clinton Ebadi <clinton@unknownlamer.org>
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19 # limit playlist view to next five
20
21 import cgi, cgitb
22 from datetime import datetime
23 import hashlib
24 import numbers
25 import os
26 import random
27 import subprocess
28 import sys
29 from kodijson import Kodi
30 from yattag import Doc
31
32 import partyparty
33 from partyparty import Song, SongControls, Search, Playlist, PartyManager
34
35 cgitb.enable()
36
37 print ("content-type: text/html; charset=utf-8\n\n")
38 sys.stdout.flush ()
39 print ("<!DOCTYPE html>\n<html><head><title>partyparty beb</title></head><body>")
40 print (partyparty.css ())
41
42 print ('<p style="font-size: 5rem"><a href="upload.html">Upload A Song</a> | <a href="youtube.html">Add From YouTube</a> | <a href="normals.cgi">home</a> | <a href="normals.cgi?browseartists=1">browse</a></p>')
43
44
45
46 class NormalsPlaylist (Playlist):
47 def get_playlist (self):
48 return Playlist.get_playlist (self)#[0:10]
49
50 class NormalsManager (PartyManager):
51 DEFAULT_QUEUE_DIVISOR = 1
52
53 xbmc = partyparty.connect (Kodi ("http://localhost:8080/jsonrpc"))
54
55 manager = NormalsManager (cgi.FieldStorage ())
56 manager.process ()
57 playlist = NormalsPlaylist ()
58
59 print ('<a name="search"></a>')
60 Search ().show_quick_search (thereal=True)
61
62 print ('<a name="playlist"></a><h1>What\'s Playing</h1>')
63 print (playlist.show (controls = []))
64
65 print ('</body></html>')