commit 6e0afc292b908005788e7580a1cae1ffc35268a8 Author: metamuffin Date: Wed Oct 30 02:00:27 2024 +0100 a diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..31dbbff --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/log diff --git a/gnix.yaml b/gnix.yaml new file mode 100644 index 0000000..5f8470c --- /dev/null +++ b/gnix.yaml @@ -0,0 +1,2 @@ +http: { bind: "0.0.0.0:8080" } +handler: !cgi { bin: ./strichliste.lua } diff --git a/strichliste.lua b/strichliste.lua new file mode 100755 index 0000000..6ad7d5f --- /dev/null +++ b/strichliste.lua @@ -0,0 +1,109 @@ +#!/usr/bin/env luajit + +local path = os.getenv("PATH_INFO") +local method = os.getenv("REQUEST_METHOD") + +local function escape(s) + return s:gsub("<", "<"):gsub("<", "<") +end + +local function respond(status, title, body) + print(string.format("Status: %d", status)) + print("Content-Type: text/html") + print("") + print(string.format([[ + + %s + + + ]], escape(title))) + body() + print("") +end + +local function respond_error(message) + respond(400, "Error", function() + print(string.format("

Error: %s

", escape(message))) + end) +end + +local function form_data() + local data = {} + for pair in string.gmatch(io.read(), "([^&]+)") do + local key, value = string.match(pair, "([^=]+)=([^=]+)") + if key == nil or value == nil then + goto continue + end + data[key] = value + ::continue:: + end + return data +end + +local function read_log() + local log = io.open("log", "r") + if log == nil then + return function() return nil end + end + local lines = log:lines("l") + return function() + local l = lines() + local time, username, amount, comment = string.match(l, "(%d+),([%w_-]+),(-?%d+),([%w_-]*)") + return tonumber(time), username, tonumber(amount), comment + end +end + +if path == "/" then + print("Status: 200 OK") + print("Content-Type: text/plain") + print("") +elseif path ~= nil then + local username = path:sub(2) + if username:match("^[%w_-]+$") == nil then + return respond_error("username invalid") + end + + if method == "POST" then + local data = form_data() + local amount = tonumber(data.amount) + if amount == nil then + return respond_error("amount invalid") + end + local comment = data.comment or "" + if comment:match("^[%w_-]*$") == nil then + return respond_error("comment invalid") + end + local log = io.open("log", "a+") + if log == nil then + return respond_error("failed to open log") + end + local time = os.time() + log:write(string.format("%d,%s,%s,%s\n", time, username, amount, comment)) + log:flush() + log:close() + end + + respond(200, username, function() + print(string.format("

%s

", username)) + print([[ +
+ +
+ +
+ +
+ ]]) + for _, type in ipairs({ 1, -1 }) do + for _, amount in ipairs({ 50, 100, 150, 200, 500, 1000 }) do + print(string.format([[ +
+ + + +
+ ]], amount * type, ({ [-1] = "-", [1] = "+" })[type], amount / 100)) + end + end + end) +end