mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-07-04 19:37:57 +02:00
create helpdesk tickets from form submission (#111)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
@@ -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}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user