mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 12:47:38 +03:00
add configurable URL prefix
This commit is contained in:
parent
9a959f9326
commit
a524f1faf3
5 changed files with 35 additions and 16 deletions
|
@ -24,6 +24,13 @@ services:
|
||||||
- /path/to/downloads:/downloads
|
- /path/to/downloads:/downloads
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Configuration via environment variables
|
||||||
|
|
||||||
|
Certain values can be set via environment variables, using the `-e` parameter on the docker command line, or the `environment:` section in docker-compose.
|
||||||
|
|
||||||
|
* __DOWNLOAD_DIR__: path to where the downloads will be saved. Defaults to "/downloads" in the docker image, and "." otherwise.
|
||||||
|
* __URL_PREFIX__: base path for the web server (for use when hosting behind a reverse proxy). Defaults to "/".
|
||||||
|
|
||||||
## Build and run locally
|
## Build and run locally
|
||||||
|
|
||||||
Make sure you have node.js installed.
|
Make sure you have node.js installed.
|
||||||
|
|
23
app/main.py
23
app/main.py
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# pylint: disable=no-member,method-hidden
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from aiohttp import web
|
from aiohttp import web
|
||||||
|
@ -15,6 +16,7 @@ log = logging.getLogger('main')
|
||||||
class Config:
|
class Config:
|
||||||
_DEFAULTS = {
|
_DEFAULTS = {
|
||||||
'DOWNLOAD_DIR': '.',
|
'DOWNLOAD_DIR': '.',
|
||||||
|
'URL_PREFIX': '',
|
||||||
}
|
}
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
@ -35,6 +37,8 @@ app = web.Application()
|
||||||
sio = socketio.AsyncServer()
|
sio = socketio.AsyncServer()
|
||||||
sio.attach(app)
|
sio.attach(app)
|
||||||
routes = web.RouteTableDef()
|
routes = web.RouteTableDef()
|
||||||
|
if not config.URL_PREFIX.endswith('/'):
|
||||||
|
config.URL_PREFIX += '/'
|
||||||
|
|
||||||
class Notifier(DownloadQueueNotifier):
|
class Notifier(DownloadQueueNotifier):
|
||||||
async def added(self, dl):
|
async def added(self, dl):
|
||||||
|
@ -54,7 +58,7 @@ class Notifier(DownloadQueueNotifier):
|
||||||
|
|
||||||
dqueue = DownloadQueue(config, Notifier())
|
dqueue = DownloadQueue(config, Notifier())
|
||||||
|
|
||||||
@routes.post('/add')
|
@routes.post(config.URL_PREFIX + 'add')
|
||||||
async def add(request):
|
async def add(request):
|
||||||
post = await request.json()
|
post = await request.json()
|
||||||
url = post.get('url')
|
url = post.get('url')
|
||||||
|
@ -63,7 +67,7 @@ async def add(request):
|
||||||
status = await dqueue.add(url)
|
status = await dqueue.add(url)
|
||||||
return web.Response(text=serializer.encode(status))
|
return web.Response(text=serializer.encode(status))
|
||||||
|
|
||||||
@routes.post('/delete')
|
@routes.post(config.URL_PREFIX + 'delete')
|
||||||
async def delete(request):
|
async def delete(request):
|
||||||
post = await request.json()
|
post = await request.json()
|
||||||
ids = post.get('ids')
|
ids = post.get('ids')
|
||||||
|
@ -77,12 +81,21 @@ async def delete(request):
|
||||||
async def connect(sid, environ):
|
async def connect(sid, environ):
|
||||||
await sio.emit('all', serializer.encode(dqueue.get()), to=sid)
|
await sio.emit('all', serializer.encode(dqueue.get()), to=sid)
|
||||||
|
|
||||||
@routes.get('/')
|
@routes.get(config.URL_PREFIX)
|
||||||
def index(request):
|
def index(request):
|
||||||
return web.FileResponse('ui/dist/metube/index.html')
|
return web.FileResponse('ui/dist/metube/index.html')
|
||||||
|
|
||||||
routes.static('/favicon/', 'favicon')
|
if config.URL_PREFIX != '/':
|
||||||
routes.static('/', 'ui/dist/metube')
|
@routes.get('/')
|
||||||
|
def index_redirect_root(request):
|
||||||
|
return web.HTTPFound(config.URL_PREFIX)
|
||||||
|
|
||||||
|
@routes.get(config.URL_PREFIX[:-1])
|
||||||
|
def index_redirect_dir(request):
|
||||||
|
return web.HTTPFound(config.URL_PREFIX)
|
||||||
|
|
||||||
|
routes.static(config.URL_PREFIX + 'favicon/', 'favicon')
|
||||||
|
routes.static(config.URL_PREFIX, 'ui/dist/metube')
|
||||||
|
|
||||||
app.add_routes(routes)
|
app.add_routes(routes)
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<browserconfig>
|
<browserconfig>
|
||||||
<msapplication>
|
<msapplication>
|
||||||
<tile>
|
<tile>
|
||||||
<square150x150logo src="/favicon/mstile-150x150.png"/>
|
<square150x150logo src="favicon/mstile-150x150.png"/>
|
||||||
<TileColor>#da532c</TileColor>
|
<TileColor>#da532c</TileColor>
|
||||||
</tile>
|
</tile>
|
||||||
</msapplication>
|
</msapplication>
|
||||||
|
|
|
@ -3,12 +3,12 @@
|
||||||
"short_name": "",
|
"short_name": "",
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
{
|
||||||
"src": "/favicon/android-chrome-192x192.png",
|
"src": "android-chrome-192x192.png",
|
||||||
"sizes": "192x192",
|
"sizes": "192x192",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"src": "/favicon/android-chrome-384x384.png",
|
"src": "android-chrome-384x384.png",
|
||||||
"sizes": "384x384",
|
"sizes": "384x384",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,16 +3,15 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>MeTube</title>
|
<title>MeTube</title>
|
||||||
<base href="/">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
|
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
|
||||||
<link rel="manifest" href="/favicon/site.webmanifest">
|
<link rel="manifest" href="favicon/site.webmanifest">
|
||||||
<link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#5bbad5">
|
||||||
<link rel="shortcut icon" href="/favicon/favicon.ico">
|
<link rel="shortcut icon" href="favicon/favicon.ico">
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
<meta name="msapplication-TileColor" content="#da532c">
|
||||||
<meta name="msapplication-config" content="/favicon/browserconfig.xml">
|
<meta name="msapplication-config" content="favicon/browserconfig.xml">
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue