13 Commits

Author SHA1 Message Date
tueem cc3996b384 fix(docker): add ca-certificates to docker
build / Go-Build (push) Successful in 1m25s
docker / docker (push) Successful in 4m9s
2026-06-24 14:48:11 +02:00
tueem 1b946789a4 feat(docker): add compose 2026-06-24 14:45:42 +02:00
tueem fbe10a0288 feat(docker): adjust entrypoint.sh for new imprinturl flag
docker / docker (push) Successful in 4m48s
build / Go-Build (push) Failing after 51s
2026-06-24 12:12:51 +02:00
tueem bfafd63b33 feat(ci): add frontend build stage 2026-06-24 12:12:38 +02:00
tueem d1d49ecc49 feat(frontend): add files
build / Go-Build (push) Failing after 15s
2026-06-24 11:58:59 +02:00
tueem 8f59f80eb2 feat(http): add IssuerBase method for account site redirect 2026-06-24 11:38:24 +02:00
tueem a958422506 fix(db): correct various sql statements 2026-06-24 11:37:58 +02:00
tueem 959a4edc32 feat(http): add imprint url 2026-06-24 11:37:20 +02:00
tueem 748b83f4a0 fix(auth): change username claim to preferred_username 2026-06-24 11:36:47 +02:00
tueem 80393c49f6 fix(http): wrong bulk add endpoint
build / Go-Build (push) Successful in 59s
2026-06-24 00:41:26 +02:00
tueem 6f28e7eb84 feat(http): added bulk endpoints to server config
build / Go-Build (push) Successful in 59s
2026-06-24 00:22:58 +02:00
tueem 85e4df52a5 feat(*): initial commit
build / Go-Build (push) Successful in 1m1s
2026-06-24 00:16:21 +02:00
tueem 3cf9e6f266 feat(db): implement basic db 2026-06-19 12:24:55 +02:00
59 changed files with 4934 additions and 1 deletions
+15
View File
@@ -28,6 +28,21 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v5 uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 26
cache: 'npm'
cache-dependency-path: ./frontend/package-lock.json
- name: Install Dependencies
working-directory: ./frontend
run: npm ci
- name: Run Vite Build
working-directory: ./frontend
run: npm run build
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v6 uses: actions/setup-go@v6
with: with:
+26
View File
@@ -0,0 +1,26 @@
# Frontend build stage
FROM node:22-alpine AS frontend-builder
WORKDIR /app
COPY frontend/package*.json ./
RUN npm ci
COPY frontend/ .
RUN npm run build
# Build stage
FROM golang:latest AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
COPY --from=frontend-builder /app/dist ./frontend/dist
RUN CGO_ENABLED=0 GOOS=linux go build -v -o outfit-voting-abi26 ./cmd/
# Final stage
FROM debian:bookworm-slim
WORKDIR /root/
EXPOSE 4000
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
COPY --from=builder /app/outfit-voting-abi26 /usr/local/bin/outfit-voting-abi26
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
+24
View File
@@ -0,0 +1,24 @@
package assets
import (
"embed"
"io/fs"
"net/http"
)
//go:embed frontend/dist/*
var frontendFS embed.FS
func HttpServer() http.Handler {
fs, err := fs.Sub(frontendFS, "frontend/dist")
if err != nil {
panic(err)
}
return http.FileServerFS(fs)
}
func ServeIndex(w http.ResponseWriter, r *http.Request) {
file, _ := frontendFS.ReadFile("frontend/dist/index.html")
w.Header().Set("Content-Type", "text/html; charset=utf-8")
w.Write(file)
}
+54 -1
View File
@@ -1 +1,54 @@
package cmd package main
import (
"flag"
"github.com/lib/pq"
"tomatentum.net/outfit-voting-abi26/internal/auth"
"tomatentum.net/outfit-voting-abi26/internal/database"
"tomatentum.net/outfit-voting-abi26/internal/http"
)
var config pq.Config
var (
oidcIssuer, oidcClientID, oidcClientSecret, oidcRedirectURI string
jwtSigningKey string
imprintURL string
)
func main() {
handleflag()
database.OpenDB(config)
defer database.CloseDB()
auth.SetSigningKey(jwtSigningKey)
if err := auth.InitProvider(oidcIssuer, oidcClientID, oidcClientSecret, oidcRedirectURI); err != nil {
panic(err)
}
if err := http.Start(imprintURL); err != nil {
panic(err)
}
}
func handleflag() {
config.SSLMode = pq.SSLModePrefer
flag.StringVar(&config.Host, "dbhost", "localhost", "Postgres host")
config.Port = uint16(*flag.Uint("dbport", 5432, "Postgres port"))
flag.StringVar(&config.Database, "dbname", "postgres", "Postgres db name")
flag.StringVar(&config.User, "dbuser", "postgres", "Postgres user")
flag.StringVar(&config.Password, "dbpass", "", "Postgres password")
flag.StringVar(&oidcIssuer, "oidcIssuer", "", "The OIDC Issuer")
flag.StringVar(&oidcClientID, "oidcClientID", "", "The OIDC Client ID")
flag.StringVar(&oidcClientSecret, "oidcClientSecret", "", "The OIDC Client Secret")
flag.StringVar(&oidcRedirectURI, "oidcRedirectURI", "", "The OIDC Redirect URI")
flag.StringVar(&jwtSigningKey, "signingKey", "UNSAFE", "The JWT signingkey")
flag.StringVar(&imprintURL, "imprinturl", "", "The URL to the sites imprint")
flag.Parse()
}
+77
View File
@@ -0,0 +1,77 @@
services:
outfit-voting-abi26:
image: tueem/outfit-voting-abi26:latest
restart: unless-stopped
environment:
DB_HOST: "HOST"
DB_PORT: "PORT"
DB_NAME: "NAME"
DB_USER: "USER"
DB_PASS: "PASS"
OIDC_ISSUER: "OIDC_ISSUER"
OIDC_CLIENTID: "OIDC_CLIENTID"
OIDC_SECRET: "OIDC_SECRET"
OIDC_REDIRECT: "OIDC_REDIRECT"
SIGNINGKEY: "SIGNINGKEY"
IMPRINTURL: "IMPRINTURL"
networks:
- web-network
- backend
depends_on:
postgres:
condition: service_healthy
labels:
- "traefik.enable=true"
- "traefik.http.routers.myapp.rule=Host(`example.com`)"
- "traefik.http.routers.myapp.entrypoints=websecure"
- "traefik.http.routers.myapp.tls=true"
- "traefik.http.routers.myapp.tls.certresolver=letsencrypt"
- "traefik.http.services.myapp.loadbalancer.server.port=4000"
postgres:
image: postgres:latest
restart: unless-stopped
shm_size: 128mb
environment:
POSTGRES_PASSWORD: "PASS"
volumes:
- db:/var/lib/postgresql
healthcheck:
test: ["CMD-SHELL", "pg_isready -U myuser -d mydatabase"]
interval: 10s
timeout: 5s
retries: 5
start_period: 10s
networks:
- backend
traefik:
image: traefik:v3.1
restart: unless-stopped
security_opt:
- no-new-privileges:true
ports:
- "80:80" # HTTP port
- "443:443" # HTTPS port
command:
- "--providers.docker=true"
- "--providers.docker.exposedbydefault=false"
- "--entrypoints.web.address=:80"
- "--entrypoints.websecure.address=:443"
- "--entrypoints.web.http.redirections.entryPoint.to=websecure"
- "--entrypoints.web.http.redirections.entryPoint.scheme=https"
- "--certificatesresolvers.letsencrypt.acme.httpchallenge=true"
- "--certificatesresolvers.letsencrypt.acme.httpchallenge.entrypoint=web"
- "--certificatesresolvers.letsencrypt.acme.email=your-email@example.com"
- "--certificatesresolvers.letsencrypt.acme.storage=/etc/traefik/acme/acme.json"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./traefik-ssl:/etc/traefik/acme
networks:
- web-network
networks:
web-network:
backend:
volumes:
db:
+49
View File
@@ -0,0 +1,49 @@
#!/bin/sh
CMD="outfit-voting-abi26"
if [ -n "$DB_HOST" ]; then
CMD="$CMD --dbhost $DB_HOST"
fi
if [ -n "$DB_PORT" ]; then
CMD="$CMD --dbport $DB_PORT"
fi
if [ -n "$DB_NAME" ]; then
CMD="$CMD --dbname $DB_NAME"
fi
if [ -n "$DB_USER" ]; then
CMD="$CMD --dbuser $DB_USER"
fi
if [ -n "$DB_PASS" ]; then
CMD="$CMD --dbpass $DB_PASS"
fi
if [ -n "$OIDC_ISSUER" ]; then
CMD="$CMD --oidcIssuer $OIDC_ISSUER"
fi
if [ -n "$OIDC_CLIENTID" ]; then
CMD="$CMD --oidcClientID $OIDC_CLIENTID"
fi
if [ -n "$OIDC_SECRET" ]; then
CMD="$CMD --oidcClientSecret $OIDC_SECRET"
fi
if [ -n "$OIDC_REDIRECT" ]; then
CMD="$CMD --oidcRedirectURI $OIDC_REDIRECT"
fi
if [ -n "$SIGNINGKEY" ]; then
CMD="$CMD --signingKey $SIGNINGKEY"
fi
if [ -n "$IMPRINTURL" ]; then
CMD="$CMD --imprinturl $IMPRINTURL"
fi
eval exec $CMD "$@"
+24
View File
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
+8
View File
@@ -0,0 +1,8 @@
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["react", "typescript", "oxc"],
"rules": {
"react/rules-of-hooks": "error",
"react/only-export-components": ["warn", { "allowConstantExport": true }]
}
}
+32
View File
@@ -0,0 +1,32 @@
# React + TypeScript + Vite
This template provides a minimal setup to get React working in Vite with HMR and some Oxlint rules.
Currently, two official plugins are available:
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs)
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/)
## React Compiler
The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
## Expanding the Oxlint configuration
If you are developing a production application, we recommend enabling type-aware lint rules by installing `oxlint-tsgolint` and editing `.oxlintrc.json`:
```json
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["react", "typescript", "oxc"],
"options": {
"typeAware": true
},
"rules": {
"react/rules-of-hooks": "error",
"react/only-export-components": ["warn", { "allowConstantExport": true }]
}
}
```
See the [Oxlint rules documentation](https://oxc.rs/docs/guide/usage/linter/rules) for the full list of rules and categories.
+13
View File
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Outfit-Voting Abi26</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
+1487
View File
File diff suppressed because it is too large Load Diff
+27
View File
@@ -0,0 +1,27 @@
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "oxlint",
"preview": "vite preview"
},
"dependencies": {
"lucide-react": "^1.21.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router-dom": "^7.18.0"
},
"devDependencies": {
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"oxlint": "^1.69.0",
"typescript": "~6.0.2",
"vite": "^8.1.0"
}
}
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.3 KiB

+24
View File
@@ -0,0 +1,24 @@
<svg xmlns="http://www.w3.org/2000/svg">
<symbol id="bluesky-icon" viewBox="0 0 16 17">
<g clip-path="url(#bluesky-clip)"><path fill="#08060d" d="M7.75 7.735c-.693-1.348-2.58-3.86-4.334-5.097-1.68-1.187-2.32-.981-2.74-.79C.188 2.065.1 2.812.1 3.251s.241 3.602.398 4.13c.52 1.744 2.367 2.333 4.07 2.145-2.495.37-4.71 1.278-1.805 4.512 3.196 3.309 4.38-.71 4.987-2.746.608 2.036 1.307 5.91 4.93 2.746 2.72-2.746.747-4.143-1.747-4.512 1.702.189 3.55-.4 4.07-2.145.156-.528.397-3.691.397-4.13s-.088-1.186-.575-1.406c-.42-.19-1.06-.395-2.741.79-1.755 1.24-3.64 3.752-4.334 5.099"/></g>
<defs><clipPath id="bluesky-clip"><path fill="#fff" d="M.1.85h15.3v15.3H.1z"/></clipPath></defs>
</symbol>
<symbol id="discord-icon" viewBox="0 0 20 19">
<path fill="#08060d" d="M16.224 3.768a14.5 14.5 0 0 0-3.67-1.153c-.158.286-.343.67-.47.976a13.5 13.5 0 0 0-4.067 0c-.128-.306-.317-.69-.476-.976A14.4 14.4 0 0 0 3.868 3.77C1.546 7.28.916 10.703 1.231 14.077a14.7 14.7 0 0 0 4.5 2.306q.545-.748.965-1.587a9.5 9.5 0 0 1-1.518-.74q.191-.14.372-.293c2.927 1.369 6.107 1.369 8.999 0q.183.152.372.294-.723.437-1.52.74.418.838.963 1.588a14.6 14.6 0 0 0 4.504-2.308c.37-3.911-.63-7.302-2.644-10.309m-9.13 8.234c-.878 0-1.599-.82-1.599-1.82 0-.998.705-1.82 1.6-1.82.894 0 1.614.82 1.599 1.82.001 1-.705 1.82-1.6 1.82m5.91 0c-.878 0-1.599-.82-1.599-1.82 0-.998.705-1.82 1.6-1.82.893 0 1.614.82 1.599 1.82 0 1-.706 1.82-1.6 1.82"/>
</symbol>
<symbol id="documentation-icon" viewBox="0 0 21 20">
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="m15.5 13.333 1.533 1.322c.645.555.967.833.967 1.178s-.322.623-.967 1.179L15.5 18.333m-3.333-5-1.534 1.322c-.644.555-.966.833-.966 1.178s.322.623.966 1.179l1.534 1.321"/>
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M17.167 10.836v-4.32c0-1.41 0-2.117-.224-2.68-.359-.906-1.118-1.621-2.08-1.96-.599-.21-1.349-.21-2.848-.21-2.623 0-3.935 0-4.983.369-1.684.591-3.013 1.842-3.641 3.428C3 6.449 3 7.684 3 10.154v2.122c0 2.558 0 3.838.706 4.726q.306.383.713.671c.76.536 1.79.64 3.581.66"/>
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M3 10a2.78 2.78 0 0 1 2.778-2.778c.555 0 1.209.097 1.748-.047.48-.129.854-.503.982-.982.145-.54.048-1.194.048-1.749a2.78 2.78 0 0 1 2.777-2.777"/>
</symbol>
<symbol id="github-icon" viewBox="0 0 19 19">
<path fill="#08060d" fill-rule="evenodd" d="M9.356 1.85C5.05 1.85 1.57 5.356 1.57 9.694a7.84 7.84 0 0 0 5.324 7.44c.387.079.528-.168.528-.376 0-.182-.013-.805-.013-1.454-2.165.467-2.616-.935-2.616-.935-.349-.91-.864-1.143-.864-1.143-.71-.48.051-.48.051-.48.787.051 1.2.805 1.2.805.695 1.194 1.817.857 2.268.649.064-.507.27-.857.49-1.052-1.728-.182-3.545-.857-3.545-3.87 0-.857.31-1.558.8-2.104-.078-.195-.349-1 .077-2.078 0 0 .657-.208 2.14.805a7.5 7.5 0 0 1 1.946-.26c.657 0 1.328.092 1.946.26 1.483-1.013 2.14-.805 2.14-.805.426 1.078.155 1.883.078 2.078.502.546.799 1.247.799 2.104 0 3.013-1.818 3.675-3.558 3.87.284.247.528.714.528 1.454 0 1.052-.012 1.896-.012 2.156 0 .208.142.455.528.377a7.84 7.84 0 0 0 5.324-7.441c.013-4.338-3.48-7.844-7.773-7.844" clip-rule="evenodd"/>
</symbol>
<symbol id="social-icon" viewBox="0 0 20 20">
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M12.5 6.667a4.167 4.167 0 1 0-8.334 0 4.167 4.167 0 0 0 8.334 0"/>
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M2.5 16.667a5.833 5.833 0 0 1 8.75-5.053m3.837.474.513 1.035c.07.144.257.282.414.309l.93.155c.596.1.736.536.307.965l-.723.73a.64.64 0 0 0-.152.531l.207.903c.164.715-.213.991-.84.618l-.872-.52a.63.63 0 0 0-.577 0l-.872.52c-.624.373-1.003.094-.84-.618l.207-.903a.64.64 0 0 0-.152-.532l-.723-.729c-.426-.43-.289-.864.306-.964l.93-.156a.64.64 0 0 0 .412-.31l.513-1.034c.28-.562.735-.562 1.012 0"/>
</symbol>
<symbol id="x-icon" viewBox="0 0 19 19">
<path fill="#08060d" fill-rule="evenodd" d="M1.893 1.98c.052.072 1.245 1.769 2.653 3.77l2.892 4.114c.183.261.333.48.333.486s-.068.089-.152.183l-.522.593-.765.867-3.597 4.087c-.375.426-.734.834-.798.905a1 1 0 0 0-.118.148c0 .01.236.017.664.017h.663l.729-.83c.4-.457.796-.906.879-.999a692 692 0 0 0 1.794-2.038c.034-.037.301-.34.594-.675l.551-.624.345-.392a7 7 0 0 1 .34-.374c.006 0 .93 1.306 2.052 2.903l2.084 2.965.045.063h2.275c1.87 0 2.273-.003 2.266-.021-.008-.02-1.098-1.572-3.894-5.547-2.013-2.862-2.28-3.246-2.273-3.266.008-.019.282-.332 2.085-2.38l2-2.274 1.567-1.782c.022-.028-.016-.03-.65-.03h-.674l-.3.342a871 871 0 0 1-1.782 2.025c-.067.075-.405.458-.75.852a100 100 0 0 1-.803.91c-.148.172-.299.344-.99 1.127-.304.343-.32.358-.345.327-.015-.019-.904-1.282-1.976-2.808L6.365 1.85H1.8zm1.782.91 8.078 11.294c.772 1.08 1.413 1.973 1.425 1.984.016.017.241.02 1.05.017l1.03-.004-2.694-3.766L7.796 5.75 5.722 2.852l-1.039-.004-1.039-.004z" clip-rule="evenodd"/>
</symbol>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

+184
View File
@@ -0,0 +1,184 @@
.counter {
font-size: 16px;
padding: 5px 10px;
border-radius: 5px;
color: var(--accent);
background: var(--accent-bg);
border: 2px solid transparent;
transition: border-color 0.3s;
margin-bottom: 24px;
&:hover {
border-color: var(--accent-border);
}
&:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
}
.hero {
position: relative;
.base,
.framework,
.vite {
inset-inline: 0;
margin: 0 auto;
}
.base {
width: 170px;
position: relative;
z-index: 0;
}
.framework,
.vite {
position: absolute;
}
.framework {
z-index: 1;
top: 34px;
height: 28px;
transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
scale(1.4);
}
.vite {
z-index: 0;
top: 107px;
height: 26px;
width: auto;
transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
scale(0.8);
}
}
#center {
display: flex;
flex-direction: column;
gap: 25px;
place-content: center;
place-items: center;
flex-grow: 1;
@media (max-width: 1024px) {
padding: 32px 20px 24px;
gap: 18px;
}
}
#next-steps {
display: flex;
border-top: 1px solid var(--border);
text-align: left;
& > div {
flex: 1 1 0;
padding: 32px;
@media (max-width: 1024px) {
padding: 24px 20px;
}
}
.icon {
margin-bottom: 16px;
width: 22px;
height: 22px;
}
@media (max-width: 1024px) {
flex-direction: column;
text-align: center;
}
}
#docs {
border-right: 1px solid var(--border);
@media (max-width: 1024px) {
border-right: none;
border-bottom: 1px solid var(--border);
}
}
#next-steps ul {
list-style: none;
padding: 0;
display: flex;
gap: 8px;
margin: 32px 0 0;
.logo {
height: 18px;
}
a {
color: var(--text-h);
font-size: 16px;
border-radius: 6px;
background: var(--social-bg);
display: flex;
padding: 6px 12px;
align-items: center;
gap: 8px;
text-decoration: none;
transition: box-shadow 0.3s;
&:hover {
box-shadow: var(--shadow);
}
.button-icon {
height: 18px;
width: 18px;
}
}
@media (max-width: 1024px) {
margin-top: 20px;
flex-wrap: wrap;
justify-content: center;
li {
flex: 1 1 calc(50% - 8px);
}
a {
width: 100%;
justify-content: center;
box-sizing: border-box;
}
}
}
#spacer {
height: 88px;
border-top: 1px solid var(--border);
@media (max-width: 1024px) {
height: 48px;
}
}
.ticks {
position: relative;
width: 100%;
&::before,
&::after {
content: '';
position: absolute;
top: -4.5px;
border: 5px solid transparent;
}
&::before {
left: 0;
border-left-color: var(--border);
}
&::after {
right: 0;
border-right-color: var(--border);
}
}
+23
View File
@@ -0,0 +1,23 @@
import React from 'react';
import { BrowserRouter, Routes, Route } from 'react-router-dom';
import { Footer } from './components/Footer';
import VotingPage from './pages/voting';
import AdminPage from './pages/admin';
import ResultPage from './pages/result';
export const App: React.FC = () => {
return (
<BrowserRouter>
<div className="app-container">
<Routes>
<Route path="/" element={<VotingPage />} />
<Route path="/admin" element={<AdminPage />} />
<Route path="/result" element={<ResultPage />} />
</Routes>
<Footer />
</div>
</BrowserRouter>
);
};
export default App;
+101
View File
@@ -0,0 +1,101 @@
import type { VoteOption, VoteResult } from '../types';
const API_BASE = '/api';
export const api = {
getVoteLocked: async (): Promise<boolean> => {
const res = await fetch(`${API_BASE}/vote/locked`);
if (!res.ok) throw new Error('Failed to fetch vote lock state');
return res.json();
},
getResultLocked: async (): Promise<boolean> => {
const res = await fetch(`${API_BASE}/result/locked`);
if (!res.ok) throw new Error('Failed to fetch result lock state');
return res.json();
},
getVoteOptions: async (): Promise<VoteOption[]> => {
const res = await fetch(`${API_BASE}/vote`);
if (res.status === 423) throw new Error('Locked');
if (!res.ok) throw new Error('Failed to fetch options');
return res.json();
},
incVote: async (id: string): Promise<void> => {
const res = await fetch(`${API_BASE}/vote/${id}/inc`, { method: 'PATCH' });
if (!res.ok) throw new Error('Failed to submit vote');
},
getResults: async (): Promise<VoteResult[]> => {
const res = await fetch(`${API_BASE}/result`);
if (res.status === 423) throw new Error('Locked');
if (!res.ok) throw new Error('Failed to fetch results');
return res.json();
},
// Admin Endpoints
setVoteLocked: async (value: boolean): Promise<void> => {
const res = await fetch(`${API_BASE}/vote/locked`, {
method: 'PATCH',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ Value: value })
});
if (!res.ok) throw new Error('Failed to set lock');
},
setResultLocked: async (value: boolean): Promise<void> => {
const res = await fetch(`${API_BASE}/result/locked`, {
method: 'PATCH',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ Value: value })
});
if (!res.ok) throw new Error('Failed to set lock');
},
addVoteEntry: async (name: string, category: string): Promise<VoteOption> => {
const res = await fetch(`${API_BASE}/vote`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ Name: name, Category: category })
});
if (!res.ok) throw new Error('Failed to add entry');
return res.json();
},
deleteVoteEntry: async (id: string): Promise<void> => {
const res = await fetch(`${API_BASE}/vote/${id}`, { method: 'DELETE' });
if (!res.ok) throw new Error('Failed to delete entry');
},
bulkDeleteVoteEntries: async (ids: string[]): Promise<void> => {
const res = await fetch(`${API_BASE}/vote/bulk`, {
method: 'DELETE',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(ids)
});
if (!res.ok) throw new Error('Failed to delete entries');
},
setVoteCount: async (id: string, votes: number): Promise<void> => {
const res = await fetch(`${API_BASE}/vote/${id}/override`, {
method: 'PATCH',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ Votes: votes })
});
if (!res.ok) throw new Error('Failed to override vote');
},
getUser: async (): Promise<string | null> => {
try {
const res = await fetch(`/admin`);
return res.headers.get('user');
} catch {
return null;
}
},
logout: async (): Promise<void> => {
await fetch(`${API_BASE}/auth/logout`);
}
};
Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.5 KiB

+66
View File
@@ -0,0 +1,66 @@
.dialog-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 1rem;
}
.dialog-panel {
max-width: 400px;
width: 100%;
padding: 2rem;
}
.dialog-title {
margin: 0 0 1rem 0;
font-family: 'Sora', sans-serif;
font-size: 1.5rem;
}
.dialog-message {
color: var(--text-muted);
margin-bottom: 2rem;
line-height: 1.5;
}
.dialog-actions {
display: flex;
justify-content: flex-end;
gap: 1rem;
}
.btn-cancel, .btn-confirm {
padding: 0.75rem 1.5rem;
border-radius: var(--radius-m);
border: none;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
}
.btn-cancel {
background: transparent;
color: var(--text);
border: 1px solid var(--panel-border);
}
.btn-cancel:hover {
background: rgba(255, 255, 255, 0.1);
}
.btn-confirm {
background: var(--teal);
color: var(--bg);
}
.btn-confirm:hover {
background: #25d9ff;
transform: translateY(-2px);
box-shadow: 0 4px 15px var(--teal-soft);
}
+27
View File
@@ -0,0 +1,27 @@
import React from 'react';
import './ConfirmDialog.css';
interface ConfirmDialogProps {
isOpen: boolean;
title: string;
message: string;
onConfirm: () => void;
onCancel: () => void;
}
export const ConfirmDialog: React.FC<ConfirmDialogProps> = ({ isOpen, title, message, onConfirm, onCancel }) => {
if (!isOpen) return null;
return (
<div className="dialog-overlay">
<div className="dialog-panel panel">
<h3 className="dialog-title">{title}</h3>
<p className="dialog-message">{message}</p>
<div className="dialog-actions">
<button className="btn-cancel" onClick={onCancel}>Abbrechen</button>
<button className="btn-confirm" onClick={onConfirm}>Bestätigen</button>
</div>
</div>
</div>
);
};
+53
View File
@@ -0,0 +1,53 @@
.footer {
margin-top: auto;
padding: 1.5rem 0 0.5rem 0;
text-align: center;
background: transparent;
border: none;
box-shadow: none;
backdrop-filter: none;
-webkit-backdrop-filter: none;
}
.footer-content {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 1.5rem;
font-size: 0.75rem;
color: var(--text-muted);
opacity: 0.6;
transition: opacity 0.2s ease;
}
.footer-content:hover {
opacity: 1;
}
.footer-link {
color: inherit;
text-decoration: underline;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.footer-link:hover {
color: var(--teal);
}
.footer-credits {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
}
.footer-credits p {
margin: 0;
}
.footer-credits strong {
font-weight: 500;
color: var(--text);
margin-left: 0.2rem;
}
+16
View File
@@ -0,0 +1,16 @@
import React from 'react';
import './Footer.css';
export const Footer: React.FC = () => {
return (
<footer className="footer">
<div className="footer-content">
<a href="/impressum" className="footer-link">Impressum</a>
<div className="footer-credits">
<p>Developed by <strong>Tim Müller</strong></p>
<p>Original Design by <strong>Alexey Sukhov</strong></p>
</div>
</div>
</footer>
);
};
+64
View File
@@ -0,0 +1,64 @@
.app-header {
position: fixed;
top: 0;
left: 0;
right: 0;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
border-bottom: 1px solid var(--panel-border);
background: rgba(8, 14, 20, 0.6);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
z-index: 100;
}
.header-brand {
display: flex;
align-items: center;
gap: 1rem;
text-decoration: none;
color: var(--text);
}
.header-brand:hover {
opacity: 0.9;
}
.header-logo {
height: 40px;
width: auto;
filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}
.header-title {
font-family: 'Sora', sans-serif;
font-size: 1.5rem;
font-weight: 600;
color: var(--text);
letter-spacing: 0.5px;
}
.header-admin {
display: flex;
align-items: center;
gap: 1.5rem;
}
.header-username {
font-size: 1rem;
font-weight: 500;
color: var(--teal);
background: var(--teal-soft);
padding: 0.4rem 0.8rem;
border-radius: var(--radius-m);
}
@media (max-width: 600px) {
.app-header {
flex-direction: column;
gap: 1rem;
padding: 1rem;
}
}
+44
View File
@@ -0,0 +1,44 @@
import React from 'react';
import { LogOut } from 'lucide-react';
import { Link } from 'react-router-dom';
import './Header.css';
interface HeaderProps {
showAdminControls?: boolean;
username?: string | null;
onLogout?: () => void;
showResultsLink?: boolean;
}
export const Header: React.FC<HeaderProps> = ({ showAdminControls, username, onLogout, showResultsLink }) => {
return (
<header className="app-header">
<Link to="/" className="header-brand">
<img src="/logo.png" alt="Goethe+ Logo" className="header-logo" />
<span className="header-title">Outfit-Voting Abi26</span>
</Link>
<div className="header-admin">
{showResultsLink && (
<Link to="/result" className="header-username" style={{ textDecoration: 'none' }}>
Ergebnisse
</Link>
)}
{showAdminControls && (
<>
{username && (
<a href="/account" className="header-username" style={{ textDecoration: 'none' }}>
{username}
</a>
)}
{onLogout && (
<button className="btn-logout" onClick={onLogout}>
<LogOut size={18} /> Logout
</button>
)}
</>
)}
</div>
</header>
);
};
+36
View File
@@ -0,0 +1,36 @@
.lock-screen {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem 2rem;
text-align: center;
margin: auto 0;
}
.lock-icon-container {
width: 96px;
height: 96px;
background: var(--teal-soft);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 2rem;
color: var(--teal);
box-shadow: 0 0 40px var(--teal-soft);
}
.lock-title {
font-family: 'Sora', sans-serif;
font-size: 2rem;
margin: 0 0 1rem 0;
}
.lock-message {
color: var(--text-muted);
font-size: 1.1rem;
max-width: 400px;
line-height: 1.6;
}
+19
View File
@@ -0,0 +1,19 @@
import React from 'react';
import { Lock } from 'lucide-react';
import './LockScreen.css';
interface LockScreenProps {
message?: string;
}
export const LockScreen: React.FC<LockScreenProps> = ({ message = "Voting oder Zählung noch nicht abgeschlossen" }) => {
return (
<div className="lock-screen panel">
<div className="lock-icon-container">
<Lock size={48} className="lock-icon" />
</div>
<h2 className="lock-title">Derzeit Gesperrt</h2>
<p className="lock-message">{message}</p>
</div>
);
};
@@ -0,0 +1,104 @@
.search-select {
position: relative;
width: 100%;
font-family: 'Outfit', sans-serif;
}
.search-select.disabled {
opacity: 0.5;
cursor: not-allowed;
}
.select-header {
background: rgba(255, 255, 255, 0.03);
border: 1px solid var(--panel-border);
border-radius: var(--radius-m);
padding: 0.8rem 1rem;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
transition: all 0.2s ease;
}
.search-select:not(.disabled) .select-header:hover {
background: rgba(255, 255, 255, 0.06);
border-color: rgba(255, 255, 255, 0.15);
}
.chevron {
transition: transform 0.2s ease;
}
.chevron.open {
transform: rotate(180deg);
}
.select-dropdown {
position: absolute;
top: calc(100% + 0.5rem);
left: 0;
right: 0;
z-index: 50;
display: flex;
flex-direction: column;
max-height: 300px;
overflow: hidden;
padding: 0;
}
.search-box {
display: flex;
align-items: center;
padding: 0.8rem 1rem;
border-bottom: 1px solid var(--panel-border);
gap: 0.5rem;
}
.search-icon {
color: var(--text-muted);
}
.search-box input {
background: transparent;
border: none;
outline: none;
width: 100%;
color: var(--text);
font-size: 0.95rem;
}
.options-list {
overflow-y: auto;
padding: 0.5rem;
}
.options-list::-webkit-scrollbar {
width: 6px;
}
.options-list::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
}
.option-item {
padding: 0.6rem 1rem;
border-radius: var(--radius-m);
cursor: pointer;
transition: background 0.2s;
}
.option-item:hover {
background: rgba(255, 255, 255, 0.05);
}
.option-item.selected {
background: var(--teal-soft);
color: var(--teal);
font-weight: 500;
}
.no-options {
padding: 1rem;
text-align: center;
color: var(--text-muted);
}
@@ -0,0 +1,64 @@
import React, { useState, useRef, useEffect } from 'react';
import { ChevronDown, Search } from 'lucide-react';
import './SearchableSelect.css';
interface Option { value: string; label: string; }
interface SearchableSelectProps {
options: Option[];
value: string;
onChange: (val: string) => void;
disabled?: boolean;
}
export const SearchableSelect: React.FC<SearchableSelectProps> = ({ options, value, onChange, disabled }) => {
const [isOpen, setIsOpen] = useState(false);
const [search, setSearch] = useState('');
const ref = useRef<HTMLDivElement>(null);
useEffect(() => {
const handleClick = (e: MouseEvent) => {
if (ref.current && !ref.current.contains(e.target as Node)) setIsOpen(false);
};
document.addEventListener('mousedown', handleClick);
return () => document.removeEventListener('mousedown', handleClick);
}, []);
const filtered = options.filter(o => o.label.toLowerCase().includes(search.toLowerCase()));
const selected = options.find(o => o.value === value);
return (
<div className={`search-select ${disabled ? 'disabled' : ''}`} ref={ref}>
<div className="select-header" onClick={() => !disabled && setIsOpen(!isOpen)}>
<span>{selected ? selected.label : 'Bitte wählen...'}</span>
<ChevronDown size={18} className={`chevron ${isOpen ? 'open' : ''}`} />
</div>
{isOpen && (
<div className="select-dropdown panel">
<div className="search-box">
<Search size={16} className="search-icon" />
<input
autoFocus
type="text"
placeholder="Suchen..."
value={search}
onChange={e => setSearch(e.target.value)}
/>
</div>
<div className="options-list">
{filtered.map(o => (
<div
key={o.value}
className={`option-item ${o.value === value ? 'selected' : ''}`}
onClick={() => { onChange(o.value); setIsOpen(false); setSearch(''); }}
>
{o.label}
</div>
))}
{filtered.length === 0 && <div className="no-options">Keine Ergebnisse</div>}
</div>
</div>
)}
</div>
);
};
+116
View File
@@ -0,0 +1,116 @@
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Sora:wght@500;600;700&display=swap');
:root {
--bg: #010407;
--bg-soft: #061019;
--panel: rgba(8, 14, 20, 0.82);
--panel-border: rgba(255, 255, 255, 0.09);
--text: #f4f8fc;
--text-muted: rgba(231, 238, 244, 0.66);
--teal: #17c1e7;
--teal-soft: rgba(23, 193, 231, 0.35);
--success: #55e783;
--danger: #ff5f69;
--shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.45);
--radius-xl: 28px;
--radius-l: 20px;
--radius-m: 14px;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body,
#root {
min-height: 100vh;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
}
body {
font-family: 'Outfit', 'Segoe UI', sans-serif;
background:
radial-gradient(1050px 520px at 85% -12%, rgba(120, 236, 255, 0.21), transparent 56%),
radial-gradient(780px 380px at 12% -8%, rgba(0, 173, 217, 0.24), transparent 52%),
var(--bg);
background-attachment: fixed;
color: var(--text);
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
button,
input,
textarea,
select {
font: inherit;
color: inherit;
}
a {
color: inherit;
text-decoration: none;
}
/* Base Panel Style */
.panel {
background: var(--panel);
border: 1px solid var(--panel-border);
border-radius: var(--radius-l);
box-shadow: var(--shadow-soft);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
}
/* Main Layout */
.app-container {
flex: 1;
display: flex;
flex-direction: column;
max-width: 1200px;
width: 100%;
margin: 0 auto;
padding: 100px 2rem 2rem 2rem;
}
@media (max-width: 768px) {
.app-container {
padding: 120px 1rem 1rem 1rem;
}
}
/* Shared Categories Grid & Cards */
.categories-grid {
display: flex;
flex-direction: column;
align-items: center;
gap: 2rem;
}
.category-card {
width: 100%;
max-width: 600px;
padding: 2.2rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-card:hover {
transform: translateY(-2px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.category-title {
margin: 0;
font-family: 'Sora', sans-serif;
font-size: 1.5rem;
color: var(--teal);
}
+10
View File
@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.tsx'
import './index.css'
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
+255
View File
@@ -0,0 +1,255 @@
.admin-page {
flex: 1;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.admin-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem;
}
.admin-header h2 {
margin: 0;
font-family: 'Sora', sans-serif;
color: var(--teal);
}
.btn-logout {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.6rem 1.2rem;
background: transparent;
color: var(--danger);
border: 1px solid var(--danger);
border-radius: var(--radius-m);
cursor: pointer;
transition: all 0.2s;
font-weight: 500;
}
.btn-logout:hover {
background: var(--danger);
color: #fff;
}
.admin-controls {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
@media (max-width: 768px) {
.admin-controls {
grid-template-columns: 1fr;
}
}
.control-card {
padding: 1.5rem;
}
.control-card h3 {
margin: 0 0 1.5rem 0;
font-family: 'Sora', sans-serif;
}
.lock-toggles {
display: flex;
flex-direction: column;
gap: 1rem;
}
.toggle-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 1rem;
border-radius: var(--radius-m);
border: none;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
}
.toggle-btn.unlocked {
background: var(--success);
color: #000;
}
.toggle-btn.locked {
background: var(--danger);
color: #fff;
}
.bulk-add-form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.bulk-add-form input,
.bulk-add-form textarea {
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--panel-border);
padding: 0.8rem;
border-radius: var(--radius-m);
color: var(--text);
}
.btn-primary {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
background: var(--teal);
color: var(--bg);
padding: 0.8rem;
border: none;
border-radius: var(--radius-m);
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
}
.btn-primary:hover {
background: #25d9ff;
}
.bulk-actions {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 1.5rem;
background: rgba(255, 95, 105, 0.1);
border-color: var(--danger);
}
.btn-danger {
display: flex;
align-items: center;
gap: 0.5rem;
background: var(--danger);
color: #fff;
border: none;
padding: 0.6rem 1.2rem;
border-radius: var(--radius-m);
cursor: pointer;
}
.admin-tables {
display: flex;
flex-direction: column;
gap: 2rem;
}
.admin-table-panel {
padding: 0;
overflow: hidden;
}
.table-header-flex {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem;
border-bottom: 1px solid var(--panel-border);
background: rgba(0, 0, 0, 0.2);
}
.table-title {
margin: 0;
font-family: 'Sora', sans-serif;
color: var(--teal);
}
.btn-icon.add-to-cat {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.85rem;
font-weight: 500;
background: rgba(255, 255, 255, 0.05);
padding: 0.4rem 0.8rem;
}
.btn-icon.add-to-cat:hover {
background: var(--teal-soft);
color: var(--teal);
}
.admin-table {
width: 100%;
border-collapse: collapse;
}
.admin-table th,
.admin-table td {
padding: 1rem 1.5rem;
text-align: left;
border-bottom: 1px solid var(--panel-border);
}
.admin-table th {
background: rgba(255, 255, 255, 0.02);
color: var(--text-muted);
font-weight: 500;
}
.admin-table tr:hover td {
background: rgba(255, 255, 255, 0.02);
}
.vote-badge {
background: var(--teal-soft);
color: var(--teal);
padding: 0.2rem 0.6rem;
border-radius: 12px;
font-weight: 600;
}
.edit-input {
width: 60px;
background: rgba(0,0,0,0.3);
border: 1px solid var(--teal);
color: var(--text);
padding: 0.3rem;
border-radius: 4px;
}
.action-buttons {
display: flex;
gap: 0.5rem;
}
.btn-icon {
background: transparent;
border: none;
cursor: pointer;
padding: 0.4rem;
border-radius: 4px;
color: var(--text-muted);
transition: all 0.2s;
}
.btn-icon.edit:hover {
color: var(--teal);
background: var(--teal-soft);
}
.btn-icon.delete:hover {
color: var(--danger);
background: rgba(255, 95, 105, 0.2);
}
.btn-icon.save {
color: var(--success);
background: rgba(85, 231, 131, 0.1);
padding: 0.4rem 0.8rem;
font-size: 0.85rem;
}
+338
View File
@@ -0,0 +1,338 @@
import { useEffect, useState, useMemo } from 'react';
import { api } from '../../api';
import type { VoteOption } from '../../types';
import { ConfirmDialog } from '../../components/ConfirmDialog';
import { Header } from '../../components/Header';
import { Trash2, Edit2, Lock, Unlock, Plus } from 'lucide-react';
import './Admin.css';
export default function AdminPage() {
const [options, setOptions] = useState<VoteOption[]>([]);
const [voteLocked, setVoteLocked] = useState(false);
const [resultLocked, setResultLocked] = useState(false);
const [loading, setLoading] = useState(true);
const [username, setUsername] = useState<string | null>(null);
// Confirm Dialog State
const [dialog, setDialog] = useState<{ isOpen: boolean; title: string; message: string; action: () => void }>({
isOpen: false, title: '', message: '', action: () => {}
});
// Bulk Add State
const [bulkCategory, setBulkCategory] = useState('');
const [bulkNames, setBulkNames] = useState('');
// Bulk Delete State
const [selectedIds, setSelectedIds] = useState<Set<string>>(new Set());
// Edit State
const [editId, setEditId] = useState<string | null>(null);
const [editVotes, setEditVotes] = useState<number>(0);
// Filter & Sort State
const [nameFilter, setNameFilter] = useState('');
const [sortBy, setSortBy] = useState<'votes_desc' | 'votes_asc' | 'name_asc' | 'name_desc'>('votes_desc');
const handleSort = (field: 'votes' | 'name') => {
if (field === 'votes') {
setSortBy(prev => prev === 'votes_desc' ? 'votes_asc' : 'votes_desc');
} else {
setSortBy(prev => prev === 'name_asc' ? 'name_desc' : 'name_asc');
}
};
const loadData = async () => {
try {
const opts = await api.getResults();
const vLocked = await api.getVoteLocked();
const rLocked = await api.getResultLocked();
const user = await api.getUser();
setOptions(opts);
setVoteLocked(vLocked);
setResultLocked(rLocked);
setUsername(user);
} catch (err) {
console.error(err);
alert('Fehler beim Laden der Admin-Daten. Möglicherweise nicht authentifiziert.');
} finally {
setLoading(false);
}
};
useEffect(() => {
document.title = 'Admin - Outfit-Voting Abi26';
loadData();
}, []);
const openDialog = (title: string, message: string, action: () => void) => {
setDialog({ isOpen: true, title, message, action });
};
const closeDialog = () => setDialog({ ...dialog, isOpen: false });
const toggleVoteLock = () => {
openDialog(
voteLocked ? "Voting entsperren?" : "Voting sperren?",
voteLocked ? "Das Voting wird für alle Nutzer geöffnet." : "Das Voting wird gesperrt und niemand kann mehr abstimmen.",
async () => {
await api.setVoteLocked(!voteLocked);
setVoteLocked(!voteLocked);
closeDialog();
}
);
};
const toggleResultLock = () => {
openDialog(
resultLocked ? "Ergebnisse entsperren?" : "Ergebnisse sperren?",
resultLocked ? "Die Ergebnisse werden für alle sichtbar." : "Die Ergebnisse werden für die Öffentlichkeit gesperrt.",
async () => {
await api.setResultLocked(!resultLocked);
setResultLocked(!resultLocked);
closeDialog();
}
);
};
const handleLogout = async () => {
await api.logout();
window.location.href = '/';
};
const handleBulkAdd = async () => {
if (!bulkCategory.trim() || !bulkNames.trim()) return;
const names = bulkNames.split('\n').map(n => n.trim()).filter(n => n.length > 0);
if (names.length === 0) return;
for (const name of names) {
await api.addVoteEntry(name, bulkCategory);
}
setBulkNames('');
setBulkCategory('');
loadData();
};
const handleBulkDelete = async () => {
if (selectedIds.size === 0) return;
openDialog(
"Ausgewählte Einträge löschen?",
`Möchtest du wirklich ${selectedIds.size} Einträge löschen?`,
async () => {
await api.bulkDeleteVoteEntries(Array.from(selectedIds));
setSelectedIds(new Set());
loadData();
closeDialog();
}
);
};
const handleDelete = (id: string) => {
openDialog("Eintrag löschen?", "Dieser Eintrag wird unwiderruflich gelöscht.", async () => {
await api.deleteVoteEntry(id);
loadData();
closeDialog();
});
};
const saveEdit = async (id: string) => {
await api.setVoteCount(id, editVotes);
setEditId(null);
loadData();
};
const toggleSelect = (id: string) => {
const next = new Set(selectedIds);
if (next.has(id)) next.delete(id);
else next.add(id);
setSelectedIds(next);
};
const categories = useMemo(() => {
const cats = new Set<string>();
options.forEach(o => cats.add(o.Category));
return Array.from(cats).sort();
}, [options]);
if (loading) return <div className="voting-loading">Laden...</div>;
return (
<>
<Header showAdminControls={true} username={username} onLogout={handleLogout} />
<div className="admin-page">
<div className="admin-header panel">
<h2>Admin Dashboard</h2>
</div>
<div className="admin-controls">
<div className="control-card panel">
<h3>Sperren & Freigaben</h3>
<div className="lock-toggles">
<button className={`toggle-btn ${voteLocked ? 'locked' : 'unlocked'}`} onClick={toggleVoteLock}>
{voteLocked ? <Lock size={18} /> : <Unlock size={18} />}
Voting {voteLocked ? 'Gesperrt' : 'Aktiv'}
</button>
<button className={`toggle-btn ${resultLocked ? 'locked' : 'unlocked'}`} onClick={toggleResultLock}>
{resultLocked ? <Lock size={18} /> : <Unlock size={18} />}
Ergebnisse {resultLocked ? 'Gesperrt' : 'Sichtbar'}
</button>
</div>
</div>
<div className="control-card panel">
<h3>Einträge hinzufügen (Bulk)</h3>
<div className="bulk-add-form">
<input
type="text"
placeholder="Kategorie (z.B. King & Queen)"
value={bulkCategory}
onChange={e => setBulkCategory(e.target.value)}
list="category-list"
/>
<datalist id="category-list">
{categories.map(c => <option key={c} value={c} />)}
</datalist>
<textarea
id="bulkNames"
placeholder="Namen (einer pro Zeile)"
value={bulkNames}
onChange={e => setBulkNames(e.target.value)}
rows={3}
/>
<button className="btn-primary" onClick={handleBulkAdd}>
<Plus size={18} /> Hinzufügen
</button>
</div>
</div>
</div>
{selectedIds.size > 0 && (
<div className="bulk-actions panel">
<span>{selectedIds.size} Einträge ausgewählt</span>
<button className="btn-danger" onClick={handleBulkDelete}>
<Trash2 size={18} /> Ausgewählte Löschen
</button>
</div>
)}
<div className="admin-tables">
{categories.map(cat => {
const catOptions = options
.filter(o => o.Category === cat)
.filter(o => o.Name.toLowerCase().includes(nameFilter.toLowerCase()))
.sort((a, b) => {
if (sortBy === 'votes_desc') {
return b.Votes - a.Votes || a.Name.localeCompare(b.Name);
} else if (sortBy === 'votes_asc') {
return a.Votes - b.Votes || a.Name.localeCompare(b.Name);
} else if (sortBy === 'name_asc') {
return a.Name.localeCompare(b.Name);
} else {
return b.Name.localeCompare(a.Name);
}
});
return (
<div key={cat} className="admin-table-panel panel">
<div className="table-header-flex">
<div style={{ display: 'flex', alignItems: 'center', gap: '1rem' }}>
<h3 className="table-title">{cat}</h3>
<input
type="text"
placeholder="Filtern..."
value={nameFilter}
onChange={e => setNameFilter(e.target.value)}
style={{ padding: '0.4rem 0.8rem', borderRadius: 'var(--radius-m)', background: 'rgba(255,255,255,0.05)', border: '1px solid var(--panel-border)', fontSize: '0.9rem', width: '160px' }}
/>
</div>
<button className="btn-icon add-to-cat" onClick={() => {
setBulkCategory(cat);
window.scrollTo({ top: 0, behavior: 'smooth' });
setTimeout(() => document.getElementById('bulkNames')?.focus(), 300);
}}>
<Plus size={16} /> Hier hinzufügen
</button>
</div>
<table className="admin-table">
<thead>
<tr>
<th style={{ width: '40px' }}></th>
<th
style={{ cursor: 'pointer', userSelect: 'none', whiteSpace: 'nowrap' }}
onClick={() => handleSort('name')}
>
Name {sortBy.startsWith('name') && (sortBy === 'name_asc' ? '↑' : '↓')}
</th>
<th
style={{ width: '100px', cursor: 'pointer', userSelect: 'none', whiteSpace: 'nowrap' }}
onClick={() => handleSort('votes')}
>
Stimmen {sortBy.startsWith('votes') && (sortBy === 'votes_asc' ? '↑' : '↓')}
</th>
<th style={{ width: '120px' }}>Aktionen</th>
</tr>
</thead>
<tbody>
{catOptions.length === 0 && (
<tr>
<td colSpan={4} style={{ textAlign: 'center', padding: '2rem', color: 'var(--text-muted)' }}>
Keine Einträge gefunden.
</td>
</tr>
)}
{catOptions.map(o => (
<tr key={o.ID}>
<td>
<input
type="checkbox"
checked={selectedIds.has(o.ID)}
onChange={() => toggleSelect(o.ID)}
/>
</td>
<td>{o.Name}</td>
<td>
{editId === o.ID ? (
<input
type="number"
className="edit-input"
value={editVotes}
onChange={e => setEditVotes(Number(e.target.value))}
/>
) : (
<span className="vote-badge">{o.Votes}</span>
)}
</td>
<td>
<div className="action-buttons">
{editId === o.ID ? (
<button className="btn-icon save" onClick={() => saveEdit(o.ID)}>Speichern</button>
) : (
<button className="btn-icon edit" onClick={() => { setEditId(o.ID); setEditVotes(o.Votes); }}>
<Edit2 size={16} />
</button>
)}
<button className="btn-icon delete" onClick={() => handleDelete(o.ID)}>
<Trash2 size={16} />
</button>
</div>
</td>
</tr>
))}
</tbody>
</table>
</div>
);
})}
</div>
<ConfirmDialog
isOpen={dialog.isOpen}
title={dialog.title}
message={dialog.message}
onConfirm={() => { dialog.action(); closeDialog(); }}
onCancel={closeDialog}
/>
</div>
</>
);
}
+45
View File
@@ -0,0 +1,45 @@
.result-page {
flex: 1;
display: flex;
flex-direction: column;
}
.result-list {
display: flex;
flex-direction: column;
gap: 0.8rem;
margin-top: 1rem;
}
.result-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.8rem 1rem;
background: rgba(255, 255, 255, 0.03);
border-radius: var(--radius-m);
transition: background 0.2s ease;
}
.result-item:hover {
background: rgba(255, 255, 255, 0.06);
}
.result-rank {
font-family: 'Sora', sans-serif;
color: var(--teal);
font-weight: 600;
font-size: 1.1rem;
min-width: 2rem;
}
.result-name {
font-weight: 500;
font-size: 1.05rem;
}
.no-data {
text-align: center;
color: var(--text-muted);
padding: 1rem;
}
+82
View File
@@ -0,0 +1,82 @@
import { useEffect, useState, useMemo } from 'react';
import { api } from '../../api';
import type { VoteResult } from '../../types';
import { LockScreen } from '../../components/LockScreen';
import { Header } from '../../components/Header';
import './Result.css';
export default function ResultPage() {
const [locked, setLocked] = useState(false);
const [loading, setLoading] = useState(true);
const [results, setResults] = useState<VoteResult[]>([]);
useEffect(() => {
document.title = 'Ergebnisse - Outfit-Voting Abi26';
const fetchData = async () => {
try {
const isLocked = await api.getResultLocked();
setLocked(isLocked);
if (!isLocked) {
const res = await api.getResults();
setResults(res);
}
} catch (err) {
console.error(err);
setLocked(true);
} finally {
setLoading(false);
}
};
fetchData();
}, []);
const categories = useMemo(() => {
const cats = new Set<string>();
results.forEach(r => cats.add(r.Category));
return Array.from(cats).sort();
}, [results]);
if (loading) return <div className="voting-loading">Laden...</div>;
if (locked) {
return (
<>
<Header />
<LockScreen message="Ergebnisse sind derzeit gesperrt und werden noch nicht veröffentlicht." />
</>
);
}
return (
<>
<Header />
<div className="result-page">
<h1 className="page-title">Top Ergebnisse</h1>
<p className="page-subtitle">Die Top 5 in jeder Kategorie.</p>
<div className="categories-grid">
{categories.map(cat => {
const catResults = results
.filter(r => r.Category === cat)
.sort((a, b) => b.Votes - a.Votes || a.Name.localeCompare(b.Name))
.slice(0, 5);
return (
<div key={cat} className="category-card panel">
<h3 className="category-title">{cat}</h3>
<div className="result-list">
{catResults.map((r, i) => (
<div key={r.ID} className="result-item">
<span className="result-rank">#{i + 1}</span>
<span className="result-name">{r.Name}</span>
</div>
))}
{catResults.length === 0 && <div className="no-data">Keine Daten bisher</div>}
</div>
</div>
);
})}
</div>
</div>
</>
);
}
+85
View File
@@ -0,0 +1,85 @@
.voting-page {
flex: 1;
display: flex;
flex-direction: column;
}
.logo-container {
display: flex;
justify-content: center;
margin-bottom: 1rem;
}
.app-logo {
max-width: 280px;
width: 100%;
height: auto;
filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}
.voting-loading {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
color: var(--text-muted);
}
.page-title {
font-family: 'Sora', sans-serif;
font-size: 1.8rem;
margin: 0 0 0.5rem 0;
text-align: center;
background: linear-gradient(135deg, #fff, var(--teal));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.page-subtitle {
text-align: center;
color: var(--text-muted);
margin: 0 0 3rem 0;
font-size: 1.1rem;
}
.category-content {
display: flex;
flex-direction: column;
gap: 1rem;
flex: 1;
justify-content: space-between;
}
.submit-btn {
padding: 0.8rem;
border-radius: var(--radius-m);
border: none;
font-weight: 600;
background: var(--teal);
color: var(--bg);
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.submit-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.submit-btn:not(:disabled):hover {
background: #25d9ff;
box-shadow: 0 4px 15px var(--teal-soft);
transform: translateY(-1px);
}
.submit-btn.submitted {
background: var(--success);
color: #000;
opacity: 0.9;
}
+145
View File
@@ -0,0 +1,145 @@
import { useEffect, useState, useMemo } from 'react';
import { api } from '../../api';
import type { VoteOption } from '../../types';
import { LockScreen } from '../../components/LockScreen';
import { SearchableSelect } from '../../components/SearchableSelect';
import { Header } from '../../components/Header';
import { Check } from 'lucide-react';
import './Voting.css';
export default function VotingPage() {
const [locked, setLocked] = useState<boolean>(false);
const [loading, setLoading] = useState(true);
const [options, setOptions] = useState<VoteOption[]>([]);
const [selections, setSelections] = useState<Record<string, string>>({});
const [submitted, setSubmitted] = useState<Record<string, boolean>>({});
useEffect(() => {
document.title = 'Abstimmen - Outfit-Voting Abi26';
// Load submitted state from local storage
try {
const stored = localStorage.getItem('abiball_votes');
if (stored) {
const parsed = JSON.parse(stored);
const newSubmitted: Record<string, boolean> = {};
const newSelected: Record<string, string> = {};
Object.entries(parsed).forEach(([cat, val]) => {
newSubmitted[cat] = true;
if (typeof val === 'string') {
newSelected[cat] = val;
}
});
setSubmitted(newSubmitted);
setSelections(newSelected);
}
} catch (e) {
console.error('Failed to parse local storage', e);
}
const fetchData = async () => {
try {
const isLocked = await api.getVoteLocked();
setLocked(isLocked);
if (!isLocked) {
const opts = await api.getVoteOptions();
setOptions(opts);
}
} catch (err) {
console.error(err);
// Fallback lock if auth error or explicitly locked
setLocked(true);
} finally {
setLoading(false);
}
};
fetchData();
}, []);
const categories = useMemo(() => {
const cats = new Set<string>();
options.forEach(o => cats.add(o.Category));
return Array.from(cats).sort();
}, [options]);
const handleSubmit = async (category: string) => {
const optionId = selections[category];
if (!optionId) return;
try {
await api.incVote(optionId);
const newSubmitted = { ...submitted, [category]: true };
const newSelected = { ...selections, [category]: optionId };
setSubmitted(newSubmitted);
setSelections(newSelected);
localStorage.setItem('abiball_votes', JSON.stringify(newSelected));
} catch (err) {
console.error('Failed to submit vote', err);
alert('Fehler beim Abstimmen. Bitte versuche es später erneut.');
}
};
if (loading) {
return <div className="voting-loading">Laden...</div>;
}
if (locked) {
return (
<>
<Header showResultsLink={true} />
<LockScreen message="Das Voting ist derzeit nicht aktiv oder die Stimmen werden gerade gezählt." />
</>
);
}
return (
<>
<Header showResultsLink={true} />
<div className="voting-page">
<h1 className="page-title">Outfit Voting</h1>
<p className="page-subtitle">Wähle deine Favoriten in jeder Kategorie.</p>
<div className="categories-grid">
{categories.map(cat => {
const catOptions = options
.filter(o => o.Category === cat)
.map(o => ({ value: o.ID, label: o.Name }));
const isSubmitted = submitted[cat];
return (
<div key={cat} className="category-card panel">
<h3 className="category-title">{cat}</h3>
<div className="category-content">
<>
<SearchableSelect
options={catOptions}
value={selections[cat] || ''}
onChange={(val) => !isSubmitted && setSelections(prev => ({ ...prev, [cat]: val }))}
disabled={isSubmitted}
/>
<button
className={`submit-btn ${isSubmitted ? 'submitted' : ''}`}
disabled={!selections[cat] || isSubmitted}
onClick={() => handleSubmit(cat)}
>
{isSubmitted ? (
<><Check size={18} /> Abgestimmt</>
) : (
'Abstimmen'
)}
</button>
</>
</div>
</div>
);
})}
</div>
</div>
</>
);
}
+13
View File
@@ -0,0 +1,13 @@
export interface VoteOption {
ID: string;
Name: string;
Category: string;
Votes: number;
}
export interface VoteResult {
ID: string;
Name: string;
Category: string;
Votes: number;
}
+25
View File
@@ -0,0 +1,25 @@
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "es2023",
"lib": ["ES2023", "DOM"],
"module": "esnext",
"types": ["vite/client"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
}
+7
View File
@@ -0,0 +1,7 @@
{
"files": [],
"references": [
{ "path": "./tsconfig.app.json" },
{ "path": "./tsconfig.node.json" }
]
}
+23
View File
@@ -0,0 +1,23 @@
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "es2023",
"lib": ["ES2023"],
"types": ["node"],
"skipLibCheck": true,
/* Bundler mode */
"module": "nodenext",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true
},
"include": ["vite.config.ts"]
}
+23
View File
@@ -0,0 +1,23 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api': {
target: 'http://localhost:4000',
changeOrigin: true,
},
'/auth': {
target: 'http://localhost:4000',
changeOrigin: true,
},
'/admin': {
target: 'http://localhost:4000',
changeOrigin: true,
}
}
}
})
+8
View File
@@ -1,3 +1,11 @@
module tomatentum.net/outfit-voting-abi26 module tomatentum.net/outfit-voting-abi26
go 1.25.5 go 1.25.5
require (
github.com/coreos/go-oidc/v3 v3.19.0 // indirect
github.com/go-jose/go-jose/v4 v4.1.4 // indirect
github.com/golang-jwt/jwt/v5 v5.3.1 // indirect
github.com/lib/pq v1.12.3 // indirect
golang.org/x/oauth2 v0.36.0 // indirect
)
+14
View File
@@ -0,0 +1,14 @@
github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE=
github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
github.com/coocood/freecache v1.2.7 h1:IDP0x1Yg8sgRmsSWzFyhaB+amYJpKS7v5QIXNHxXvM8=
github.com/coocood/freecache v1.2.7/go.mod h1:+Ga2+A5/0D6MMistGuoeKZaZucAGZ56u+fYKiY+xqNA=
github.com/coreos/go-oidc/v3 v3.19.0 h1:F/xyOi3x1UnG1U27YVnM1N6bHiL1K2upi6U/0qr8r+I=
github.com/coreos/go-oidc/v3 v3.19.0/go.mod h1:DYCf24+ncYi+XkIH97GY1+dqoRlbaSI26KVTCI9SrY4=
github.com/go-jose/go-jose/v4 v4.1.4 h1:moDMcTHmvE6Groj34emNPLs/qtYXRVcd6S7NHbHz3kA=
github.com/go-jose/go-jose/v4 v4.1.4/go.mod h1:x4oUasVrzR7071A4TnHLGSPpNOm2a21K9Kf04k1rs08=
github.com/golang-jwt/jwt/v5 v5.3.1 h1:kYf81DTWFe7t+1VvL7eS+jKFVWaUnK9cB1qbwn63YCY=
github.com/golang-jwt/jwt/v5 v5.3.1/go.mod h1:fxCRLWMO43lRc8nhHWY6LGqRcf+1gQWArsqaEUEa5bE=
github.com/lib/pq v1.12.3 h1:tTWxr2YLKwIvK90ZXEw8GP7UFHtcbTtty8zsI+YjrfQ=
github.com/lib/pq v1.12.3/go.mod h1:/p+8NSbOcwzAEI7wiMXFlgydTwcgTr3OSKMsD2BitpA=
golang.org/x/oauth2 v0.36.0 h1:peZ/1z27fi9hUOFCAZaHyrpWG5lwe0RJEEEeH0ThlIs=
golang.org/x/oauth2 v0.36.0/go.mod h1:YDBUJMTkDnJS+A4BP4eZBjCqtokkg1hODuPjwiGPO7Q=
+54
View File
@@ -0,0 +1,54 @@
package auth
import (
"time"
"github.com/golang-jwt/jwt/v5"
)
var signingkey []byte
type JWTClaims struct {
User string `json:"user"`
jwt.RegisteredClaims
}
func SetSigningKey(key string) {
signingkey = []byte(key)
}
func NewJWT(user string) (string, error) {
claims := JWTClaims{
user,
jwt.RegisteredClaims{
ExpiresAt: jwt.NewNumericDate(time.Now().Add(15 * time.Minute)), // Expires in 24 hours
IssuedAt: jwt.NewNumericDate(time.Now()),
Issuer: "outfit-voting-abi26",
},
}
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
return token.SignedString(signingkey)
}
func ValidateJWT(token string) (string, error) {
claims := &JWTClaims{}
parsed, err := jwt.ParseWithClaims(token, claims, func(t *jwt.Token) (any, error) {
if _, ok := t.Method.(*jwt.SigningMethodHMAC); !ok {
return nil, jwt.ErrSignatureInvalid
}
return signingkey, nil
})
if err != nil {
return "", err
}
claims, ok := parsed.Claims.(*JWTClaims)
if !ok {
return "", jwt.ErrTokenInvalidClaims
}
return claims.User, nil
}
+137
View File
@@ -0,0 +1,137 @@
package auth
import (
"context"
"errors"
"log"
"net/http"
"net/url"
"slices"
"time"
"github.com/coreos/go-oidc/v3/oidc"
"golang.org/x/oauth2"
"tomatentum.net/outfit-voting-abi26/internal/util"
)
var (
provider *oidc.Provider
verifier *oidc.IDTokenVerifier
config oauth2.Config
ctx context.Context
authCookie string = "outfit-voting-abi26-auth"
)
func IssuerBaseURL() string {
urlstring := provider.Endpoint().AuthURL
url, err := url.Parse(urlstring)
if err != nil {
return ""
}
url.Path = "/"
return url.String()
}
func InitProvider(issuer, id, secret, redirect string) error {
ctx = context.Background()
var err error
provider, err = oidc.NewProvider(ctx, issuer)
if err != nil {
return err
}
verifier = provider.Verifier(&oidc.Config{
ClientID: id,
})
config = oauth2.Config{
ClientID: id,
ClientSecret: secret,
Endpoint: provider.Endpoint(),
RedirectURL: redirect,
Scopes: []string{oidc.ScopeOpenID, "profile", "email"},
}
return nil
}
func GetToken(code string) (*oidc.IDToken, error) {
token, err := config.Exchange(ctx, code)
if err != nil {
return &oidc.IDToken{}, err
}
rawToken, ok := token.Extra("id_token").(string)
if !ok {
return &oidc.IDToken{}, errors.New("id_token missing")
}
return verifier.Verify(ctx, rawToken)
}
func Redirect(w http.ResponseWriter, r *http.Request) {
state, nonce := setCookies(w, r)
AddRedirect(state, r.RequestURI)
url := config.AuthCodeURL(state, oidc.Nonce(nonce))
http.Redirect(w, r, url, http.StatusFound)
}
func CheckState(r *http.Request) error {
cookie, err := r.Cookie("state")
if err != nil {
return errors.Join(err, errors.New("State not found"))
}
log.Printf("DEBUG: statecookie: %s, statequery: %s\n", cookie.Value, r.URL.Query().Get("state"))
if r.URL.Query().Get("state") != cookie.Value {
return errors.New("State did not match")
}
return nil
}
func CheckNonce(r *http.Request, idtoken *oidc.IDToken) error {
cookie, err := r.Cookie("nonce")
if err != nil {
return errors.Join(err, errors.New("Nonce not found"))
}
if idtoken.Nonce != cookie.Value {
return errors.New("Nonce did not match")
}
return nil
}
func CheckAudience(idtoken *oidc.IDToken) error {
if !slices.Contains(idtoken.Audience, config.ClientID) {
return errors.New("Audience does not match")
}
return nil
}
func setCookies(w http.ResponseWriter, r *http.Request) (state, nonce string) {
state, err := util.RandString(16)
if err != nil {
http.Error(w, "Internal error", http.StatusInternalServerError)
return
}
nonce, err = util.RandString(16)
if err != nil {
http.Error(w, "Internal error", http.StatusInternalServerError)
return
}
setCallbackCookie(w, r, "state", state)
setCallbackCookie(w, r, "nonce", nonce)
return state, nonce
}
func setCallbackCookie(w http.ResponseWriter, r *http.Request, name, value string) {
c := &http.Cookie{
Name: name,
Value: value,
MaxAge: int(time.Hour.Seconds()),
Secure: r.TLS != nil,
HttpOnly: true,
}
http.SetCookie(w, c)
}
+22
View File
@@ -0,0 +1,22 @@
package auth
import (
"sync"
)
var callbackRedirectMap map[string]string = make(map[string]string, 5)
var callbackRedirectMutex sync.Mutex
func AddRedirect(state, url string) {
callbackRedirectMutex.Lock()
callbackRedirectMap[state] = url
callbackRedirectMutex.Unlock()
}
func GetRedirect(state string) string {
callbackRedirectMutex.Lock()
redirect := callbackRedirectMap[state]
delete(callbackRedirectMap, state)
callbackRedirectMutex.Unlock()
return redirect
}
+133
View File
@@ -0,0 +1,133 @@
package auth
import (
"log"
"net/http"
"net/url"
"strings"
"time"
)
func IsAuth(r *http.Request) (bool, error) {
jwt, err := getAuthToken(r)
if err != nil {
return false, err
}
_, err = ValidateJWT(jwt)
if err != nil {
return false, err
}
return true, nil
}
func LogoutEndpoint(w http.ResponseWriter, r *http.Request) {
setAuthCookie(w, r, "")
http.Redirect(w, r, "/", http.StatusSeeOther)
}
func AuthMiddleware(next http.HandlerFunc) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
jwt, err := getAuthToken(r)
if err != nil {
log.Println("Error during token retrieval", err)
Redirect(w, r)
return
}
user, err := ValidateJWT(jwt)
if err != nil {
log.Println("Error during authorization", err)
Redirect(w, r)
return
}
log.Printf("%s: Authorized user %s", r.URL.Path, user)
w.Header().Add("user", user)
next.ServeHTTP(w, r)
})
}
func CallbackHandler(mux *http.ServeMux) {
url, err := url.Parse(config.RedirectURL)
if err != nil {
log.Fatalf("Invalid Redirect URL Submitted: %s\n", config.RedirectURL)
}
mux.HandleFunc(url.Path, func(w http.ResponseWriter, r *http.Request) {
if err := CheckState(r); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
code := r.URL.Query().Get("code")
idtoken, err := GetToken(code)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
if err := CheckAudience(idtoken); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
if err := CheckNonce(r, idtoken); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
var UsernameClaim struct {
PreferredUsername string `json:"preferred_username"`
}
if err := idtoken.Claims(&UsernameClaim); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
jwt, err := NewJWT(UsernameClaim.PreferredUsername)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
setAuthCookie(w, r, jwt)
redirect := GetRedirect(r.URL.Query().Get("state"))
log.Printf("DEBUG: REDIRECT %s\n", redirect)
http.Redirect(w, r, redirect, http.StatusFound)
})
}
func setAuthCookie(w http.ResponseWriter, r *http.Request, jwt string) {
c := &http.Cookie{
Name: authCookie,
Value: jwt,
MaxAge: int(time.Hour.Seconds()),
Secure: r.TLS != nil,
Path: "/",
HttpOnly: true,
}
http.SetCookie(w, c)
}
func getAuthToken(r *http.Request) (string, error) {
header := strings.Split(r.Header.Get("Authorization"), " ")
if len(header) > 1 {
token := header[1]
if len(strings.TrimSpace(token)) > 0 {
log.Printf("Got Auth Header %s\n", header[1])
return token, nil
}
}
cookie, err := r.Cookie(authCookie)
if err != nil {
return "", err
}
return cookie.Value, nil
}
+45
View File
@@ -0,0 +1,45 @@
package internal
import (
"sync"
"time"
)
type CacheItem[T any] struct {
item T
imutex sync.Mutex
expiry time.Time
TTLSeconds uint
FetchFunc func() (T, error)
}
func (c *CacheItem[T]) Get() (T, error) {
c.imutex.Lock()
defer c.imutex.Unlock()
if !c.expiry.After(time.Now()) {
c.expiry = time.Now().Add(time.Duration(c.TTLSeconds) * time.Second)
item, err := c.FetchFunc()
if err != nil {
return item, err
}
c.item = item
}
return c.item, nil
}
func (c *CacheItem[T]) Invalidate() {
c.imutex.Lock()
defer c.imutex.Unlock()
c.expiry = time.Now()
}
func NewCache[T any](fetchfunc func() (T, error), ttl uint) CacheItem[T] {
return CacheItem[T]{
TTLSeconds: ttl,
FetchFunc: fetchfunc,
}
}
+45
View File
@@ -0,0 +1,45 @@
package database
import (
"database/sql"
"log"
"time"
"github.com/lib/pq"
)
var db *sql.DB
func OpenDB(conf pq.Config) {
connector, err := pq.NewConnectorConfig(conf)
if err != nil {
panic(err)
}
db = sql.OpenDB(connector)
db.SetMaxOpenConns(500)
db.SetMaxIdleConns(50)
db.SetConnMaxLifetime(time.Hour)
if err := db.Ping(); err != nil {
panic(err)
}
log.Printf("Database opened to %s:%d, %s as %s!\n", conf.Host, conf.Port, conf.Database, conf.User)
if err := initStateDB(); err != nil {
panic(err)
}
if err := initVoteDB(); err != nil {
panic(err)
}
}
func CloseDB() {
if err := db.Close(); err != nil {
panic(err)
}
}
+87
View File
@@ -0,0 +1,87 @@
package database
import (
"strconv"
"tomatentum.net/outfit-voting-abi26/internal"
)
const INITSTATEDB string = "CREATE TABLE IF NOT EXISTS state(key varchar(255) PRIMARY KEY, value TEXT)"
const STATEINSERT string = "INSERT INTO state(key, value) VALUES ($1, $2) ON CONFLICT (key) DO NOTHING;"
const STATESET string = "UPDATE state SET value = $1 WHERE key = $2"
const STATEGET string = "SELECT value FROM state WHERE key = $1"
const KEYVOTELOCKED string = "votinglocked"
const KEYRESULTLOCKED string = "resultlocked"
var voteLocked internal.CacheItem[bool] = internal.NewCache(func() (bool, error) {
res := db.QueryRow(STATEGET, KEYVOTELOCKED)
var valuestring string
if err := res.Scan(&valuestring); err != nil {
return false, err
}
value, err := strconv.ParseBool(valuestring)
if err != nil {
return false, err
}
return value, nil
}, 30)
var resultLocked internal.CacheItem[bool] = internal.NewCache(func() (bool, error) {
res := db.QueryRow(STATEGET, KEYRESULTLOCKED)
var valuestring string
if err := res.Scan(&valuestring); err != nil {
return false, err
}
value, err := strconv.ParseBool(valuestring)
if err != nil {
return false, err
}
return value, nil
}, 30)
func initStateDB() error {
_, err := db.Exec(INITSTATEDB)
if err != nil {
return err
}
_, err = db.Exec(STATEINSERT, KEYVOTELOCKED, "true")
_, err = db.Exec(STATEINSERT, KEYRESULTLOCKED, "true")
if err != nil {
return err
}
return nil
}
func setState(key string, value string) error {
_, err := db.Exec(STATESET, value, key)
return err
}
func GetVoteLocked() (bool, error) {
return voteLocked.Get()
}
func GetResultLocked() (bool, error) {
return resultLocked.Get()
}
func SetVoteLocked(value bool) error {
voteLocked.Invalidate()
return setState(KEYVOTELOCKED, strconv.FormatBool(value))
}
func SetResultLocked(value bool) error {
resultLocked.Invalidate()
return setState(KEYRESULTLOCKED, strconv.FormatBool(value))
}
+201
View File
@@ -0,0 +1,201 @@
package database
import (
"errors"
"fmt"
"strings"
"tomatentum.net/outfit-voting-abi26/internal/util"
)
const VALUESTEMPLATE string = "(%s, %s, %s, %d)"
const INITVOTEDB string = "CREATE TABLE IF NOT EXISTS vote(id varchar(16) PRIMARY KEY, category TEXT NOT NULL, name TEXT NOT NULL, votes int NOT NULL)"
const INSERTVOTEENTRY string = "INSERT INTO vote(id, category, name, votes) VALUES($1, $2, $3, $4)"
const BULKINSERTVOTEENTRY string = "INSERT INTO vote(id, category, name, votes) VALUES"
const SETVOTE string = "UPDATE vote SET votes = $1 WHERE id = $2"
const INCVOTE string = "UPDATE vote SET votes = votes + 1 WHERE id = $1"
const DELVOTEENTRY string = "DELETE FROM vote WHERE id = $1"
const BULKDELVOTEENTRY string = "DELETE FROM vote WHERE key IN (%s)"
const GETVOTES string = "SELECT * FROM vote ORDER BY votes DESC"
const GETVOTEOPTIONS string = "SELECT id, category, name FROM vote"
const GETVOTE string = "SELECT * FROM vote WHERE id = $1"
type VoteEntry struct {
VoteOption
Votes int
}
type VoteOption struct {
ID string
Category string
Name string
}
func initVoteDB() error {
_, err := db.Exec(INITVOTEDB)
return err
}
func InsertVoteEntry(name string, category string) (VoteEntry, error) {
id, err := util.RandString(8)
if err != nil {
return VoteEntry{}, err
}
_, err = db.Exec(INSERTVOTEENTRY, id, category, name, 0)
if err != nil {
return VoteEntry{}, err
}
return VoteEntry{VoteOption{id, category, name}, 0}, nil
}
func BulkInsertVoteEntry(names []string, category string) (*[]VoteEntry, error) {
stmnt := BULKINSERTVOTEENTRY
var entries []VoteEntry = make([]VoteEntry, len(names))
for i, v := range names {
id, err := util.RandString(8)
if err != nil {
return nil, err
}
stmnt = stmnt + fmt.Sprintf(VALUESTEMPLATE, id, category, v, 0)
entries = append(entries, VoteEntry{VoteOption{id, category, v}, 0})
if i < len(names)-1 {
stmnt = stmnt + ","
}
}
stmnt = stmnt + ";"
_, err := db.Exec(stmnt)
if err != nil {
return nil, err
}
return &entries, nil
}
func SetVote(id string, votes int) error {
_, err := db.Exec(SETVOTE, votes, id)
if err != nil {
return err
}
return nil
}
func IncVote(id string) error {
res, err := db.Exec(INCVOTE, id)
if err != nil {
return err
}
n, _ := res.RowsAffected()
if n < 1 {
return errors.New("id does not exist")
}
return nil
}
func DelVoteEntry(id string) error {
res, err := db.Exec(DELVOTEENTRY, id)
if err != nil {
return err
}
n, _ := res.RowsAffected()
if n < 1 {
return errors.New("id does not exist")
}
return nil
}
func BulkDelVoteEntry(ids []string) error {
placeholders := make([]string, len(ids))
for i := 0; i < len(ids); i++ {
placeholders = append(placeholders, fmt.Sprintf("$%d", i))
}
res, err := db.Exec(fmt.Sprintf(BULKDELVOTEENTRY, strings.Join(placeholders, ", ")), ids)
if err != nil {
return err
}
n, _ := res.RowsAffected()
if n < 1 {
return errors.New("id does not exist")
}
return nil
}
func GetVotes() ([]VoteEntry, error) {
res, err := db.Query(GETVOTES)
if err != nil {
return nil, err
}
defer res.Close()
var current VoteEntry
var entries []VoteEntry = []VoteEntry{}
for res.Next() {
if err := res.Err(); err != nil {
return nil, err
}
if err := res.Scan(&current.ID, &current.Category, &current.Name, &current.Votes); err != nil {
return nil, err
}
entries = append(entries, current)
}
return entries, nil
}
func GetVoteOptions() ([]VoteOption, error) {
res, err := db.Query(GETVOTEOPTIONS)
if err != nil {
return nil, err
}
defer res.Close()
var current VoteOption
var entries []VoteOption = []VoteOption{}
for res.Next() {
if err := res.Err(); err != nil {
return nil, err
}
if err := res.Scan(&current.ID, &current.Category, &current.Name); err != nil {
return nil, err
}
entries = append(entries, current)
}
return entries, nil
}
func GetVote(id string) (VoteEntry, error) {
res := db.QueryRow(GETVOTE, id)
var current VoteEntry
if err := res.Scan(&current.ID, &current.Category, &current.Name, &current.Votes); err != nil {
return VoteEntry{}, err
}
return current, nil
}
+58
View File
@@ -0,0 +1,58 @@
package http
import (
"net/http"
assets "tomatentum.net/outfit-voting-abi26"
"tomatentum.net/outfit-voting-abi26/internal/auth"
"tomatentum.net/outfit-voting-abi26/internal/http/vote"
)
var mux *http.ServeMux = http.NewServeMux()
func Start(imprintURL string) error {
mux.HandleFunc("/api/auth/logout", auth.LogoutEndpoint)
mux.HandleFunc("GET /api/vote/locked", vote.VoteLockedEndpoint)
mux.HandleFunc("GET /api/result/locked", vote.ResultLockedEndpoint)
mux.Handle("PATCH /api/vote/locked", auth.AuthMiddleware(vote.SetVoteLockedEndpoint))
mux.Handle("PATCH /api/result/locked", auth.AuthMiddleware(vote.SetResultLockedEndpoint))
mux.Handle("GET /api/vote", vote.VoteLockMiddleware(vote.GetVoteOptionsEndpoint))
mux.Handle("GET /api/result", vote.ResultLockMiddleware(vote.GetVoteResultEndpoint))
mux.Handle("GET /api/result/{id}", vote.ResultLockMiddleware(vote.GetVoteResultSingleEndoint))
mux.Handle("PATCH /api/vote/{id}/override", auth.AuthMiddleware(vote.SetVoteEndpoint))
mux.Handle("PATCH /api/vote/{id}/inc", vote.VoteLockMiddleware(vote.IncVoteEndpoint))
mux.Handle("DELETE /api/vote/{id}", auth.AuthMiddleware(vote.DelVoteEntryEndpoint))
mux.Handle("DELETE /api/vote/bulk", auth.AuthMiddleware(vote.BulkDelVoteEntryEndpoint))
mux.Handle("POST /api/vote", auth.AuthMiddleware(vote.AddVoteEntryEndpoint))
mux.Handle("POST /api/vote/bulk", auth.AuthMiddleware(vote.BulkVoteEntryEndpoint))
mux.HandleFunc("/impressum", func(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, imprintURL, http.StatusFound)
})
mux.Handle("/", assets.HttpServer())
mux.Handle("/admin", auth.AuthMiddleware(assets.ServeIndex))
mux.HandleFunc("/result", assets.ServeIndex)
mux.HandleFunc("/account", func(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, auth.IssuerBaseURL(), http.StatusFound)
})
auth.CallbackHandler(mux)
return http.ListenAndServe(":4000", corsMiddleware(mux))
}
func corsMiddleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Access-Control-Allow-Origin", "*")
w.Header().Set("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS, PATCH")
w.Header().Set("Access-Control-Allow-Headers", "Content-Type, Authorization")
if r.Method == "OPTIONS" {
w.WriteHeader(http.StatusOK)
return
}
next.ServeHTTP(w, r)
})
}
+33
View File
@@ -0,0 +1,33 @@
package vote
import (
"encoding/json"
"net/http"
"tomatentum.net/outfit-voting-abi26/internal/database"
)
func GetVoteResultEndpoint(w http.ResponseWriter, r *http.Request) {
entries, err := database.GetVotes()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Header().Add("Content-Type", "application/json")
json.NewEncoder(w).Encode(entries)
}
func GetVoteResultSingleEndoint(w http.ResponseWriter, r *http.Request) {
id := r.PathValue("id")
entry, err := database.GetVote(id)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Header().Add("Content-Type", "application/json")
json.NewEncoder(w).Encode(entry)
}
+127
View File
@@ -0,0 +1,127 @@
package vote
import (
"encoding/json"
"net/http"
"tomatentum.net/outfit-voting-abi26/internal/database"
)
type SetVoteRequest struct {
Votes int
}
type AddVoteEntryRequest struct {
Name string
Category string
}
type BulkAddVoteEntryRequest struct {
Category string
names []string
}
func GetVoteOptionsEndpoint(w http.ResponseWriter, r *http.Request) {
entries, err := database.GetVoteOptions()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Header().Add("Content-Type", "application/json")
json.NewEncoder(w).Encode(entries)
}
func SetVoteEndpoint(w http.ResponseWriter, r *http.Request) {
id := r.PathValue("id")
var request SetVoteRequest
if err := json.NewDecoder(r.Body).Decode(&request); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
r.Body.Close()
if err := database.SetVote(id, request.Votes); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusOK)
}
func IncVoteEndpoint(w http.ResponseWriter, r *http.Request) {
id := r.PathValue("id")
if err := database.IncVote(id); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusOK)
}
func DelVoteEntryEndpoint(w http.ResponseWriter, r *http.Request) {
id := r.PathValue("id")
if err := database.DelVoteEntry(id); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusOK)
}
func BulkDelVoteEntryEndpoint(w http.ResponseWriter, r *http.Request) {
var ids []string
if err := json.NewDecoder(r.Body).Decode(&ids); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
r.Body.Close()
if err := database.BulkDelVoteEntry(ids); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusOK)
}
func AddVoteEntryEndpoint(w http.ResponseWriter, r *http.Request) {
var request AddVoteEntryRequest
if err := json.NewDecoder(r.Body).Decode(&request); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
r.Body.Close()
entry, err := database.InsertVoteEntry(request.Name, request.Category)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Header().Add("Content-Type", "application/json")
json.NewEncoder(w).Encode(entry)
}
func BulkVoteEntryEndpoint(w http.ResponseWriter, r *http.Request) {
var request BulkAddVoteEntryRequest
if err := json.NewDecoder(r.Body).Decode(&request); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
r.Body.Close()
entry, err := database.BulkInsertVoteEntry(request.names, request.Category)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Header().Add("Content-Type", "application/json")
json.NewEncoder(w).Encode(entry)
}
+124
View File
@@ -0,0 +1,124 @@
package vote
import (
"encoding/json"
"log"
"net/http"
"tomatentum.net/outfit-voting-abi26/internal/auth"
"tomatentum.net/outfit-voting-abi26/internal/database"
)
type StateChangeRequest struct {
Value bool
}
func SetVoteLockedEndpoint(w http.ResponseWriter, r *http.Request) {
var request StateChangeRequest
if err := json.NewDecoder(r.Body).Decode(&request); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
r.Body.Close()
if err := database.SetVoteLocked(request.Value); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
log.Printf("Updated Vote Lock state to %t\n", request.Value)
w.WriteHeader(http.StatusOK)
}
func SetResultLockedEndpoint(w http.ResponseWriter, r *http.Request) {
var request StateChangeRequest
if err := json.NewDecoder(r.Body).Decode(&request); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
r.Body.Close()
if err := database.SetResultLocked(request.Value); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
log.Printf("Updated Result Lock state to %t\n", request.Value)
w.WriteHeader(http.StatusOK)
}
func VoteLockedEndpoint(w http.ResponseWriter, r *http.Request) {
locked, err := database.GetVoteLocked()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Header().Add("Content-Type", "application/json")
json.NewEncoder(w).Encode(locked)
}
func ResultLockedEndpoint(w http.ResponseWriter, r *http.Request) {
locked, err := database.GetResultLocked()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Header().Add("Content-Type", "application/json")
json.NewEncoder(w).Encode(locked)
}
func VoteLockMiddleware(next http.HandlerFunc) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ok, err := auth.IsAuth(r)
if ok {
next.ServeHTTP(w, r)
return
}
log.Println("DEBUG: User not authenticated so vote lock is not bypassed", err)
locked, err := database.GetVoteLocked()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if locked {
w.WriteHeader(http.StatusLocked)
w.Write([]byte("Vote currently locked!"))
return
}
next.ServeHTTP(w, r)
})
}
func ResultLockMiddleware(next http.HandlerFunc) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ok, err := auth.IsAuth(r)
if ok {
next.ServeHTTP(w, r)
return
}
log.Println("DEBUG: User not authenticated so result lock is not bypassed", err)
locked, err := database.GetResultLocked()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if locked {
w.WriteHeader(http.StatusLocked)
w.Write([]byte("Results currently locked!"))
return
}
next.ServeHTTP(w, r)
})
}
+15
View File
@@ -0,0 +1,15 @@
package util
import (
"crypto/rand"
"encoding/base64"
"io"
)
func RandString(nByte int) (string, error) {
b := make([]byte, nByte)
if _, err := io.ReadFull(rand.Reader, b); err != nil {
return "", err
}
return base64.RawURLEncoding.EncodeToString(b), nil
}