From 0f998419e7b7012c1955665fe2d674d496f0bb6f Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Tue, 13 Apr 2021 09:30:52 -0300 Subject: [PATCH] basic webmanifest thing, must be improved. --- lnbits/core/templates/core/wallet.html | 1 + lnbits/core/views/generic.py | 39 +++++++++++++++++++++++++- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/lnbits/core/templates/core/wallet.html b/lnbits/core/templates/core/wallet.html index e4bf1c1df..f1dd41736 100644 --- a/lnbits/core/templates/core/wallet.html +++ b/lnbits/core/templates/core/wallet.html @@ -4,6 +4,7 @@ {% block scripts %} {{ window_vars(user, wallet) }} + {% endblock %} {% block title %} {{ wallet.name }} - {{ SITE_TITLE }} {% endblock %} diff --git a/lnbits/core/views/generic.py b/lnbits/core/views/generic.py index eb719d7e5..495d16aee 100644 --- a/lnbits/core/views/generic.py +++ b/lnbits/core/views/generic.py @@ -5,8 +5,9 @@ from http import HTTPStatus from quart import ( g, abort, - redirect, + jsonify, request, + redirect, render_template, send_from_directory, url_for, @@ -165,3 +166,39 @@ async def lnurlwallet(): await trio.sleep(3) return redirect(url_for("core.wallet", usr=user.id, wal=wallet.id)) + + +@core_app.route("/manifest/.webmanifest") +async def manifest(usr: str): + user = await get_user(usr) + if not user: + return "", HTTPStatus.NOT_FOUND + + return jsonify( + { + "short_name": "LNbits", + "name": "LNbits Wallet", + "icons": [ + { + "src": "https://cdn.jsdelivr.net/gh/lnbits/lnbits@0.3.0/docs/logos/lnbits.png", + "type": "image/png", + "sizes": "900x900", + } + ], + "start_url": "/wallet?usr=" + usr, + "background_color": "#3367D6", + "description": "Weather forecast information", + "display": "standalone", + "scope": "/", + "theme_color": "#3367D6", + "shortcuts": [ + { + "name": wallet.name, + "short_name": wallet.name, + "description": wallet.name, + "url": "/wallet?usr=" + usr + "&wal=" + wallet.id, + } + for wallet in user.wallets + ], + } + )