create helpdesk tickets from form submission (#111)

This commit is contained in:
Will Freeman
2026-04-21 11:36:24 -06:00
committed by GitHub
parent deafac1a9e
commit c298a3f5d4
4 changed files with 137 additions and 1 deletions
+4
View File
@@ -0,0 +1,4 @@
ZAMMAD_URL=https://pigeon.deflock.org
GITHUB_TOKEN=
ZAMMAD_TOKEN=
TURNSTILE_SECRET_KEY=
+27 -1
View File
@@ -3,6 +3,8 @@ import Fastify, { FastifyInstance, FastifyError } from 'fastify';
import cors from '@fastify/cors';
import { NominatimClient, NominatimResultSchema } from './services/NominatimClient';
import { GithubClient, SponsorsResponseSchema } from './services/GithubClient';
import { TurnstileClient } from './services/TurnstileClient';
import { ZammadClient, ContactMessageBodySchema, ContactMessageBody } from './services/ZammadClient';
const start = async () => {
const server: FastifyInstance = Fastify({
@@ -51,11 +53,13 @@ const start = async () => {
cb(null, false);
}
},
methods: ['GET', 'HEAD'],
methods: ['GET', 'HEAD', 'POST'],
});
const nominatim = new NominatimClient();
const githubClient = new GithubClient();
const turnstileClient = new TurnstileClient();
const zammadClient = new ZammadClient();
const shutdown = async () => {
server.log.info("Shutting down");
@@ -131,6 +135,28 @@ const start = async () => {
return result;
});
server.post('/contact/message', {
schema: {
body: ContactMessageBodySchema,
response: {
201: { type: 'object', properties: {} },
400: { type: 'object', properties: { error: { type: 'string' } } },
500: { type: 'object', properties: { error: { type: 'string' } } },
},
},
}, async (request, reply) => {
const { name, email, topic, subject, message, turnstileToken } = request.body as ContactMessageBody;
const remoteIp = request.ip;
const valid = await turnstileClient.verify(turnstileToken, remoteIp);
if (!valid) {
return reply.status(400).send({ error: 'Invalid captcha' });
}
await zammadClient.createTicket({ name, email, topic, subject, message });
return reply.status(201).send({});
});
server.head('/healthcheck', async (request, reply) => {
reply.status(200).send();
});
+25
View File
@@ -0,0 +1,25 @@
const TURNSTILE_SECRET_KEY = process.env.TURNSTILE_SECRET_KEY || '';
const SITEVERIFY_URL = 'https://challenges.cloudflare.com/turnstile/v0/siteverify';
export class TurnstileClient {
async verify(token: string, remoteIp?: string): Promise<boolean> {
const body = new URLSearchParams({
secret: TURNSTILE_SECRET_KEY,
response: token,
...(remoteIp ? { remoteip: remoteIp } : {}),
});
const response = await fetch(SITEVERIFY_URL, {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: body.toString(),
});
if (!response.ok) {
throw new Error(`Turnstile siteverify request failed: ${response.status}`);
}
const json = await response.json() as { success: boolean };
return json.success === true;
}
}
+81
View File
@@ -0,0 +1,81 @@
import { Type, Static } from '@sinclair/typebox';
const ZAMMAD_URL = process.env.ZAMMAD_URL || '';
const ZAMMAD_TOKEN = process.env.ZAMMAD_TOKEN || '';
export type ContactTopic =
| 'website-support'
| 'app-support'
| 'local-groups'
| 'media'
| 'questions-comments';
export const ContactMessageBodySchema = Type.Object({
name: Type.String({ minLength: 1 }),
email: Type.String({ format: 'email' }),
topic: Type.Union([
Type.Literal('website-support'),
Type.Literal('app-support'),
Type.Literal('local-groups'),
Type.Literal('media'),
Type.Literal('questions-comments'),
]),
subject: Type.String({ minLength: 1 }),
message: Type.String({ minLength: 1 }),
turnstileToken: Type.String({ minLength: 1 }),
});
export type ContactMessageBody = Static<typeof ContactMessageBodySchema>;
const TOPIC_GROUP_MAP: Record<ContactTopic, string> = {
'website-support': 'Website Support',
'app-support': 'App Support',
'local-groups': 'Local Groups',
'media': 'Media',
'questions-comments': 'General Support',
};
export interface CreateTicketPayload {
name: string;
email: string;
topic: ContactTopic;
subject: string;
message: string;
}
export class ZammadClient {
async createTicket(payload: CreateTicketPayload): Promise<void> {
const { name, email, topic, subject, message } = payload;
const group = TOPIC_GROUP_MAP[topic];
const body = JSON.stringify({
title: subject,
group,
priority: topic === 'media' ? '3 high' : '2 normal',
customer: email,
article: {
subject,
body: message,
type: 'email',
sender: 'Customer',
from: `${name} <${email}>`,
to: 'contact@deflock.org',
internal: false,
},
});
const response = await fetch(`${ZAMMAD_URL}/api/v1/tickets`, {
method: 'POST',
headers: {
'Authorization': `Token token=${ZAMMAD_TOKEN}`,
'Content-Type': 'application/json',
},
body,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`Zammad ticket creation failed: ${response.status} ${text}`);
}
}
}