Make CamelCase lowercase
This commit is contained in:
parent
9c2c04dad2
commit
76438f5563
5 changed files with 16 additions and 16 deletions
|
|
@ -1,10 +1,10 @@
|
||||||
from quart import Blueprint
|
from quart import Blueprint
|
||||||
from lnbits.db import Database
|
from lnbits.db import Database
|
||||||
|
|
||||||
db = Database("ext_TwitchAlerts")
|
db = Database("ext_twitchalerts")
|
||||||
|
|
||||||
TwitchAlerts_ext: Blueprint = Blueprint(
|
twitchalerts_ext: Blueprint = Blueprint(
|
||||||
"TwitchAlerts", __name__, static_folder="static", template_folder="templates"
|
"twitchalerts", __name__, static_folder="static", template_folder="templates"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -137,7 +137,7 @@ async def authenticate_service(service_id, code, redirect_uri):
|
||||||
print(response)
|
print(response)
|
||||||
token = response['access_token']
|
token = response['access_token']
|
||||||
await service_add_token(service_id, token)
|
await service_add_token(service_id, token)
|
||||||
return f"/TwitchAlerts/?usr={user}"
|
return f"/twitchalerts/?usr={user}"
|
||||||
|
|
||||||
|
|
||||||
async def service_add_token(service_id, token):
|
async def service_add_token(service_id, token):
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
// axios is available for making requests
|
// axios is available for making requests
|
||||||
axios({
|
axios({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
url: '/TwitchAlerts/api/v1/tools',
|
url: '/twitchalerts/api/v1/tools',
|
||||||
headers: {
|
headers: {
|
||||||
'X-TwitchAlerts-header': 'not-used'
|
'X-TwitchAlerts-header': 'not-used'
|
||||||
}
|
}
|
||||||
|
|
@ -2,11 +2,11 @@ from quart import g, render_template
|
||||||
|
|
||||||
from lnbits.decorators import check_user_exists, validate_uuids
|
from lnbits.decorators import check_user_exists, validate_uuids
|
||||||
|
|
||||||
from . import TwitchAlerts_ext
|
from . import twitchalerts_ext
|
||||||
|
|
||||||
|
|
||||||
@TwitchAlerts_ext.route("/")
|
@twitchalerts_ext.route("/")
|
||||||
@validate_uuids(["usr"], required=True)
|
@validate_uuids(["usr"], required=True)
|
||||||
@check_user_exists()
|
@check_user_exists()
|
||||||
async def index():
|
async def index():
|
||||||
return await render_template("TwitchAlerts/index.html", user=g.user)
|
return await render_template("twitchalerts/index.html", user=g.user)
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ from http import HTTPStatus
|
||||||
|
|
||||||
from lnbits.decorators import api_validate_post_request, api_check_wallet_key
|
from lnbits.decorators import api_validate_post_request, api_check_wallet_key
|
||||||
|
|
||||||
from . import TwitchAlerts_ext
|
from . import twitchalerts_ext
|
||||||
from .crud import (
|
from .crud import (
|
||||||
get_charge_details,
|
get_charge_details,
|
||||||
create_donation,
|
create_donation,
|
||||||
|
|
@ -14,7 +14,7 @@ from .crud import (
|
||||||
from ..satspay.crud import create_charge, get_charge
|
from ..satspay.crud import create_charge, get_charge
|
||||||
|
|
||||||
|
|
||||||
@TwitchAlerts_ext.route("/api/v1/createservice", methods=["POST"])
|
@twitchalerts_ext.route("/api/v1/createservice", methods=["POST"])
|
||||||
@api_check_wallet_key("invoice")
|
@api_check_wallet_key("invoice")
|
||||||
@api_validate_post_request(
|
@api_validate_post_request(
|
||||||
schema={
|
schema={
|
||||||
|
|
@ -30,20 +30,20 @@ async def api_create_service():
|
||||||
"""Create a service, which holds data about how/where to post donations"""
|
"""Create a service, which holds data about how/where to post donations"""
|
||||||
service = await create_service(**g.data)
|
service = await create_service(**g.data)
|
||||||
redirect_url = request.scheme + "://" + request.headers["Host"]
|
redirect_url = request.scheme + "://" + request.headers["Host"]
|
||||||
redirect_url += f"/TwitchAlerts/?created={str(service.id)}"
|
redirect_url += f"/twitchalerts/?created={str(service.id)}"
|
||||||
return redirect(redirect_url)
|
return redirect(redirect_url)
|
||||||
|
|
||||||
|
|
||||||
@TwitchAlerts_ext.route("/api/v1/authenticate/<service_id>", methods=["GET"])
|
@twitchalerts_ext.route("/api/v1/authenticate/<service_id>", methods=["GET"])
|
||||||
async def api_authenticate_service(service_id):
|
async def api_authenticate_service(service_id):
|
||||||
code = request.args.get('code')
|
code = request.args.get('code')
|
||||||
redirect_uri = request.scheme + "://" + request.headers["Host"]
|
redirect_uri = request.scheme + "://" + request.headers["Host"]
|
||||||
redirect_uri += f"/TwitchAlerts/api/v1/authenticate/{service_id}"
|
redirect_uri += f"/twitchalerts/api/v1/authenticate/{service_id}"
|
||||||
url = await authenticate_service(service_id, code, redirect_uri)
|
url = await authenticate_service(service_id, code, redirect_uri)
|
||||||
return redirect(url)
|
return redirect(url)
|
||||||
|
|
||||||
|
|
||||||
@TwitchAlerts_ext.route("/api/v1/createdonation", methods=["POST"])
|
@twitchalerts_ext.route("/api/v1/createdonation", methods=["POST"])
|
||||||
@api_check_wallet_key("invoice")
|
@api_check_wallet_key("invoice")
|
||||||
@api_validate_post_request(
|
@api_validate_post_request(
|
||||||
schema={
|
schema={
|
||||||
|
|
@ -63,7 +63,7 @@ async def api_create_donation():
|
||||||
amount=g.data["sats"],
|
amount=g.data["sats"],
|
||||||
completelink="https://twitch.tv/Fitti",
|
completelink="https://twitch.tv/Fitti",
|
||||||
completelinktext="Back to Stream!",
|
completelinktext="Back to Stream!",
|
||||||
webhook=webhook_base + "/TwitchAlerts/api/v1/postdonation",
|
webhook=webhook_base + "/twitchalerts/api/v1/postdonation",
|
||||||
**charge_details)
|
**charge_details)
|
||||||
await create_donation(
|
await create_donation(
|
||||||
id=charge.id,
|
id=charge.id,
|
||||||
|
|
@ -76,7 +76,7 @@ async def api_create_donation():
|
||||||
return redirect(f"/satspay/{charge.id}")
|
return redirect(f"/satspay/{charge.id}")
|
||||||
|
|
||||||
|
|
||||||
@TwitchAlerts_ext.route("/api/v1/postdonation", methods=["POST"])
|
@twitchalerts_ext.route("/api/v1/postdonation", methods=["POST"])
|
||||||
# @api_validate_post_request(
|
# @api_validate_post_request(
|
||||||
# schema={
|
# schema={
|
||||||
# "id": {"type": "string", "required": True},
|
# "id": {"type": "string", "required": True},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue