mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 03:06:41 +02:00
✨ feat(bot-services): add credit and gift services for Matrix bots
- Add CreditService with balance checking and consumption - Add GiftService for gift code creation and redemption - Add i18n support for credit/gift messages (DE/EN) - Add Matrix bot mixins for credit and gift commands
This commit is contained in:
parent
92c6dc83ee
commit
962b942e2a
17 changed files with 2057 additions and 0 deletions
304
packages/matrix-bot-common/src/credit/credit-commands.mixin.ts
Normal file
304
packages/matrix-bot-common/src/credit/credit-commands.mixin.ts
Normal file
|
|
@ -0,0 +1,304 @@
|
|||
import { CreditService, I18nService, SessionService, type CreditPackage } from '@manacore/bot-services';
|
||||
import { type MatrixRoomEvent } from '../base/types';
|
||||
|
||||
/**
|
||||
* Commands that the credit mixin handles
|
||||
*/
|
||||
export const CREDIT_COMMANDS = [
|
||||
'credits',
|
||||
'guthaben',
|
||||
'packages',
|
||||
'pakete',
|
||||
'buy',
|
||||
'kaufen',
|
||||
] as const;
|
||||
|
||||
export type CreditCommand = (typeof CREDIT_COMMANDS)[number];
|
||||
|
||||
/**
|
||||
* Check if a command is a credit command
|
||||
*/
|
||||
export function isCreditCommand(command: string): command is CreditCommand {
|
||||
return CREDIT_COMMANDS.includes(command.toLowerCase() as CreditCommand);
|
||||
}
|
||||
|
||||
/**
|
||||
* Interface for classes that can use the credit commands mixin
|
||||
*
|
||||
* Bots implementing this interface should expose their protected
|
||||
* sendMessage/sendReply methods via these wrapper methods.
|
||||
*/
|
||||
export interface CreditCommandsHost {
|
||||
creditService: CreditService;
|
||||
i18nService: I18nService;
|
||||
sessionService: SessionService;
|
||||
|
||||
/**
|
||||
* Send a message to a room (for credit notifications)
|
||||
*/
|
||||
sendCreditMessage(roomId: string, message: string): Promise<void>;
|
||||
|
||||
/**
|
||||
* Send a reply to an event (for credit commands)
|
||||
*/
|
||||
sendCreditReply(roomId: string, event: MatrixRoomEvent, message: string): Promise<void>;
|
||||
}
|
||||
|
||||
/**
|
||||
* Credit commands mixin for Matrix bots
|
||||
*
|
||||
* Provides handlers for credit-related commands:
|
||||
* - !credits / !guthaben - Show credit balance
|
||||
* - !packages / !pakete - Show available packages
|
||||
* - !buy N / !kaufen N - Purchase a package
|
||||
*
|
||||
* @example
|
||||
* ```typescript
|
||||
* // In your MatrixService class:
|
||||
*
|
||||
* @Injectable()
|
||||
* export class MatrixService extends BaseMatrixService implements CreditCommandsHost {
|
||||
* public creditService: CreditService;
|
||||
* public i18nService: I18nService;
|
||||
* public sessionService: SessionService;
|
||||
*
|
||||
* constructor(
|
||||
* configService: ConfigService,
|
||||
* creditService: CreditService,
|
||||
* i18nService: I18nService,
|
||||
* sessionService: SessionService,
|
||||
* ) {
|
||||
* super(configService);
|
||||
* this.creditService = creditService;
|
||||
* this.i18nService = i18nService;
|
||||
* this.sessionService = sessionService;
|
||||
* }
|
||||
*
|
||||
* async executeCommand(roomId, event, userId, command, args) {
|
||||
* // Handle credit commands first
|
||||
* if (await handleCreditCommand(this, roomId, event, userId, command, args)) {
|
||||
* return;
|
||||
* }
|
||||
* // Then handle bot-specific commands
|
||||
* // ...
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
|
||||
/**
|
||||
* Handle a credit command if applicable
|
||||
* @returns true if the command was handled, false otherwise
|
||||
*/
|
||||
export async function handleCreditCommand(
|
||||
host: CreditCommandsHost,
|
||||
roomId: string,
|
||||
event: MatrixRoomEvent,
|
||||
userId: string,
|
||||
command: string,
|
||||
args: string
|
||||
): Promise<boolean> {
|
||||
const cmd = command.toLowerCase();
|
||||
|
||||
switch (cmd) {
|
||||
case 'credits':
|
||||
case 'guthaben':
|
||||
await handleCreditsCommand(host, roomId, event, userId);
|
||||
return true;
|
||||
|
||||
case 'packages':
|
||||
case 'pakete':
|
||||
await handlePackagesCommand(host, roomId, event, userId);
|
||||
return true;
|
||||
|
||||
case 'buy':
|
||||
case 'kaufen':
|
||||
await handleBuyCommand(host, roomId, event, userId, args);
|
||||
return true;
|
||||
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle !credits / !guthaben command - show balance
|
||||
*/
|
||||
async function handleCreditsCommand(
|
||||
host: CreditCommandsHost,
|
||||
roomId: string,
|
||||
event: MatrixRoomEvent,
|
||||
userId: string
|
||||
): Promise<void> {
|
||||
const token = await host.sessionService.getToken(userId);
|
||||
const t = await host.i18nService.getTodoTranslator(userId);
|
||||
|
||||
if (!token) {
|
||||
await sendReply(host, roomId, event, t('loginRequired'));
|
||||
return;
|
||||
}
|
||||
|
||||
const balance = await host.creditService.getBalance(token);
|
||||
const message = t('creditBalance', { balance: balance.balance.toFixed(2) });
|
||||
|
||||
await sendReply(host, roomId, event, message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle !packages / !pakete command - show available packages
|
||||
*/
|
||||
async function handlePackagesCommand(
|
||||
host: CreditCommandsHost,
|
||||
roomId: string,
|
||||
event: MatrixRoomEvent,
|
||||
userId: string
|
||||
): Promise<void> {
|
||||
const t = await host.i18nService.getTodoTranslator(userId);
|
||||
|
||||
// Packages are public, no token needed
|
||||
const packages = await host.creditService.getPackages();
|
||||
|
||||
if (packages.length === 0) {
|
||||
await sendReply(host, roomId, event, t('creditNoPackages'));
|
||||
return;
|
||||
}
|
||||
|
||||
// Store packages for reference in buy command
|
||||
packageCache.set(userId, packages);
|
||||
|
||||
const lines: string[] = [t('creditPackagesTitle'), ''];
|
||||
|
||||
packages.forEach((pkg, index) => {
|
||||
lines.push(
|
||||
t('creditPackageLine', {
|
||||
num: String(index + 1),
|
||||
name: pkg.name,
|
||||
credits: String(pkg.credits),
|
||||
price: pkg.formattedPrice,
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
lines.push('');
|
||||
lines.push(t('creditBuyHelp', { num: '1' }));
|
||||
|
||||
await sendReply(host, roomId, event, lines.join('\n'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle !buy N / !kaufen N command - purchase a package
|
||||
*/
|
||||
async function handleBuyCommand(
|
||||
host: CreditCommandsHost,
|
||||
roomId: string,
|
||||
event: MatrixRoomEvent,
|
||||
userId: string,
|
||||
args: string
|
||||
): Promise<void> {
|
||||
const token = await host.sessionService.getToken(userId);
|
||||
const t = await host.i18nService.getTodoTranslator(userId);
|
||||
|
||||
if (!token) {
|
||||
await sendReply(host, roomId, event, t('loginRequired'));
|
||||
return;
|
||||
}
|
||||
|
||||
// Parse package number
|
||||
const packageNumber = parseInt(args.trim(), 10);
|
||||
if (isNaN(packageNumber) || packageNumber < 1) {
|
||||
await sendReply(host, roomId, event, t('creditPackageNotFound'));
|
||||
return;
|
||||
}
|
||||
|
||||
// Get cached packages or fetch new ones
|
||||
let packages = packageCache.get(userId);
|
||||
if (!packages) {
|
||||
packages = await host.creditService.getPackages();
|
||||
packageCache.set(userId, packages);
|
||||
}
|
||||
|
||||
// Get selected package
|
||||
const selectedPackage = packages[packageNumber - 1];
|
||||
if (!selectedPackage) {
|
||||
await sendReply(host, roomId, event, t('creditPackageNotFound'));
|
||||
return;
|
||||
}
|
||||
|
||||
// Create payment link
|
||||
const result = await host.creditService.createPaymentLink(token, selectedPackage.id, roomId);
|
||||
|
||||
if (!result) {
|
||||
await sendReply(host, roomId, event, t('creditPurchaseError'));
|
||||
return;
|
||||
}
|
||||
|
||||
// Format success message
|
||||
const lines = [
|
||||
`**${selectedPackage.name}** (${selectedPackage.credits} Credits)`,
|
||||
'',
|
||||
t('creditPaymentLink'),
|
||||
result.url,
|
||||
'',
|
||||
t('creditLinkValid'),
|
||||
];
|
||||
|
||||
await sendReply(host, roomId, event, lines.join('\n'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Send a payment success notification to a room
|
||||
* Called after webhook confirms payment
|
||||
*/
|
||||
export async function sendPaymentSuccessNotification(
|
||||
host: CreditCommandsHost,
|
||||
roomId: string,
|
||||
userId: string,
|
||||
credits: number,
|
||||
newBalance: number
|
||||
): Promise<void> {
|
||||
const t = await host.i18nService.getTodoTranslator(userId);
|
||||
|
||||
const lines = [
|
||||
t('creditPaymentSuccess', { credits: String(credits) }),
|
||||
t('creditNewBalance', { balance: newBalance.toFixed(2) }),
|
||||
];
|
||||
|
||||
await sendMessage(host, roomId, lines.join('\n'));
|
||||
}
|
||||
|
||||
// ============================================================================
|
||||
// Internal helpers
|
||||
// ============================================================================
|
||||
|
||||
/**
|
||||
* Simple cache for packages (per-user)
|
||||
* Cleared after 5 minutes
|
||||
*/
|
||||
const packageCache = new Map<string, CreditPackage[]>();
|
||||
|
||||
// Clear cache entries after 5 minutes
|
||||
setInterval(
|
||||
() => {
|
||||
packageCache.clear();
|
||||
},
|
||||
5 * 60 * 1000
|
||||
);
|
||||
|
||||
/**
|
||||
* Send a message to a room
|
||||
*/
|
||||
async function sendMessage(host: CreditCommandsHost, roomId: string, message: string): Promise<void> {
|
||||
await host.sendCreditMessage(roomId, message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Send a reply to an event
|
||||
*/
|
||||
async function sendReply(
|
||||
host: CreditCommandsHost,
|
||||
roomId: string,
|
||||
event: MatrixRoomEvent,
|
||||
message: string
|
||||
): Promise<void> {
|
||||
await host.sendCreditReply(roomId, event, message);
|
||||
}
|
||||
8
packages/matrix-bot-common/src/credit/index.ts
Normal file
8
packages/matrix-bot-common/src/credit/index.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
export {
|
||||
handleCreditCommand,
|
||||
sendPaymentSuccessNotification,
|
||||
isCreditCommand,
|
||||
CREDIT_COMMANDS,
|
||||
type CreditCommand,
|
||||
type CreditCommandsHost,
|
||||
} from './credit-commands.mixin.js';
|
||||
431
packages/matrix-bot-common/src/gift/gift-commands.mixin.ts
Normal file
431
packages/matrix-bot-common/src/gift/gift-commands.mixin.ts
Normal file
|
|
@ -0,0 +1,431 @@
|
|||
import {
|
||||
GiftService,
|
||||
I18nService,
|
||||
SessionService,
|
||||
type CreateGiftOptions,
|
||||
type GiftCodeType,
|
||||
} from '@manacore/bot-services';
|
||||
import { type MatrixRoomEvent } from '../base/types';
|
||||
|
||||
/**
|
||||
* Commands that the gift mixin handles
|
||||
*/
|
||||
export const GIFT_COMMANDS = [
|
||||
'geschenk',
|
||||
'gift',
|
||||
'einloesen',
|
||||
'redeem',
|
||||
'meine-geschenke',
|
||||
'my-gifts',
|
||||
] as const;
|
||||
|
||||
export type GiftCommand = (typeof GIFT_COMMANDS)[number];
|
||||
|
||||
/**
|
||||
* Check if a command is a gift command
|
||||
*/
|
||||
export function isGiftCommand(command: string): command is GiftCommand {
|
||||
return GIFT_COMMANDS.includes(command.toLowerCase() as GiftCommand);
|
||||
}
|
||||
|
||||
/**
|
||||
* Interface for classes that can use the gift commands mixin
|
||||
*/
|
||||
export interface GiftCommandsHost {
|
||||
giftService: GiftService;
|
||||
i18nService: I18nService;
|
||||
sessionService: SessionService;
|
||||
|
||||
/**
|
||||
* Send a message to a room (for gift notifications)
|
||||
*/
|
||||
sendGiftMessage(roomId: string, message: string): Promise<void>;
|
||||
|
||||
/**
|
||||
* Send a reply to an event (for gift commands)
|
||||
*/
|
||||
sendGiftReply(roomId: string, event: MatrixRoomEvent, message: string): Promise<void>;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parsed gift command input
|
||||
*/
|
||||
interface ParsedGiftInput {
|
||||
credits: number;
|
||||
type: GiftCodeType;
|
||||
portions?: number;
|
||||
targetEmail?: string;
|
||||
targetMatrixId?: string;
|
||||
riddleQuestion?: string;
|
||||
riddleAnswer?: string;
|
||||
message?: string;
|
||||
expiresAt?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse gift command syntax
|
||||
*
|
||||
* Syntax examples:
|
||||
* - `!geschenk 50` - Simple, 50 credits
|
||||
* - `!geschenk 100 /5` - Split: 5 portions of 20 credits
|
||||
* - `!geschenk 50 x3` - First come: first 3 get 50 each
|
||||
* - `!geschenk 50 @user@email.com` - Personalized
|
||||
* - `!geschenk 50 @morgen` - Expires tomorrow
|
||||
* - `!geschenk 50 ?="answer"` - With riddle
|
||||
* - `!geschenk 50 "message"` - With message
|
||||
*/
|
||||
function parseGiftInput(input: string): ParsedGiftInput | null {
|
||||
const trimmed = input.trim();
|
||||
if (!trimmed) return null;
|
||||
|
||||
// Extract credits (first number)
|
||||
const creditsMatch = trimmed.match(/^(\d+)/);
|
||||
if (!creditsMatch) return null;
|
||||
|
||||
const credits = parseInt(creditsMatch[1], 10);
|
||||
if (isNaN(credits) || credits < 1 || credits > 10000) return null;
|
||||
|
||||
const result: ParsedGiftInput = {
|
||||
credits,
|
||||
type: 'simple',
|
||||
};
|
||||
|
||||
const rest = trimmed.substring(creditsMatch[0].length).trim();
|
||||
|
||||
// Check for split: /N
|
||||
const splitMatch = rest.match(/\/(\d+)/);
|
||||
if (splitMatch) {
|
||||
result.type = 'split';
|
||||
result.portions = parseInt(splitMatch[1], 10);
|
||||
}
|
||||
|
||||
// Check for first come: xN
|
||||
const firstComeMatch = rest.match(/x(\d+)/i);
|
||||
if (firstComeMatch) {
|
||||
result.type = 'first_come';
|
||||
result.portions = parseInt(firstComeMatch[1], 10);
|
||||
}
|
||||
|
||||
// Check for personalized: @email
|
||||
const emailMatch = rest.match(/@([\w.+-]+@[\w.-]+\.\w+)/);
|
||||
if (emailMatch) {
|
||||
result.type = 'personalized';
|
||||
result.targetEmail = emailMatch[1];
|
||||
}
|
||||
|
||||
// Check for Matrix ID: @user:server
|
||||
const matrixMatch = rest.match(/@(@[\w.-]+:[.\w-]+)/);
|
||||
if (matrixMatch && !emailMatch) {
|
||||
result.type = 'personalized';
|
||||
result.targetMatrixId = matrixMatch[1];
|
||||
}
|
||||
|
||||
// Check for riddle: ?="answer"
|
||||
const riddleMatch = rest.match(/\?="([^"]+)"/);
|
||||
if (riddleMatch) {
|
||||
result.type = 'riddle';
|
||||
result.riddleAnswer = riddleMatch[1];
|
||||
// Riddle question will be the remaining text before the riddle
|
||||
const riddleQuestionMatch = rest.match(/\?([^=]+)="[^"]+"/);
|
||||
if (riddleQuestionMatch) {
|
||||
result.riddleQuestion = riddleQuestionMatch[1].trim();
|
||||
}
|
||||
}
|
||||
|
||||
// Check for expiration: @morgen, @tomorrow
|
||||
const dateKeywords: Record<string, number> = {
|
||||
morgen: 1,
|
||||
tomorrow: 1,
|
||||
übermorgen: 2,
|
||||
'day after tomorrow': 2,
|
||||
};
|
||||
for (const [keyword, days] of Object.entries(dateKeywords)) {
|
||||
if (rest.toLowerCase().includes(`@${keyword}`)) {
|
||||
const date = new Date();
|
||||
date.setDate(date.getDate() + days);
|
||||
date.setHours(23, 59, 59, 999);
|
||||
result.expiresAt = date.toISOString();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Check for message: "message"
|
||||
const messageMatch = rest.match(/"([^"]+)"/);
|
||||
if (messageMatch && !riddleMatch) {
|
||||
result.message = messageMatch[1];
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle a gift command if applicable
|
||||
* @returns true if the command was handled, false otherwise
|
||||
*/
|
||||
export async function handleGiftCommand(
|
||||
host: GiftCommandsHost,
|
||||
roomId: string,
|
||||
event: MatrixRoomEvent,
|
||||
userId: string,
|
||||
command: string,
|
||||
args: string
|
||||
): Promise<boolean> {
|
||||
const cmd = command.toLowerCase();
|
||||
|
||||
switch (cmd) {
|
||||
case 'geschenk':
|
||||
case 'gift':
|
||||
await handleCreateGift(host, roomId, event, userId, args);
|
||||
return true;
|
||||
|
||||
case 'einloesen':
|
||||
case 'redeem':
|
||||
await handleRedeemGift(host, roomId, event, userId, args);
|
||||
return true;
|
||||
|
||||
case 'meine-geschenke':
|
||||
case 'my-gifts':
|
||||
await handleListGifts(host, roomId, event, userId);
|
||||
return true;
|
||||
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle !geschenk / !gift command - create a gift
|
||||
*/
|
||||
async function handleCreateGift(
|
||||
host: GiftCommandsHost,
|
||||
roomId: string,
|
||||
event: MatrixRoomEvent,
|
||||
userId: string,
|
||||
args: string
|
||||
): Promise<void> {
|
||||
const token = await host.sessionService.getToken(userId);
|
||||
const t = await host.i18nService.getGiftTranslator(userId);
|
||||
|
||||
if (!token) {
|
||||
await sendReply(host, roomId, event, t('loginRequired'));
|
||||
return;
|
||||
}
|
||||
|
||||
// Parse input
|
||||
const parsed = parseGiftInput(args);
|
||||
if (!parsed) {
|
||||
await sendReply(host, roomId, event, t('giftInvalidSyntax'));
|
||||
return;
|
||||
}
|
||||
|
||||
// Build options
|
||||
const options: CreateGiftOptions = {
|
||||
type: parsed.type,
|
||||
portions: parsed.portions,
|
||||
targetEmail: parsed.targetEmail,
|
||||
targetMatrixId: parsed.targetMatrixId,
|
||||
riddleQuestion: parsed.riddleQuestion,
|
||||
riddleAnswer: parsed.riddleAnswer,
|
||||
message: parsed.message,
|
||||
expiresAt: parsed.expiresAt,
|
||||
};
|
||||
|
||||
// Create gift
|
||||
const result = await host.giftService.createGift(token, parsed.credits, options);
|
||||
|
||||
if (!result) {
|
||||
await sendReply(host, roomId, event, t('giftInsufficientCredits', { available: '?' }));
|
||||
return;
|
||||
}
|
||||
|
||||
// Format response
|
||||
const lines: string[] = [t('giftCreated'), ''];
|
||||
|
||||
lines.push(t('giftCreatedCode', { code: result.code }));
|
||||
|
||||
if (result.totalPortions > 1) {
|
||||
lines.push(
|
||||
t('giftCreatedSplit', {
|
||||
credits: String(result.creditsPerPortion),
|
||||
portions: String(result.totalPortions),
|
||||
})
|
||||
);
|
||||
} else {
|
||||
lines.push(t('giftCreatedCredits', { credits: String(result.totalCredits) }));
|
||||
}
|
||||
|
||||
lines.push('');
|
||||
lines.push(t('giftCreatedLink', { url: result.url }));
|
||||
|
||||
await sendReply(host, roomId, event, lines.join('\n'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle !einloesen / !redeem command - redeem a gift
|
||||
*/
|
||||
async function handleRedeemGift(
|
||||
host: GiftCommandsHost,
|
||||
roomId: string,
|
||||
event: MatrixRoomEvent,
|
||||
userId: string,
|
||||
args: string
|
||||
): Promise<void> {
|
||||
const token = await host.sessionService.getToken(userId);
|
||||
const t = await host.i18nService.getGiftTranslator(userId);
|
||||
|
||||
if (!token) {
|
||||
await sendReply(host, roomId, event, t('loginRequired'));
|
||||
return;
|
||||
}
|
||||
|
||||
// Parse args: CODE [answer]
|
||||
const parts = args.trim().split(/\s+/);
|
||||
const code = parts[0]?.toUpperCase();
|
||||
const answer = parts.slice(1).join(' ');
|
||||
|
||||
if (!code) {
|
||||
await sendReply(host, roomId, event, t('giftInvalidSyntax'));
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if it looks like a gift code
|
||||
if (code.length !== 6 || !/^[A-Z0-9]+$/.test(code)) {
|
||||
// Try to extract code from URL
|
||||
const urlMatch = args.match(/\/g\/([A-Z0-9]{6})/i);
|
||||
if (urlMatch) {
|
||||
// Recurse with extracted code
|
||||
await handleRedeemGift(host, roomId, event, userId, urlMatch[1]);
|
||||
return;
|
||||
}
|
||||
|
||||
await sendReply(host, roomId, event, t('giftInvalidCode'));
|
||||
return;
|
||||
}
|
||||
|
||||
// First, get gift info to check if riddle required
|
||||
if (!answer) {
|
||||
const info = await host.giftService.getGiftInfo(code);
|
||||
if (info?.hasRiddle && info.riddleQuestion) {
|
||||
// Show riddle question
|
||||
const lines: string[] = [
|
||||
t('giftInfoTitle'),
|
||||
t('giftRiddleQuestion', { question: info.riddleQuestion }),
|
||||
'',
|
||||
`\`!einloesen ${code} [antwort]\``,
|
||||
];
|
||||
await sendReply(host, roomId, event, lines.join('\n'));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Redeem gift
|
||||
// Get Matrix user ID from event sender
|
||||
const matrixUserId = event.sender;
|
||||
|
||||
const result = await host.giftService.redeemGift(token, code, answer || undefined, matrixUserId);
|
||||
|
||||
if (!result.success) {
|
||||
// Map error to translation
|
||||
const errorMessages: Record<string, string> = {
|
||||
'Gift code not found': t('giftInvalidCode'),
|
||||
'This gift code has expired': t('giftExpired'),
|
||||
'This gift code has been fully claimed': t('giftDepleted'),
|
||||
'You have already claimed this gift': t('giftAlreadyClaimed'),
|
||||
'This gift code is for a specific person': t('giftWrongUser'),
|
||||
'Incorrect answer': t('giftWrongAnswer'),
|
||||
'Please provide the answer to the riddle': t('giftRiddleRequired'),
|
||||
};
|
||||
|
||||
const errorMsg = errorMessages[result.error || ''] || result.error || t('errorOccurred');
|
||||
await sendReply(host, roomId, event, errorMsg);
|
||||
return;
|
||||
}
|
||||
|
||||
// Format success response
|
||||
const lines: string[] = [t('giftRedeemed')];
|
||||
lines.push(t('giftRedeemedCredits', { credits: String(result.credits) }));
|
||||
|
||||
if (result.message) {
|
||||
lines.push('');
|
||||
lines.push(t('giftRedeemedMessage', { message: result.message }));
|
||||
}
|
||||
|
||||
if (result.newBalance !== undefined) {
|
||||
lines.push('');
|
||||
lines.push(t('creditNewBalance', { balance: result.newBalance.toFixed(2) }));
|
||||
}
|
||||
|
||||
await sendReply(host, roomId, event, lines.join('\n'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle !meine-geschenke / !my-gifts command - list user's gifts
|
||||
*/
|
||||
async function handleListGifts(
|
||||
host: GiftCommandsHost,
|
||||
roomId: string,
|
||||
event: MatrixRoomEvent,
|
||||
userId: string
|
||||
): Promise<void> {
|
||||
const token = await host.sessionService.getToken(userId);
|
||||
const t = await host.i18nService.getGiftTranslator(userId);
|
||||
|
||||
if (!token) {
|
||||
await sendReply(host, roomId, event, t('loginRequired'));
|
||||
return;
|
||||
}
|
||||
|
||||
const gifts = await host.giftService.listCreatedGifts(token);
|
||||
|
||||
const lines: string[] = [t('giftListTitle'), ''];
|
||||
|
||||
if (gifts.length === 0) {
|
||||
lines.push(t('giftListEmpty'));
|
||||
} else {
|
||||
// Show only active or recently depleted
|
||||
const relevantGifts = gifts.filter(
|
||||
(g) => g.status === 'active' || g.status === 'depleted'
|
||||
);
|
||||
|
||||
relevantGifts.forEach((gift, index) => {
|
||||
const statusIcon =
|
||||
gift.status === 'active' ? '✅' : gift.status === 'depleted' ? '✓' : '❌';
|
||||
|
||||
lines.push(
|
||||
t('giftListItem', {
|
||||
num: String(index + 1),
|
||||
code: gift.code,
|
||||
status: statusIcon,
|
||||
credits: String(gift.creditsPerPortion),
|
||||
claimed: String(gift.claimedPortions),
|
||||
total: String(gift.totalPortions),
|
||||
})
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
await sendReply(host, roomId, event, lines.join('\n'));
|
||||
}
|
||||
|
||||
// ============================================================================
|
||||
// Internal helpers
|
||||
// ============================================================================
|
||||
|
||||
/**
|
||||
* Send a message to a room
|
||||
*/
|
||||
async function sendMessage(host: GiftCommandsHost, roomId: string, message: string): Promise<void> {
|
||||
await host.sendGiftMessage(roomId, message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Send a reply to an event
|
||||
*/
|
||||
async function sendReply(
|
||||
host: GiftCommandsHost,
|
||||
roomId: string,
|
||||
event: MatrixRoomEvent,
|
||||
message: string
|
||||
): Promise<void> {
|
||||
await host.sendGiftReply(roomId, event, message);
|
||||
}
|
||||
7
packages/matrix-bot-common/src/gift/index.ts
Normal file
7
packages/matrix-bot-common/src/gift/index.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
export {
|
||||
handleGiftCommand,
|
||||
isGiftCommand,
|
||||
GIFT_COMMANDS,
|
||||
type GiftCommand,
|
||||
type GiftCommandsHost,
|
||||
} from './gift-commands.mixin.js';
|
||||
|
|
@ -62,3 +62,22 @@ export { SessionHelper, createSessionHelper } from './session/index.js';
|
|||
|
||||
// List Mapper
|
||||
export { UserListMapper, UserIdListMapper } from './list-mapper/index.js';
|
||||
|
||||
// Credit Commands
|
||||
export {
|
||||
handleCreditCommand,
|
||||
sendPaymentSuccessNotification,
|
||||
isCreditCommand,
|
||||
CREDIT_COMMANDS,
|
||||
type CreditCommand,
|
||||
type CreditCommandsHost,
|
||||
} from './credit/index.js';
|
||||
|
||||
// Gift Commands
|
||||
export {
|
||||
handleGiftCommand,
|
||||
isGiftCommand,
|
||||
GIFT_COMMANDS,
|
||||
type GiftCommand,
|
||||
type GiftCommandsHost,
|
||||
} from './gift/index.js';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue