Compare commits
5 Commits
5dea5a7e31
...
b8bbfb3d72
Author | SHA1 | Date | |
---|---|---|---|
b8bbfb3d72 | |||
862da875bd | |||
b4dc8cf707 | |||
8e8cb5c33e
|
|||
4d60b89b02
|
@ -1,13 +1,13 @@
|
||||
certifi==2025.6.15
|
||||
charset-normalizer==3.4.2
|
||||
click==8.1.8
|
||||
click==8.2.1
|
||||
Flask==3.1.0
|
||||
Flask-WTF==1.2.2
|
||||
idna==3.10
|
||||
itsdangerous==2.2.0
|
||||
Jinja2==3.1.6
|
||||
MarkupSafe==3.0.2
|
||||
requests==2.32.3
|
||||
requests==2.32.4
|
||||
urllib3==2.4.0
|
||||
Werkzeug==3.1.3
|
||||
WTForms==3.2.1
|
26
Dockerfile
Normal file
26
Dockerfile
Normal file
@ -0,0 +1,26 @@
|
||||
FROM python:3.13-slim
|
||||
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
|
||||
USER root
|
||||
|
||||
ENV PYTHONPATH="/run:/usr/local/lib/python3.11/lib-dynload:/usr/local/lib/python3.11/site-packages:/usr/local/lib/python3.11"
|
||||
ENV UV_PROJECT_ENVIRONMENT="/usr/local/"
|
||||
|
||||
WORKDIR /run
|
||||
|
||||
RUN mkdir -p /.local && \
|
||||
chmod -R 777 /.local && \
|
||||
pip install -U pip uv==0.5.14
|
||||
|
||||
COPY pyproject.toml /run/pyproject.toml
|
||||
COPY uv.lock /run/uv.lock
|
||||
# needed for PDM build
|
||||
COPY README.md /run/README.md
|
||||
|
||||
RUN uv sync --frozen
|
||||
|
||||
ENTRYPOINT ["python3", "-B", "-m", "app.main"]
|
||||
|
||||
ARG version="dev"
|
||||
ENV APP_VERSION=$version
|
||||
|
||||
COPY app /run/app
|
20
app/app.py
20
app/app.py
@ -4,24 +4,26 @@
|
||||
|
||||
from flask import Flask, render_template, request
|
||||
from flask_wtf.csrf import CSRFProtect
|
||||
from app.send_page import send_page
|
||||
|
||||
from app.send_page import send_page
|
||||
|
||||
app = Flask(__name__)
|
||||
csrf = CSRFProtect(app)
|
||||
|
||||
@app.route("/", methods=['GET'])
|
||||
|
||||
@app.route("/", methods=["GET"])
|
||||
def index():
|
||||
"""Returns index template."""
|
||||
return render_template('index.html', status='')
|
||||
return render_template("index.html", status="")
|
||||
|
||||
@app.route("/", methods=['POST'])
|
||||
|
||||
@app.route("/", methods=["POST"])
|
||||
def send():
|
||||
"""POST function"""
|
||||
result = send_page(
|
||||
name=request.form.get('name'),
|
||||
email=request.form.get('email'),
|
||||
message=request.form.get('message')
|
||||
name=request.form.get("name"),
|
||||
email=request.form.get("email"),
|
||||
message=request.form.get("message"),
|
||||
)
|
||||
status = 'success' if result[0] else 'fail'
|
||||
return render_template('index.html', status=status)
|
||||
status = "success" if result[0] else "fail"
|
||||
return render_template("index.html", status=status)
|
||||
|
@ -3,33 +3,31 @@
|
||||
"""Send messages via the Pushover API."""
|
||||
|
||||
import os
|
||||
|
||||
import requests
|
||||
|
||||
|
||||
def send_page(name: str, email: str, message: str) -> tuple:
|
||||
"""POST to the Pushover API."""
|
||||
api_url = "https://api.pushover.net/1/messages.json"
|
||||
api_token = os.getenv('PUSHOVER_API_TOKEN')
|
||||
user_key = os.getenv('PUSHOVER_USER_KEY')
|
||||
api_token = os.getenv("PUSHOVER_API_TOKEN")
|
||||
user_key = os.getenv("PUSHOVER_USER_KEY")
|
||||
|
||||
full_msg = f"Name: {name}\nEmail: {email}\n\nMessage: {message}"
|
||||
|
||||
payload = {
|
||||
'token': api_token,
|
||||
'user': user_key,
|
||||
'title': f"ePage from {name}",
|
||||
'message': full_msg,
|
||||
'priority': "1",
|
||||
'sound': 'cosmic'
|
||||
"token": api_token,
|
||||
"user": user_key,
|
||||
"title": f"ePage from {name}",
|
||||
"message": full_msg,
|
||||
"priority": "1",
|
||||
"sound": "cosmic",
|
||||
}
|
||||
|
||||
req = requests.post(
|
||||
api_url,
|
||||
json=payload,
|
||||
headers={'Content-Type': 'application/json'},
|
||||
timeout=5
|
||||
api_url, json=payload, headers={"Content-Type": "application/json"}, timeout=5
|
||||
)
|
||||
|
||||
if req.status_code == 200 and req.json().get('status') == 1:
|
||||
if req.status_code == 200 and req.json().get("status") == 1:
|
||||
return (True, None)
|
||||
return (False, req.json())
|
||||
|
@ -3,6 +3,7 @@
|
||||
"""PyTest unit tests."""
|
||||
|
||||
import os
|
||||
|
||||
import pytest
|
||||
|
||||
from app.app import app, csrf
|
||||
|
@ -3,10 +3,10 @@
|
||||
"""Tests for app/app.py"""
|
||||
|
||||
|
||||
from tests import client # pragma: no cover
|
||||
from tests import client # pragma: no cover
|
||||
|
||||
|
||||
def test_index(client) -> None:
|
||||
"""Ensure that the index page is loaded correctly."""
|
||||
req = client.get('/')
|
||||
req = client.get("/")
|
||||
assert req.status_code == 200 and "ePage" in req.text
|
||||
|
@ -7,9 +7,5 @@ from app.send_page import send_page
|
||||
|
||||
def test_send_page_no_env() -> None:
|
||||
"""Ensure the API returns an error if no API key specified."""
|
||||
result = send_page(
|
||||
name='Unit Test',
|
||||
email='none@none.com',
|
||||
message='Unit Test'
|
||||
)
|
||||
assert not result[0] and result[1].get('token') == 'invalid'
|
||||
result = send_page(name="Unit Test", email="none@none.com", message="Unit Test")
|
||||
assert not result[0] and result[1].get("token") == "invalid"
|
||||
|
Reference in New Issue
Block a user