* Remove unused code in InstalledAppsLayout * Add new app categories "crm", "conferencing" and "messaging" * Sort getAppCategories entries alphabetically * Fix 404s on new category pages (and remove hardcoded category lists) * Fix admin apps list not showing "no available apps" for new categories * Recategorise apps * Sync seed-app-store categories with config files * Replace unnecessary seed-app-store.config.json with appStoreMetadata * Copy video.svg to conferencing.svg * Add messaging.svg * Remove web3 from getAppCategories (used by installed apps, admin apps) * Fix app-store-cli categories - Add conferencing - Add CRM - Remove video - Remove web3 * Remove outdated web3 comment in seed-app-store * Update apps/web/public/static/locales/en/common.json * Add cron script to keep db apps in sync with app metadata * Add redirect for app category "video" to "conferencing" * Fix up "video" category overrides to apply to conferencing * Fix conferencing apps not showing as a location for non-team users * Restore "installed_app" string for conferencing apps * Make linter happier * Remove my "installed_app_conferencing_description" as this was fixed upstream * Quick tidy up * Add dry-run to syncAppMeta via CRON_ENABLE_APP_SYNC env * Replace console.log with logger in syncAppMeta --------- Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: alannnc <alannnc@gmail.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> Co-authored-by: Omar López <zomars@me.com>
68 lines
2.1 KiB
TypeScript
68 lines
2.1 KiB
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import { getAppWithMetadata } from "@calcom/app-store/_appRegistry";
|
|
import logger from "@calcom/lib/logger";
|
|
import { prisma } from "@calcom/prisma";
|
|
import type { AppCategories, Prisma } from "@calcom/prisma/client";
|
|
|
|
const isDryRun = process.env.CRON_ENABLE_APP_SYNC !== "true";
|
|
const log = logger.getChildLogger({
|
|
prefix: ["[api/cron/syncAppMeta]", ...(isDryRun ? ["(dry-run)"] : [])],
|
|
});
|
|
|
|
/**
|
|
* syncAppMeta makes sure any app metadata that has been replicated into the database
|
|
* remains synchronized with any changes made to the app config files.
|
|
*/
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
const apiKey = req.headers.authorization || req.query.apiKey;
|
|
if (process.env.CRON_API_KEY !== apiKey) {
|
|
res.status(401).json({ message: "Not authenticated" });
|
|
return;
|
|
}
|
|
if (req.method !== "POST") {
|
|
res.status(405).json({ message: "Invalid method" });
|
|
return;
|
|
}
|
|
|
|
log.info(`🧐 Checking DB apps are in-sync with app metadata`);
|
|
|
|
const dbApps = await prisma.app.findMany();
|
|
|
|
for await (const dbApp of dbApps) {
|
|
const app = await getAppWithMetadata(dbApp);
|
|
const updates: Prisma.AppUpdateManyMutationInput = {};
|
|
|
|
if (!app) {
|
|
log.warn(`💀 App ${dbApp.slug} (${dbApp.dirName}) no longer exists.`);
|
|
continue;
|
|
}
|
|
|
|
// Check for any changes in the app categories (tolerates changes in ordering)
|
|
if (
|
|
dbApp.categories.length !== app.categories.length ||
|
|
!dbApp.categories.every((category) => app.categories.includes(category))
|
|
) {
|
|
updates["categories"] = app.categories as AppCategories[];
|
|
}
|
|
|
|
if (dbApp.dirName !== (app.dirName ?? app.slug)) {
|
|
updates["dirName"] = app.dirName ?? app.slug;
|
|
}
|
|
|
|
if (Object.keys(updates).length > 0) {
|
|
log.info(`🔨 Updating app ${dbApp.slug} with ${Object.keys(updates).join(", ")}`);
|
|
if (!isDryRun) {
|
|
await prisma.app.update({
|
|
where: { slug: dbApp.slug },
|
|
data: updates,
|
|
});
|
|
}
|
|
} else {
|
|
log.info(`✅ App ${dbApp.slug} is up-to-date and correct`);
|
|
}
|
|
}
|
|
|
|
res.json({ ok: true });
|
|
}
|