pilpil-server/app.py

473 lines
16 KiB
Python
Raw Normal View History

2022-10-06 11:44:59 +02:00
#!/usr/bin/env python
2022-11-05 20:04:27 +01:00
# pilpil-client 0.1
# abelliqueux <contact@arthus.net>
import base64
2022-10-06 11:44:59 +02:00
from flask import Flask, render_template, request, make_response, jsonify
2022-11-05 20:04:27 +01:00
import gettext
import http.client
import os
import socket
import ssl
import subprocess
import requests
from shutil import which
import sys
import toml
import xml.etree.ElementTree as ET
2022-10-06 11:44:59 +02:00
from waitress import serve
2022-11-03 18:12:30 +01:00
# l10n
2022-11-03 12:48:12 +01:00
LOCALE = os.getenv('LANG', 'en')
_ = gettext.translation('template', localedir='locales', languages=[LOCALE]).gettext
2022-11-05 20:04:27 +01:00
app = Flask(__name__)
2022-11-03 12:48:12 +01:00
2022-10-08 16:49:45 +02:00
app.config.from_file("defaults.toml", load=toml.load)
config_locations = ["./", "~/.", "~/.config/"]
for location in config_locations:
# Optional config files, ~ is expanded to $HOME on *nix, %USERPROFILE% on windows
2022-10-19 18:39:23 +02:00
if app.config.from_file(os.path.expanduser( location + "pilpil-server.toml"), load=toml.load, silent=True):
2022-11-03 12:48:12 +01:00
print( _("Found configuration file in {}").format( os.path.expanduser(location) ) )
2022-10-08 16:49:45 +02:00
###
2022-10-06 11:44:59 +02:00
hosts_available, hosts_unavailable = [],[]
2022-11-05 20:04:27 +01:00
queue_msgs = [
_("No items"),
_("No files queued.")
]
2022-10-25 12:53:05 +02:00
cmd_player = {
2022-11-05 20:04:27 +01:00
# Map vlc http url parameters to pilpil-server urls
# See https://github.com/videolan/vlc/blob/1336447566c0190c42a1926464fa1ad2e59adc4f/share/lua/http/requests/README.txt
2022-10-06 11:44:59 +02:00
"play" : "pl_play",
"resume" : "pl_forceresume",
"pause" : "pl_forcepause",
"tpause" : "pl_pause",
"previous" : "pl_previous",
"next" : "pl_next",
"stop" : "pl_stop",
"enqueue" : "in_enqueue",
"add" : "in_play",
"clear" : "pl_empty",
"delete" : "pl_delete",
"loop" : "pl_loop",
"repeat" : "pl_repeat",
"random" : "pl_random",
"move" : "pl_move",
"sort" : "pl_sort",
"seek" : "seek",
"sync" : "sync",
"status" : "status.xml",
"list" : "playlist.xml",
#"volume" : "volume",
#"ratio" : "aspectratio",
#"dir" : "?dir=<uri>",
#"command" : "?command=<cmd>",
#"key" : "key=",
#"browse" : "browse.xml?uri=file://~"
2022-11-05 20:04:27 +01:00
}
cmd_server = [
# Map pilpil-client http url parameters to pilpil-server urls
"blink",
"reboot",
"poweroff",
"rssi"
]
2022-10-25 12:53:05 +02:00
2022-11-05 20:04:27 +01:00
# Configuration
debug = app.config['DEFAULT']['debug']
2022-10-08 16:49:45 +02:00
media_folder_remote = app.config['DEFAULT']['media_folder_remote']
2022-10-14 13:27:01 +02:00
media_folder_local = os.path.expanduser(app.config['DEFAULT']['media_folder_local'])
2022-11-05 20:04:27 +01:00
media_exts = app.config['DEFAULT']['media_exts']
2022-11-07 13:27:45 +01:00
auth = str(base64.b64encode(str(":" + app.config['DEFAULT']['vlc_auth']).encode('utf-8')), 'utf-8')
2022-10-08 16:49:45 +02:00
cmd_auth = str(base64.b64encode(str(":" + app.config['DEFAULT']['cmd_auth']).encode('utf-8')), 'utf-8')
2022-11-05 20:04:27 +01:00
hosts = app.config['DEFAULT']['hosts']
2022-11-07 13:27:45 +01:00
vlc_port = app.config['DEFAULT']['vlc_port']
2022-11-05 20:04:27 +01:00
cmd_port = app.config['DEFAULT']['cmd_port']
2022-10-09 18:09:32 +02:00
useSSL = app.config['DEFAULT']['useSSL']
CAfile = app.config['DEFAULT']['CAfile']
2022-10-14 13:27:01 +02:00
sync_facility = app.config['DEFAULT']['sync_facility']
2022-11-07 13:27:45 +01:00
http_headers = {"Authorization":"Basic " + auth}
2022-10-08 16:49:45 +02:00
2022-11-05 20:04:27 +01:00
# SSl context creation should be out of class
sslcontext = ssl.create_default_context()
if os.path.exists(CAfile):
sslcontext.load_verify_locations(cafile=CAfile)
else:
sslcontext.check_hostname = False
sslcontext.verify_mode = ssl.CERT_NONE
class PilpilClient:
def __init__(self):
pass
def __init_connection(self):
pass
def __send_request(self):
pass
def isup(self):
pass
def rssi(self):
pass
def status(self):
pass
def playlist(self):
pass
def command(self, cmd):
pass
def __str__(self):
pass
def __del__(self):
pass
2022-10-06 11:44:59 +02:00
# Network/link utilities
# https://www.metageek.com/training/resources/understanding-rssi/
2022-11-07 13:27:45 +01:00
def send_HTTP_request(listed_host, port, time_out=3, request_="/"):
2022-11-05 20:04:27 +01:00
'''
2022-11-07 13:27:45 +01:00
Send a http request with http auth
2022-11-05 20:04:27 +01:00
'''
2022-10-09 18:09:32 +02:00
if useSSL:
2022-11-07 13:27:45 +01:00
conn = http.client.HTTPSConnection( listed_host + ":" + str(port), timeout=time_out, context = sslcontext )
else:
conn = http.client.HTTPConnection( listed_host + ":" + str(port), timeout=time_out )
2022-10-06 11:44:59 +02:00
try:
2022-11-05 20:04:27 +01:00
if debug:
2022-11-07 13:27:45 +01:00
print(request_ + " - " + str(http_headers))
conn.request("GET", request_, headers=http_headers)
resp = conn.getresponse()
data = resp.read()
if debug:
print(_("{} reachable on {}").format(str(listed_host), str(port)))
print("Data length:" + str(len(data)))
return data
except Exception as e:
2022-11-05 20:04:27 +01:00
if debug:
print(_("Error on connection to {} : {} : {} ").format(listed_host, str(port), e))
2022-10-06 11:44:59 +02:00
return 0
finally:
2022-11-07 13:27:45 +01:00
conn.close()
2022-10-06 11:44:59 +02:00
2022-11-05 20:04:27 +01:00
def check_hosts(host_list):
'''
Check hosts in a host list are up and build then return two lists with up/down hosts.
'''
hosts_up, hosts_down = [], []
hosts_number = str(len(host_list))
for local_host in host_list:
2022-11-07 13:27:45 +01:00
if send_HTTP_request(local_host, vlc_port, time_out=1):
2022-11-05 20:04:27 +01:00
hosts_up.append(local_host)
2022-11-07 13:27:45 +01:00
else:
hosts_down.append(local_host)
2022-11-05 20:04:27 +01:00
if debug:
print( _("{} of {} hosts found.").format(str(len(hosts_up)), hosts_number))
return hosts_up, hosts_down
2022-10-06 11:44:59 +02:00
2022-11-05 20:04:27 +01:00
def HTTP_upload(filename, host_local, port, trailing_slash=1):
'''
Build HTTP file upload request and send it.
'''
url = "https://" + host_local + ":" + str(port) + "/upload"
2022-10-14 13:27:01 +02:00
if not trailing_slash:
filename = "/" + filename
files = { "file":( filename, open( media_folder_local + filename, "rb"), "multipart/form-data") }
2022-11-05 20:04:27 +01:00
if debug:
2022-10-25 12:53:05 +02:00
print(files)
2022-11-07 13:27:45 +01:00
resp = requests.post(url, files=files, headers=http_headers, verify=CAfile)
2022-11-05 20:04:27 +01:00
if debug:
2022-10-25 12:53:05 +02:00
print(resp.text)
2022-10-14 13:27:01 +02:00
if resp.ok:
return 1
else:
return 0
2022-11-05 20:04:27 +01:00
def sync_media_folder(media_folder_local, media_folder_remote, host_local, port, sync_facility=sync_facility):
'''
Sync media_folder_local with media_folder_remote using sync_facility
'''
2022-10-14 13:27:01 +02:00
trailing_slash = 1
# Check for trailing / and add it if missing
if media_folder_local[-1:] != "/":
media_folder_local += "/"
trailing_slash = 0
if media_folder_remote[-1:] != "/":
media_folder_remote += "/"
2022-11-05 20:04:27 +01:00
#Using http_upload
2022-10-14 13:27:01 +02:00
if sync_facility == "http":
2022-11-05 20:04:27 +01:00
media_list = list_media_files(media_folder_local)
2022-10-14 13:27:01 +02:00
transfer_ok = 0
for media in media_list:
2022-11-05 20:04:27 +01:00
transfer_ok += HTTP_upload(media, host_local, port, trailing_slash)
2022-11-03 12:48:12 +01:00
return _("{} files uploaded.").format(str(transfer_ok))
2022-10-14 13:27:01 +02:00
elif which(sync_facility):
2022-11-05 20:04:27 +01:00
# Build subprocess arg list accroding to sync_facility
# Using Rsync
2022-10-14 13:27:01 +02:00
if sync_facility == "rsync":
scrape_str = "total size is "
sync_args = [sync_facility, "-zharm", "--include='*/'"]
for media_type in media_exts:
sync_args.append( "--include='*." + media_type + "'" )
2022-11-05 20:04:27 +01:00
sync_args.extend(["--exclude='*'", media_folder_local, host_local + ":" + media_folder_remote])
# Using scp
2022-10-14 13:27:01 +02:00
if sync_facility == "scp":
2022-11-05 20:04:27 +01:00
media_list = list_media_files(media_folder_local)
2022-10-14 13:27:01 +02:00
sync_args = [sync_facility, "-Crp", "-o IdentitiesOnly=yes"]
for media in media_list:
sync_args.append( media_folder_local + media )
2022-11-05 20:04:27 +01:00
sync_args.append( host_local + ":" + media_folder_remote )
2022-10-14 13:27:01 +02:00
sync_proc = subprocess.run( sync_args , capture_output=True)
if len(sync_proc.stdout):
scrape_index = str(sync_proc.stdout).index(scrape_str)+len(scrape_str)
total_size = str(sync_proc.stdout)[ scrape_index: ].split(" ")[0][:-1]
else:
total_size = "N/A";
return total_size
2022-11-07 13:27:45 +01:00
def get_meta_data(host, xml_data, request_="status", m3u_=0):
2022-11-05 20:04:27 +01:00
'''
2022-11-07 13:27:45 +01:00
Parse XML response from pilpil-client instance and return a dict of metadata according to request type.
2022-11-05 20:04:27 +01:00
'''
2022-11-07 13:27:45 +01:00
# Basic metadata
media_infos = {
'host': host,
'status': 0
}
if request_ == "list":
# Return current instance's playlist
return get_playlist(host, xml_data, m3u_)
elif request_ == "status":
# Return current instance's status ( currently playing, state, time length, etc. )
if xml_data.findall("./information/category/"):
for leaf in xml_data.findall("./information/category/"):
if leaf.get("name") == "filename":
filename = leaf.text
else:
filename = "N/A"
cur_length = int(xml_data.find('length').text)
cur_time = int(xml_data.find('time').text)
cur_length_fmtd = sec2min(cur_length)
cur_time_fmtd = sec2min(cur_time)
cur_id = int(xml_data.find('currentplid').text)
cur_pos = xml_data.find('position').text
cur_loop = xml_data.find('loop').text
cur_repeat = xml_data.find('repeat').text
media_infos.update({
'status' : 1,
'file': filename,
'time': cur_time_fmtd,
'leng': cur_length_fmtd,
'pos': cur_pos,
'loop': cur_loop,
'repeat': cur_repeat,
'id': cur_id,
})
elif request_ == "rssi":
# # Return current instance's wifi signal quality
print(xml_data)
if xml_data.findall("rssi"):
media_infos.update({
'status': 1,
'rssi' : xml_data.find('rssi').text
})
return media_infos
2022-10-06 11:44:59 +02:00
2022-11-07 13:27:45 +01:00
def get_playlist(host, xml_data, m3u=0):
playlist = []
item_list = []
playlist_duration = 0
2022-10-06 11:44:59 +02:00
2022-11-07 13:27:45 +01:00
if xml_data.find("./node") and xml_data.find("./node").get('name') == "Playlist":
playlist = xml_data.findall("./node/leaf")
content_format = "{};{};{};"
if m3u:
m3u_hdr = "#EXTM3U\n"
m3u_prefix = "#EXTINF:"
m3u_playlist = m3u_hdr
# M3U file building
m3u_format = "{}{}, {}\n{}\n"
m3u_content = m3u_hdr
for item in playlist:
# item info
if m3u:
m3u_content += m3u_format.format(m3u_prefix, item.get("duration"), item.get("name"), item.get("uri"))
item_info = content_format.format(item.get("id"), item.get("name"), sec2min(int(item.get("duration"))))
# Add cursor to currently playing element
if "current" in item.keys():
item_info += item.get("current")
item_list.append(item_info)
# Compute playlist length
playlist_duration += int(item.get("duration"))
if debug:
if m3u:
print(m3u_content)
playlist_overview = {
'host' : host,
'status': 1,
'leng' : str(len(playlist)),
'duration' : sec2min(playlist_duration),
'items' : item_list
}
if debug:
print(playlist_overview)
return playlist_overview
2022-10-06 11:44:59 +02:00
2022-11-07 13:27:45 +01:00
def send_pilpil_command(host, arg0, arg1, arg2):
2022-11-05 20:04:27 +01:00
'''
2022-11-07 13:27:45 +01:00
Builds a pilpil request according to args, send it and return parsed result.
2022-11-05 20:04:27 +01:00
'''
2022-11-07 13:27:45 +01:00
port_ = vlc_port
2022-10-06 11:44:59 +02:00
# Build request
2022-11-07 13:27:45 +01:00
#
# Default request
HTTP_request = "/requests/status.xml"
2022-10-06 11:44:59 +02:00
if arg0 == "list" :
2022-11-07 13:27:45 +01:00
# Get playlist
HTTP_request = "/requests/playlist.xml"
2022-10-25 12:53:05 +02:00
elif arg0 in cmd_server:
2022-11-07 13:27:45 +01:00
# Switching to cmd server
HTTP_request = "/" + str(arg0)
port_ = cmd_port
2022-10-06 11:44:59 +02:00
elif arg0 != "status" :
2022-11-07 13:27:45 +01:00
# Build request for VLC command
HTTP_request = HTTP_request + "?command=" + cmd_player[arg0]
2022-10-06 11:44:59 +02:00
if arg1 != "null" :
if (arg0 == "play") or (arg0 == "delete") or (arg0 == "sort") or (arg0 == "move"):
2022-11-07 13:27:45 +01:00
# Add 'id' url parameter
HTTP_request = HTTP_request + "&id=" + arg1
2022-10-06 11:44:59 +02:00
if (arg0 == "sort") or (arg0 == "move") :
2022-11-07 13:27:45 +01:00
# Add 'val' url parameter
2022-10-06 11:44:59 +02:00
# val possible values : id, title, title nodes first, artist, genre, random, duration, title numeric, album
# https://github.com/videolan/vlc/blob/3.0.17.4/modules/lua/libs/playlist.c#L353-L362
2022-11-07 13:27:45 +01:00
HTTP_request = HTTP_request + "&val=" + escape_str(arg2)
2022-10-06 11:44:59 +02:00
elif arg0 == "seek" :
2022-11-07 13:27:45 +01:00
HTTP_request = HTTP_request + "&val=" + arg1
2022-10-06 11:44:59 +02:00
elif (arg0 == "enqueue") or (arg0 == "add") :
2022-11-07 13:27:45 +01:00
# Add 'input' url parameter
HTTP_request = HTTP_request + "&input=file://" + media_folder_remote + "/" + arg1
2022-10-06 11:44:59 +02:00
2022-11-07 13:27:45 +01:00
# Send request and get data response
data = send_HTTP_request(host, port_, time_out=3, request_=HTTP_request)
if debug:
print(str(host) + " - data length :" + str(len(data)))
if not data:
print("No data was received.")
return 0
2022-10-06 11:44:59 +02:00
2022-11-07 13:27:45 +01:00
# Parse xml data
2022-10-06 11:44:59 +02:00
xml = ET.fromstring(data)
2022-11-07 13:27:45 +01:00
# Process parsed data and return dict
metadata = get_meta_data(host, xml, arg0)
if debug:
print("Metadata:" + str(metadata))
return metadata
# Utilities
def list_media_files(folder):
'''
List files in folder which extension is allowed (exists in media_exts).
'''
if os.path.exists(folder):
files = os.listdir(folder);
medias = []
for fd in files:
if len(fd.split('.')) > 1:
if fd.split('.')[1] in media_exts:
medias.append(fd)
return medias
2022-10-06 11:44:59 +02:00
else:
2022-11-07 13:27:45 +01:00
return []
# /requests/status.xml?command=in_enqueue&input=file:///home/pi/tst1.mp4
def write_M3U(m3u_content : str, host : str):
'''
Write a M3U file named host.m3u from m3u_content
'''
filename = host.replace(".", "_") + ".m3u"
fd = open(filename, "w")
fd.write(m3u_content)
fd.close()
return 1
def escape_str(uri):
'''
Replace spaces with %20 for http urls
'''
return uri.replace(" ", "%20")
def sec2min(duration):
'''
Convert seconds to min:sec format.
'''
return('%02d:%02d' % (duration / 60, duration % 60))
2022-10-06 11:44:59 +02:00
2022-11-03 12:48:12 +01:00
status_message = _("Idle")
2022-10-06 11:44:59 +02:00
@app.route("/")
def main():
2022-11-03 12:48:12 +01:00
status_message = _("Searching network for live hosts...")
2022-10-06 11:44:59 +02:00
templateData = {
'hosts' : hosts,
2022-11-03 12:48:12 +01:00
'status_message' : status_message,
'queue_msgs' : queue_msgs
2022-10-06 11:44:59 +02:00
}
return render_template('main.html', **templateData)
@app.route("/scan")
def scan():
global hosts_available, hosts_unavailable
2022-11-05 20:04:27 +01:00
hosts_available, hosts_unavailable = check_hosts(hosts)
2022-11-07 13:27:45 +01:00
return [hosts_available, hosts_unavailable]
2022-10-06 11:44:59 +02:00
@app.route("/browse")
def browse():
2022-11-07 13:27:45 +01:00
return list_media_files(media_folder_local)
2022-10-06 11:44:59 +02:00
2022-10-14 13:27:01 +02:00
@app.route("/sync/<host>")
def sync(host):
2022-11-07 13:27:45 +01:00
# TODO : Add feedback for transfer in GUI
size = 0
2022-10-14 13:27:01 +02:00
if host == "all":
for hostl in hosts_available:
2022-11-07 13:27:45 +01:00
size += sync_media_folder(media_folder_local, media_folder_remote, hostl, cmd_port)
2022-10-14 13:27:01 +02:00
else:
2022-11-05 20:04:27 +01:00
size = sync_media_folder(media_folder_local, media_folder_remote, host, cmd_port)
2022-10-14 13:27:01 +02:00
return size;
2022-10-06 11:44:59 +02:00
@app.route("/<host>/<arg0>/", defaults = { "arg1": "null", "arg2": "null" })
@app.route("/<host>/<arg0>/<arg1>/", defaults = { "arg2": "null" })
@app.route("/<host>/<arg0>/<arg1>/<arg2>")
def action(host, arg0, arg1, arg2):
status_message = "Idle"
2022-11-07 13:27:45 +01:00
2022-10-25 12:53:05 +02:00
if (arg0 not in cmd_player) and (arg0 not in cmd_server):
2022-11-03 12:48:12 +01:00
status_message = "<p>{}</p>".format(_("Wrong command"))
2022-11-07 13:27:45 +01:00
return status_message
if host == "all":
# Send request to all available hosts
2022-10-06 11:44:59 +02:00
resp = []
for hostl in hosts_available:
2022-11-07 13:27:45 +01:00
resp.append(send_pilpil_command(hostl, arg0, arg1, arg2))
2022-10-06 11:44:59 +02:00
status_message = resp
elif host not in hosts_available:
2022-11-03 12:48:12 +01:00
status_message = "<p>{}</p>".format("Host is not reachable")
2022-10-06 11:44:59 +02:00
else:
2022-11-07 13:27:45 +01:00
# Send request to specified host
status_message = send_pilpil_command(host, arg0, arg1, arg2)
2022-11-05 20:04:27 +01:00
if debug:
2022-10-06 11:44:59 +02:00
print(status_message)
2022-11-07 13:27:45 +01:00
2022-10-06 11:44:59 +02:00
return status_message
if __name__ == '__main__':
2022-10-14 13:27:01 +02:00
# ~ app.run()
2022-10-25 12:53:05 +02:00
serve(app, host='127.0.0.1', port=8080)