mirror of
https://github.com/fosrl/pangolin.git
synced 2025-05-12 21:30:35 +01:00
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
// This file is licensed under the Fossorial Commercial License.
|
|
// Unauthorized use, copying, modification, or distribution is strictly prohibited.
|
|
//
|
|
// Copyright (c) 2025 Fossorial LLC. All rights reserved.
|
|
|
|
import { Request, Response, NextFunction } from "express";
|
|
import HttpCode from "@server/types/HttpCode";
|
|
import createHttpError from "http-errors";
|
|
import logger from "@server/logger";
|
|
import { response as sendResponse } from "@server/lib";
|
|
import license, { LicenseKeyCache } from "@server/license/license";
|
|
|
|
export type ListLicenseKeysResponse = LicenseKeyCache[];
|
|
|
|
export async function listLicenseKeys(
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction
|
|
): Promise<any> {
|
|
try {
|
|
const keys = license.listKeys();
|
|
|
|
return sendResponse<ListLicenseKeysResponse>(res, {
|
|
data: keys,
|
|
success: true,
|
|
error: false,
|
|
message: "Successfully retrieved license keys",
|
|
status: HttpCode.OK
|
|
});
|
|
} catch (error) {
|
|
logger.error(error);
|
|
return next(
|
|
createHttpError(HttpCode.INTERNAL_SERVER_ERROR, "An error occurred")
|
|
);
|
|
}
|
|
}
|