| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769 |
- require('dotenv').config();
- const { createLogger } = require('./utils/logger');
- const log = createLogger('gateway');
- const app = require('fastify')({ logger: log });
- const multipart = require('@fastify/multipart');
- const axios = require('axios');
- const fs = require('fs');
- const path = require('path');
- const crypto = require('crypto');
- const { pipeline } = require('stream/promises');
- const { ObjectId } = require('mongodb');
- const { getDb } = require('./utils/MongoDBConnector');
- const { encryptToken, decryptToken, warnIfNoKey } = require('./utils/crypto');
- const RabbitMQProducer = require('./utils/RabbitMQProducer');
- const UPLOAD_DIR = process.env.UPLOAD_DIR || '/uploads';
- const ALLOWED_EXTENSIONS = new Set(['.jpg', '.jpeg', '.png', '.gif', '.webp', '.mp4', '.mov', '.avi']);
- const MAX_FILE_SIZE = 100 * 1024 * 1024; // 100 MB
- // In-memory job state for async competitor scrapes.
- // Max 2 competitors, scrapes complete in seconds — no persistence needed.
- const activeScrapeJobs = new Map();
- // ─── Platform-native writing rules ────────────────────────────────────────────
- // Injected into the AI system prompt when destinations are known.
- const PLATFORM_WRITING_RULES = {
- twitter: [
- 'Keep the post under 200 characters for maximum retweetability.',
- 'Use zero to one hashtag — more than one significantly hurts reach.',
- 'End with a question or provocation to drive replies.',
- 'No slow intros — the hook must land in the opening clause.',
- ],
- linkedin: [
- 'Only the first 2–3 lines are visible before "see more" — the hook must grab immediately.',
- 'Put external links in the first comment, not the post body — links in copy reduce reach.',
- 'Use 2–3 hashtags maximum, placed at the very end of the post.',
- 'Write for practitioners and decision-makers using clear, direct language.',
- ],
- instagram: [
- 'Only the first ~125 characters show before "more" — front-load the hook.',
- 'For Reels: hook text must appear on-screen within the first 1 second; assume silent viewing, so text overlays are essential.',
- 'Carousels get the highest saves — use them for educational or step-by-step content.',
- 'End with a clear call-to-action.',
- ],
- facebook: [
- 'First 3 lines visible before "See more" — lead with the most engaging line.',
- 'Conversational tone outperforms corporate language.',
- 'Questions and polls significantly boost comments and reach.',
- 'External links reduce reach — consider placing the link in the first comment.',
- ],
- tiktok: [
- 'The very first spoken word or on-screen text must hook the viewer at second 0 — no slow intros.',
- 'Creator-native feel performs far better than polished corporate openers.',
- 'End every script with a comment-bait line (a question or debate prompt).',
- 'Optimal caption length: short and punchy; the hook lives in the video, not the caption.',
- ],
- youtube: [
- 'Title must be written for search — include the primary keyword near the front.',
- 'Open the script with a 15-second hook that states the value proposition immediately.',
- 'First 2 lines of the description appear in search results — write them for click-through.',
- 'Always include timestamps/chapters in longer-form descriptions.',
- ],
- pinterest: [
- 'Pinterest is a search engine — descriptions must be keyword-rich prose, not hashtag fragments.',
- 'Every pin should link somewhere relevant; linkless pins underperform.',
- 'Vertical 2:3 format is optimal for feed visibility.',
- 'Use natural-language keyword phrases (e.g. "easy weeknight dinner ideas") not isolated keywords.',
- ],
- reddit: [
- 'Reddit is a community channel, not a publishing channel — never pitch directly.',
- 'Write like a practitioner who works at the brand, not a marketer who works for it.',
- 'Lead with value: useful data, a genuine question, or an interesting observation.',
- 'Match the subreddit tone exactly — formal communities reject casual posts and vice versa.',
- ],
- mastodon: [
- 'Mastodon users value authenticity — corporate marketing tone is poorly received.',
- 'Use 3–5 relevant hashtags; they are the primary discovery mechanism on Mastodon.',
- 'Longer posts should use a CW (content warning) as a brief summary — this is a community norm.',
- 'Engagement comes from genuine conversation, not broadcast-style posting.',
- ],
- bluesky: [
- 'Bluesky rewards original perspectives — repurposed content from other platforms underperforms.',
- 'Threads work well for longer ideas; each post in the thread should stand alone.',
- 'Use 1–2 hashtags if any — hashtag culture is still developing on Bluesky.',
- 'Substance drives sharing here more than engagement-bait does.',
- ],
- };
- function buildPlatformRulesBlock(destinations) {
- if (!destinations?.length) return '';
- const platforms = [...new Set(destinations.map((d) => d.platform).filter(Boolean))];
- const blocks = platforms
- .map((p) => {
- const rules = PLATFORM_WRITING_RULES[p];
- if (!rules?.length) return null;
- const name = p.charAt(0).toUpperCase() + p.slice(1);
- return `${name} rules:\n${rules.map((r) => `- ${r}`).join('\n')}`;
- })
- .filter(Boolean);
- if (!blocks.length) return '';
- return '\n\nPLATFORM-SPECIFIC WRITING RULES (follow these for every post on this platform):\n' + blocks.join('\n\n');
- }
- fs.mkdirSync(UPLOAD_DIR, { recursive: true });
- app.register(multipart, { limits: { fileSize: MAX_FILE_SIZE } });
- const GRAPH_API = 'https://graph.facebook.com/v22.0';
- // The public base URL of this app (used for OAuth redirect_uri)
- const APP_BASE_URL = process.env.APP_BASE_URL || 'http://localhost:8081';
- // ─── CORS ────────────────────────────────────────────────────────────────────
- app.addHook('onSend', async (request, reply) => {
- reply.header('Access-Control-Allow-Origin', '*');
- reply.header('Access-Control-Allow-Methods', 'GET,POST,PUT,DELETE,OPTIONS');
- reply.header('Access-Control-Allow-Headers', 'Content-Type');
- });
- app.options('*', async (request, reply) => {
- reply.code(204).send();
- });
- // ─── Helpers ─────────────────────────────────────────────────────────────────
- async function getCredentials(id) {
- const db = await getDb();
- return db.collection('platform_credentials').findOne({ _id: id });
- }
- async function setCredentials(id, data) {
- const db = await getDb();
- await db.collection('platform_credentials').updateOne(
- { _id: id },
- { $set: { _id: id, ...data, updatedAt: new Date() } },
- { upsert: true }
- );
- }
- async function deleteCredentials(id) {
- const db = await getDb();
- await db.collection('platform_credentials').deleteOne({ _id: id });
- }
- // ─── Media Upload & Library ───────────────────────────────────────────────────
- app.post('/upload', async (request, reply) => {
- const folder = request.query.folder || null;
- const data = await request.file();
- if (!data) return reply.code(400).send({ error: 'No file provided' });
- const ext = path.extname(data.filename).toLowerCase();
- if (!ALLOWED_EXTENSIONS.has(ext)) {
- data.file.resume();
- return reply.code(400).send({ error: `File type "${ext}" is not allowed. Allowed: jpg, jpeg, png, gif, webp, mp4, mov, avi` });
- }
- const filename = `${crypto.randomUUID()}${ext}`;
- const filepath = path.join(UPLOAD_DIR, filename);
- try {
- await pipeline(data.file, fs.createWriteStream(filepath));
- } catch (err) {
- app.log.error({ action: 'media_upload', outcome: 'failure', err: err.message });
- return reply.code(500).send({ error: 'Failed to save file' });
- }
- const stat = fs.statSync(filepath);
- const record = {
- filename,
- originalName: data.filename,
- url: `/media/${filename}`,
- mimetype: data.mimetype,
- size: stat.size,
- folder: folder || null,
- uploadedAt: new Date(),
- };
- try {
- const db = await getDb();
- await db.collection('media_files').insertOne(record);
- } catch (err) {
- app.log.error({ action: 'media_metadata_save', outcome: 'failure', err: err.message });
- }
- return { url: record.url, filename, originalName: data.filename, mimetype: data.mimetype, size: stat.size, folder: record.folder };
- });
- // List uploaded media files, newest first; optionally filter by folder
- // folder=__none__ → unorganized (null/missing); folder=<name> → that folder; omit → all
- app.get('/media-library', async (request) => {
- const db = await getDb();
- const { folder } = request.query;
- const query = {};
- if (folder === '__none__') {
- query.$or = [{ folder: { $exists: false } }, { folder: null }, { folder: '' }];
- } else if (folder) {
- query.folder = folder;
- }
- const files = await db.collection('media_files').find(query).sort({ uploadedAt: -1 }).toArray();
- return { files };
- });
- // List custom folders with per-folder file counts
- app.get('/media-folders', async () => {
- const db = await getDb();
- const [folders, counts] = await Promise.all([
- db.collection('media_folders').find({}).sort({ createdAt: 1 }).toArray(),
- db.collection('media_files').aggregate([
- { $group: { _id: { $ifNull: ['$folder', '__none__'] }, count: { $sum: 1 } } },
- ]).toArray(),
- ]);
- const countMap = Object.fromEntries(counts.map((c) => [c._id, c.count]));
- const total = counts.reduce((s, c) => s + c.count, 0);
- return {
- folders: folders.map((f) => ({ name: f.name, count: countMap[f.name] || 0 })),
- totalCount: total,
- unorganizedCount: countMap['__none__'] || 0,
- folderCounts: countMap,
- };
- });
- // Create a custom folder
- app.post('/media-folders', async (request, reply) => {
- const { name } = request.body || {};
- if (!name?.trim()) return reply.code(400).send({ error: 'Folder name is required' });
- const trimmed = name.trim();
- const db = await getDb();
- if (await db.collection('media_folders').findOne({ name: trimmed })) {
- return reply.code(409).send({ error: 'Folder already exists' });
- }
- await db.collection('media_folders').insertOne({ name: trimmed, createdAt: new Date() });
- return { name: trimmed };
- });
- // Delete a custom folder; files in it become unorganized
- app.delete('/media-folders/:name', async (request, reply) => {
- const name = decodeURIComponent(request.params.name);
- const db = await getDb();
- await db.collection('media_folders').deleteOne({ name });
- await db.collection('media_files').updateMany({ folder: name }, { $set: { folder: null } });
- return { success: true };
- });
- // Update a file's folder assignment
- app.patch('/media/:filename', async (request, reply) => {
- const { filename } = request.params;
- if (!filename || filename.includes('/') || filename.includes('..') || filename.includes('\0')) {
- return reply.code(400).send({ error: 'Invalid filename' });
- }
- const { folder } = request.body || {};
- const db = await getDb();
- const result = await db.collection('media_files').updateOne(
- { filename },
- { $set: { folder: folder || null } },
- );
- if (!result.matchedCount) return reply.code(404).send({ error: 'File not found' });
- return { success: true };
- });
- // Delete a media file from disk and database
- app.delete('/media/:filename', async (request, reply) => {
- const { filename } = request.params;
- // Prevent path traversal
- if (!filename || filename.includes('/') || filename.includes('..') || filename.includes('\0')) {
- return reply.code(400).send({ error: 'Invalid filename' });
- }
- const filepath = path.join(UPLOAD_DIR, filename);
- try {
- fs.unlinkSync(filepath);
- } catch (err) {
- if (err.code !== 'ENOENT') {
- app.log.error({ action: 'media_delete', outcome: 'failure', err: err.message });
- return reply.code(500).send({ error: 'Failed to delete file' });
- }
- // Already gone from disk — still clean up DB record
- }
- const db = await getDb();
- await db.collection('media_files').deleteOne({ filename });
- return { success: true };
- });
- // ─── Drafts ──────────────────────────────────────────────────────────────────
- app.post('/drafts', async (request, reply) => {
- const { content = '', mediaUrl = '', scheduledAt = '', destinations = [] } = request.body || {};
- const db = await getDb();
- const now = new Date();
- const result = await db.collection('drafts').insertOne({
- content, mediaUrl, scheduledAt, destinations, createdAt: now, updatedAt: now,
- });
- const draft = await db.collection('drafts').findOne({ _id: result.insertedId });
- return reply.code(201).send(draft);
- });
- app.get('/drafts', async () => {
- const db = await getDb();
- const drafts = await db.collection('drafts').find({}).sort({ updatedAt: -1 }).toArray();
- return { drafts };
- });
- app.get('/drafts/:id', async (request, reply) => {
- const { id } = request.params;
- let oid;
- try { oid = new ObjectId(id); } catch { return reply.code(400).send({ error: 'Invalid draft ID' }); }
- const db = await getDb();
- const draft = await db.collection('drafts').findOne({ _id: oid });
- if (!draft) return reply.code(404).send({ error: 'Draft not found' });
- return draft;
- });
- app.put('/drafts/:id', async (request, reply) => {
- const { id } = request.params;
- let oid;
- try { oid = new ObjectId(id); } catch { return reply.code(400).send({ error: 'Invalid draft ID' }); }
- const { content = '', mediaUrl = '', scheduledAt = '', destinations = [] } = request.body || {};
- const db = await getDb();
- const result = await db.collection('drafts').updateOne(
- { _id: oid },
- { $set: { content, mediaUrl, scheduledAt, destinations, updatedAt: new Date() } }
- );
- if (!result.matchedCount) return reply.code(404).send({ error: 'Draft not found' });
- return { success: true };
- });
- app.delete('/drafts/:id', async (request, reply) => {
- const { id } = request.params;
- let oid;
- try { oid = new ObjectId(id); } catch { return reply.code(400).send({ error: 'Invalid draft ID' }); }
- const db = await getDb();
- await db.collection('drafts').deleteOne({ _id: oid });
- return { success: true };
- });
- // ─── Meta Token Expiry & Auto-Refresh ────────────────────────────────────────
- let _tokenExpiryCache = null;
- let _tokenExpiryCacheAt = 0;
- const TOKEN_EXPIRY_TTL = 60 * 60 * 1000; // 1 hour
- const TOKEN_REFRESH_THRESHOLD_DAYS = 7; // refresh when ≤ this many days remain
- app.get('/meta/token-expiry', async (request, reply) => {
- if (_tokenExpiryCache && Date.now() - _tokenExpiryCacheAt < TOKEN_EXPIRY_TTL) {
- return _tokenExpiryCache;
- }
- const appCred = await getCredentials('meta_app');
- if (!appCred?.appId || !appCred?.appSecret) return { accounts: [] };
- const plainAppSecret = decryptToken(appCred.appSecret);
- if (!plainAppSecret) return { accounts: [] };
- const ig = await getCredentials('instagram');
- const selectedAccounts = (ig?.accounts || []).filter((a) => a.selected && a.accessToken);
- if (!selectedAccounts.length) return { accounts: [] };
- const appToken = `${appCred.appId}|${plainAppSecret}`;
- const accounts = [];
- for (const account of selectedAccounts) {
- const plainToken = decryptToken(account.accessToken);
- if (!plainToken) continue;
- try {
- const res = await axios.get(`${GRAPH_API}/debug_token`, {
- params: { input_token: plainToken, access_token: appToken },
- timeout: 10000,
- });
- const data = res.data.data;
- const expiresAt = data.expires_at ? new Date(data.expires_at * 1000).toISOString() : null;
- const daysLeft = expiresAt
- ? Math.ceil((new Date(expiresAt).getTime() - Date.now()) / (1000 * 60 * 60 * 24))
- : null;
- accounts.push({ id: account.id, username: account.username, expiresAt, daysLeft, isValid: !!data.is_valid });
- } catch (err) {
- app.log.warn({ action: 'token_expiry_check', platform: 'instagram', username: account.username, outcome: 'failure', err: err.message });
- }
- }
- _tokenExpiryCache = { accounts, checkedAt: new Date().toISOString() };
- _tokenExpiryCacheAt = Date.now();
- return _tokenExpiryCache;
- });
- // Refresh Instagram long-lived tokens that are within TOKEN_REFRESH_THRESHOLD_DAYS of expiry.
- // Called by the scheduler's daily BullMQ job; can also be triggered manually from Settings.
- app.post('/meta/token-refresh', async (request, reply) => {
- const appCred = await getCredentials('meta_app');
- if (!appCred?.appId || !appCred?.appSecret) {
- return reply.code(400).send({ success: false, error: 'Meta app credentials not configured' });
- }
- const plainAppSecret = decryptToken(appCred.appSecret);
- if (!plainAppSecret) {
- return reply.code(500).send({ success: false, error: 'Failed to decrypt app secret' });
- }
- const ig = await getCredentials('instagram');
- const allAccounts = ig?.accounts || [];
- const selectedAccounts = allAccounts.filter((a) => a.selected && a.accessToken);
- if (!selectedAccounts.length) {
- return { success: true, refreshed: 0, skipped: 0, errors: 0 };
- }
- const appToken = `${appCred.appId}|${plainAppSecret}`;
- const refreshed = [];
- const skipped = [];
- const errors = [];
- for (const account of selectedAccounts) {
- const plainToken = decryptToken(account.accessToken);
- if (!plainToken) {
- errors.push({ username: account.username, error: 'decrypt_failed' });
- continue;
- }
- // Check current token expiry via debug_token
- let daysLeft = null;
- try {
- const debugRes = await axios.get(`${GRAPH_API}/debug_token`, {
- params: { input_token: plainToken, access_token: appToken },
- timeout: 10000,
- });
- const data = debugRes.data.data;
- if (!data.is_valid) {
- app.log.warn({ action: 'token_refresh', platform: 'instagram', username: account.username, outcome: 'skip', reason: 'invalid_token' });
- errors.push({ username: account.username, error: 'token_invalid' });
- continue;
- }
- // expires_at is a Unix timestamp; null means never-expiring (page token etc.)
- daysLeft = data.expires_at
- ? Math.ceil((data.expires_at * 1000 - Date.now()) / (1000 * 60 * 60 * 24))
- : null;
- } catch (err) {
- app.log.warn({ action: 'token_refresh', platform: 'instagram', username: account.username, step: 'debug_token', outcome: 'failure', err: err.message });
- errors.push({ username: account.username, error: err.message });
- continue;
- }
- // Token never expires or has plenty of time — skip
- if (daysLeft !== null && daysLeft > TOKEN_REFRESH_THRESHOLD_DAYS) {
- skipped.push({ username: account.username, daysLeft });
- continue;
- }
- // Refresh: exchange current long-lived token for a new one
- try {
- const refreshRes = await axios.get(`${GRAPH_API}/oauth/access_token`, {
- params: {
- grant_type: 'fb_exchange_token',
- client_id: appCred.appId,
- client_secret: plainAppSecret,
- fb_exchange_token: plainToken,
- },
- timeout: 15000,
- });
- // Mutates the element inside allAccounts (same object reference)
- account.accessToken = encryptToken(refreshRes.data.access_token);
- refreshed.push({ username: account.username, previousDaysLeft: daysLeft });
- app.log.info({ action: 'token_refresh', platform: 'instagram', username: account.username, outcome: 'success', previousDaysLeft: daysLeft });
- } catch (err) {
- app.log.error({ action: 'token_refresh', platform: 'instagram', username: account.username, outcome: 'failure', err: err.message });
- errors.push({ username: account.username, error: err.message });
- }
- }
- if (refreshed.length > 0) {
- await setCredentials('instagram', { accounts: allAccounts });
- _tokenExpiryCache = null; // force fresh expiry check on next poll
- }
- app.log.info({ action: 'token_refresh', platform: 'meta', outcome: 'complete', refreshed: refreshed.length, skipped: skipped.length, errors: errors.length });
- return { success: true, refreshed: refreshed.length, skipped: skipped.length, errors: errors.length };
- });
- // ─── Account Profiles ────────────────────────────────────────────────────────
- app.get('/profiles', async () => {
- const db = await getDb();
- const profiles = await db.collection('account_profiles').find({}).toArray();
- return { profiles };
- });
- app.get('/profiles/:accountKey', async (request, reply) => {
- const { accountKey } = request.params;
- const db = await getDb();
- const profile = await db.collection('account_profiles').findOne({ _id: accountKey });
- return profile ?? { _id: accountKey };
- });
- app.put('/profiles/:accountKey', async (request, reply) => {
- const { accountKey } = request.params;
- const {
- businessName = '', description = '', websiteUrl = '', industry = '',
- targetAudience = '', toneOfVoice = '', keywords = '', hashtags = '',
- postingGuidelines = '',
- } = request.body || {};
- const db = await getDb();
- await db.collection('account_profiles').updateOne(
- { _id: accountKey },
- { $set: { businessName, description, websiteUrl, industry, targetAudience, toneOfVoice, keywords, hashtags, postingGuidelines, updatedAt: new Date() } },
- { upsert: true }
- );
- return { success: true };
- });
- // ─── AI / Multi-provider ─────────────────────────────────────────────────────
- const DEFAULT_OLLAMA_ENDPOINT = process.env.OLLAMA_ENDPOINT || 'http://ollama:11434';
- const DEFAULT_OLLAMA_MODEL = process.env.OLLAMA_MODEL || 'llama3.2';
- const PROVIDER_MODELS = {
- openai: ['gpt-4o', 'gpt-4o-mini', 'gpt-4-turbo', 'gpt-3.5-turbo'],
- groq: ['llama-3.3-70b-versatile', 'llama-3.1-8b-instant', 'mixtral-8x7b-32768', 'gemma2-9b-it'],
- gemini: ['gemini-2.0-flash', 'gemini-1.5-flash', 'gemini-1.5-pro'],
- };
- const PROVIDER_BASE_URLS = {
- openai: 'https://api.openai.com/v1',
- groq: 'https://api.groq.com/openai/v1',
- };
- // Returns decrypted runtime config for the currently active provider
- async function getActiveProviderConfig() {
- const aiConfig = await getCredentials('ai_config');
- const provider = aiConfig?.provider || 'ollama';
- if (provider === 'openai' || provider === 'groq') {
- const doc = await getCredentials(`${provider}_config`);
- return {
- provider,
- apiKey: doc?.apiKey ? decryptToken(doc.apiKey) : null,
- model: doc?.model || PROVIDER_MODELS[provider][0],
- baseUrl: PROVIDER_BASE_URLS[provider],
- };
- }
- if (provider === 'gemini') {
- const doc = await getCredentials('gemini_config');
- return {
- provider,
- apiKey: doc?.apiKey ? decryptToken(doc.apiKey) : null,
- model: doc?.model || PROVIDER_MODELS.gemini[0],
- };
- }
- return {
- provider: 'ollama',
- endpoint: aiConfig?.endpoint || DEFAULT_OLLAMA_ENDPOINT,
- model: aiConfig?.model || DEFAULT_OLLAMA_MODEL,
- visionModel: aiConfig?.visionModel || 'llava',
- };
- }
- function buildOpenAIMessages(prompt, system) {
- const messages = [];
- if (system) messages.push({ role: 'system', content: system });
- messages.push({ role: 'user', content: prompt });
- return messages;
- }
- // Gemini encodes system as a leading user/model conversation pair
- function buildGeminiContents(prompt, system) {
- const contents = [];
- if (system) {
- contents.push({ role: 'user', parts: [{ text: system }] });
- contents.push({ role: 'model', parts: [{ text: 'Understood.' }] });
- }
- contents.push({ role: 'user', parts: [{ text: prompt }] });
- return contents;
- }
- app.get('/ai/config', async () => {
- const config = await getCredentials('ai_config');
- return {
- provider: config?.provider || 'ollama',
- endpoint: config?.endpoint || DEFAULT_OLLAMA_ENDPOINT,
- model: config?.model || DEFAULT_OLLAMA_MODEL,
- visionModel: config?.visionModel || 'llava',
- enabled: config?.enabled ?? true,
- };
- });
- app.put('/ai/config', async (request, reply) => {
- const { provider = 'ollama', endpoint, model, visionModel = 'llava', enabled = true } = request.body || {};
- if (provider === 'ollama' && !endpoint) return reply.code(400).send({ error: 'endpoint is required for Ollama' });
- await setCredentials('ai_config', { provider, endpoint, model, visionModel, enabled });
- return { success: true };
- });
- // ─── Provider management routes ───────────────────────────────────────────────
- app.get('/ai/providers', async () => {
- const aiConfig = await getCredentials('ai_config');
- const active = aiConfig?.provider || 'ollama';
- const [openaiDoc, groqDoc, geminiDoc] = await Promise.all([
- getCredentials('openai_config'),
- getCredentials('groq_config'),
- getCredentials('gemini_config'),
- ]);
- return {
- active,
- providers: [
- {
- name: 'ollama',
- configured: true,
- active: active === 'ollama',
- endpoint: aiConfig?.endpoint || DEFAULT_OLLAMA_ENDPOINT,
- model: aiConfig?.model || DEFAULT_OLLAMA_MODEL,
- visionModel: aiConfig?.visionModel || 'llava',
- },
- {
- name: 'openai',
- configured: !!openaiDoc?.apiKey,
- active: active === 'openai',
- model: openaiDoc?.model || PROVIDER_MODELS.openai[0],
- apiKeyHint: openaiDoc?.apiKey ? `sk-...${decryptToken(openaiDoc.apiKey).slice(-4)}` : null,
- },
- {
- name: 'groq',
- configured: !!groqDoc?.apiKey,
- active: active === 'groq',
- model: groqDoc?.model || PROVIDER_MODELS.groq[0],
- apiKeyHint: groqDoc?.apiKey ? `gsk_...${decryptToken(groqDoc.apiKey).slice(-4)}` : null,
- },
- {
- name: 'gemini',
- configured: !!geminiDoc?.apiKey,
- active: active === 'gemini',
- model: geminiDoc?.model || PROVIDER_MODELS.gemini[0],
- apiKeyHint: geminiDoc?.apiKey ? `AIza...${decryptToken(geminiDoc.apiKey).slice(-4)}` : null,
- },
- ],
- };
- });
- // PUT /ai/provider/:name — save credentials and optionally set as active
- // ollama body: { endpoint, model, visionModel, setActive? }
- // others body: { apiKey, model, setActive? }
- app.put('/ai/provider/:name', async (request, reply) => {
- const { name } = request.params;
- const { apiKey, model, endpoint, visionModel, setActive = false } = request.body || {};
- if (name === 'ollama') {
- if (!endpoint) return reply.code(400).send({ error: 'endpoint is required for Ollama' });
- const existing = await getCredentials('ai_config') || {};
- await setCredentials('ai_config', {
- ...existing,
- provider: setActive ? 'ollama' : (existing.provider || 'ollama'),
- endpoint,
- model: model || DEFAULT_OLLAMA_MODEL,
- visionModel: visionModel || 'llava',
- });
- } else if (['openai', 'groq', 'gemini'].includes(name)) {
- if (!apiKey) return reply.code(400).send({ error: 'apiKey is required' });
- await setCredentials(`${name}_config`, {
- apiKey: encryptToken(apiKey),
- model: model || PROVIDER_MODELS[name][0],
- });
- if (setActive) {
- const existing = await getCredentials('ai_config') || {};
- await setCredentials('ai_config', { ...existing, provider: name });
- }
- } else {
- return reply.code(404).send({ error: `Unknown provider: ${name}` });
- }
- return { success: true };
- });
- // DELETE /ai/provider/:name — remove provider credentials; falls back to ollama if it was active
- app.delete('/ai/provider/:name', async (request, reply) => {
- const { name } = request.params;
- if (name === 'ollama') return reply.code(400).send({ error: 'Cannot remove Ollama provider' });
- if (!['openai', 'groq', 'gemini'].includes(name)) return reply.code(404).send({ error: `Unknown provider: ${name}` });
- const db = await getDb();
- await db.collection('platform_credentials').deleteOne({ _id: `${name}_config` });
- const aiConfig = await getCredentials('ai_config') || {};
- if (aiConfig.provider === name) {
- await setCredentials('ai_config', { ...aiConfig, provider: 'ollama' });
- }
- return { success: true };
- });
- // POST /ai/provider/:name/models — list models for a provider (test without saving key)
- app.post('/ai/provider/:name/models', async (request, reply) => {
- const { name } = request.params;
- const { apiKey: bodyApiKey, endpoint: bodyEndpoint } = request.body || {};
- if (name === 'ollama') {
- const aiConfig = await getCredentials('ai_config');
- const ep = bodyEndpoint || aiConfig?.endpoint || DEFAULT_OLLAMA_ENDPOINT;
- try {
- const res = await axios.get(`${ep}/api/tags`, { timeout: 5000 });
- return { models: (res.data.models || []).map((m) => m.name) };
- } catch (err) {
- return reply.code(503).send({ error: 'Could not reach Ollama', detail: err.message });
- }
- }
- if (['openai', 'groq', 'gemini'].includes(name)) {
- return { models: PROVIDER_MODELS[name] };
- }
- return reply.code(404).send({ error: `Unknown provider: ${name}` });
- });
- app.get('/ai/models', async (request, reply) => {
- const config = await getCredentials('ai_config');
- const provider = config?.provider || 'ollama';
- if (provider !== 'ollama') {
- return { models: PROVIDER_MODELS[provider] || [], provider };
- }
- const endpoint = request.query.endpoint || config?.endpoint || DEFAULT_OLLAMA_ENDPOINT;
- try {
- const res = await axios.get(`${endpoint}/api/tags`, { timeout: 5000 });
- const models = (res.data.models || []).map((m) => m.name);
- return { models, endpoint };
- } catch (err) {
- return reply.code(503).send({ error: 'Could not reach Ollama — check the endpoint', detail: err.message });
- }
- });
- app.post('/ai/generate', async (request, reply) => {
- const { prompt, system: rawSystem, model: reqModel, useCompetitorContext, destinations } = request.body || {};
- if (!prompt?.trim()) return reply.code(400).send({ error: 'prompt is required' });
- const competitorSuffix = useCompetitorContext ? await buildCompetitorSystemSuffix() : '';
- const platformRules = buildPlatformRulesBlock(destinations);
- const system = rawSystem ? rawSystem + competitorSuffix + platformRules : ((competitorSuffix + platformRules) || undefined);
- const pconf = await getActiveProviderConfig();
- const model = reqModel || pconf.model;
- try {
- if (pconf.provider === 'ollama') {
- const res = await axios.post(`${pconf.endpoint}/api/generate`, { model, prompt, system, stream: false }, { timeout: 90000 });
- return { text: res.data.response, model, done: res.data.done };
- }
- if (pconf.provider === 'openai' || pconf.provider === 'groq') {
- if (!pconf.apiKey) return reply.code(503).send({ error: `${pconf.provider} API key not configured` });
- const res = await axios.post(`${pconf.baseUrl}/chat/completions`, {
- model, messages: buildOpenAIMessages(prompt, system), stream: false,
- }, { headers: { Authorization: `Bearer ${pconf.apiKey}` }, timeout: 90000 });
- return { text: res.data.choices[0]?.message?.content || '', model, done: true };
- }
- if (pconf.provider === 'gemini') {
- if (!pconf.apiKey) return reply.code(503).send({ error: 'Gemini API key not configured' });
- const res = await axios.post(
- `https://generativelanguage.googleapis.com/v1beta/models/${model}:generateContent?key=${pconf.apiKey}`,
- { contents: buildGeminiContents(prompt, system) },
- { timeout: 90000 },
- );
- return { text: res.data.candidates?.[0]?.content?.parts?.[0]?.text || '', model, done: true };
- }
- return reply.code(400).send({ error: `Unknown provider: ${pconf.provider}` });
- } catch (err) {
- const status = err.response?.status || 503;
- return reply.code(status).send({ error: 'AI generation failed', detail: err.message });
- }
- });
- const CAPTION_PROMPT = 'Generate an engaging, concise social media caption for this image. Write only the caption text with relevant hashtags. No explanations or preamble.';
- // Vision caption — supports ollama, openai, gemini (groq has no vision)
- app.post('/ai/caption', async (request, reply) => {
- const { imageUrl, model: reqModel } = request.body || {};
- if (!imageUrl) return reply.code(400).send({ error: 'imageUrl is required' });
- const pconf = await getActiveProviderConfig();
- let imageBase64, imageMime;
- try {
- let imageBuffer;
- if (imageUrl.startsWith('/media/')) {
- const filename = path.basename(imageUrl);
- imageBuffer = fs.readFileSync(path.join(UPLOAD_DIR, filename));
- } else {
- const imgRes = await axios.get(imageUrl, { responseType: 'arraybuffer', timeout: 15000 });
- imageBuffer = Buffer.from(imgRes.data);
- imageMime = imgRes.headers['content-type'] || 'image/jpeg';
- }
- imageBase64 = imageBuffer.toString('base64');
- if (!imageMime) imageMime = 'image/jpeg';
- } catch (err) {
- return reply.code(400).send({ error: 'Could not load image', detail: err.message });
- }
- try {
- const model = reqModel || pconf.visionModel || pconf.model;
- if (pconf.provider === 'ollama') {
- const res = await axios.post(`${pconf.endpoint}/api/generate`, {
- model, prompt: CAPTION_PROMPT, images: [imageBase64], stream: false,
- }, { timeout: 90000 });
- return { caption: res.data.response, model };
- }
- if (pconf.provider === 'openai') {
- if (!pconf.apiKey) return reply.code(503).send({ error: 'OpenAI API key not configured' });
- const res = await axios.post(`${pconf.baseUrl}/chat/completions`, {
- model: model || 'gpt-4o',
- messages: [{ role: 'user', content: [
- { type: 'text', text: CAPTION_PROMPT },
- { type: 'image_url', image_url: { url: `data:${imageMime};base64,${imageBase64}` } },
- ]}],
- stream: false,
- }, { headers: { Authorization: `Bearer ${pconf.apiKey}` }, timeout: 90000 });
- return { caption: res.data.choices[0]?.message?.content || '', model };
- }
- if (pconf.provider === 'gemini') {
- if (!pconf.apiKey) return reply.code(503).send({ error: 'Gemini API key not configured' });
- const geminiModel = model || 'gemini-1.5-flash';
- const res = await axios.post(
- `https://generativelanguage.googleapis.com/v1beta/models/${geminiModel}:generateContent?key=${pconf.apiKey}`,
- { contents: [{ role: 'user', parts: [
- { text: CAPTION_PROMPT },
- { inlineData: { mimeType: imageMime, data: imageBase64 } },
- ]}]},
- { timeout: 90000 },
- );
- return { caption: res.data.candidates?.[0]?.content?.parts?.[0]?.text || '', model: geminiModel };
- }
- return reply.code(400).send({ error: `Provider ${pconf.provider} does not support vision captions` });
- } catch (err) {
- const status = err.response?.status || 503;
- return reply.code(status).send({ error: 'Caption generation failed', detail: err.message });
- }
- });
- // SSE streaming endpoint — normalized data: { token, done } format for all providers
- app.post('/ai/stream', async (request, reply) => {
- const { prompt, system: rawSystem, model: reqModel, useCompetitorContext, destinations } = request.body || {};
- if (!prompt?.trim()) return reply.code(400).send({ error: 'prompt is required' });
- const competitorSuffix = useCompetitorContext ? await buildCompetitorSystemSuffix() : '';
- const platformRules = buildPlatformRulesBlock(destinations);
- const system = rawSystem ? rawSystem + competitorSuffix + platformRules : ((competitorSuffix + platformRules) || undefined);
- const pconf = await getActiveProviderConfig();
- const model = reqModel || pconf.model;
- reply.raw.setHeader('Content-Type', 'text/event-stream');
- reply.raw.setHeader('Cache-Control', 'no-cache');
- reply.raw.setHeader('X-Accel-Buffering', 'no');
- reply.raw.setHeader('Connection', 'keep-alive');
- reply.raw.flushHeaders();
- const writeToken = (token, done = false) => reply.raw.write(`data: ${JSON.stringify({ token, done })}\n\n`);
- const writeError = (msg) => { reply.raw.write(`data: ${JSON.stringify({ error: msg, done: true })}\n\n`); reply.raw.end(); };
- try {
- if (pconf.provider === 'ollama') {
- const ollamaRes = await axios.post(`${pconf.endpoint}/api/generate`, { model, prompt, system, stream: true }, { responseType: 'stream', timeout: 120000 });
- ollamaRes.data.on('data', (chunk) => {
- try {
- for (const line of chunk.toString().split('\n').filter(Boolean)) {
- const data = JSON.parse(line);
- writeToken(data.response || '', !!data.done);
- }
- } catch (_) {}
- });
- ollamaRes.data.on('end', () => reply.raw.end());
- ollamaRes.data.on('error', (err) => writeError(err.message));
- return;
- }
- if (pconf.provider === 'openai' || pconf.provider === 'groq') {
- if (!pconf.apiKey) return writeError(`${pconf.provider} API key not configured`);
- const upstreamRes = await axios.post(`${pconf.baseUrl}/chat/completions`, {
- model, messages: buildOpenAIMessages(prompt, system), stream: true,
- }, { headers: { Authorization: `Bearer ${pconf.apiKey}` }, responseType: 'stream', timeout: 120000 });
- upstreamRes.data.on('data', (chunk) => {
- try {
- for (const line of chunk.toString().split('\n').filter(Boolean)) {
- if (!line.startsWith('data: ')) continue;
- const payload = line.slice(6).trim();
- if (payload === '[DONE]') { writeToken('', true); return; }
- const data = JSON.parse(payload);
- const token = data.choices?.[0]?.delta?.content || '';
- if (token) writeToken(token);
- }
- } catch (_) {}
- });
- upstreamRes.data.on('end', () => reply.raw.end());
- upstreamRes.data.on('error', (err) => writeError(err.message));
- return;
- }
- if (pconf.provider === 'gemini') {
- if (!pconf.apiKey) return writeError('Gemini API key not configured');
- const geminiRes = await axios.post(
- `https://generativelanguage.googleapis.com/v1beta/models/${model}:streamGenerateContent?alt=sse&key=${pconf.apiKey}`,
- { contents: buildGeminiContents(prompt, system) },
- { responseType: 'stream', timeout: 120000 },
- );
- geminiRes.data.on('data', (chunk) => {
- try {
- for (const line of chunk.toString().split('\n').filter(Boolean)) {
- if (!line.startsWith('data: ')) continue;
- const data = JSON.parse(line.slice(6));
- const token = data.candidates?.[0]?.content?.parts?.[0]?.text || '';
- if (token) writeToken(token);
- }
- } catch (_) {}
- });
- geminiRes.data.on('end', () => { writeToken('', true); reply.raw.end(); });
- geminiRes.data.on('error', (err) => writeError(err.message));
- return;
- }
- writeError(`Unknown provider: ${pconf.provider}`);
- } catch (err) {
- writeError(err.message);
- }
- });
- // ─── Bulk AI Draft Generation ─────────────────────────────────────────────────
- // POST /ai/bulk-draft — kick off a batch; returns batchId immediately (non-blocking)
- // Body: { topics: string[], destinations: Destination[], tone?: string, model?: string }
- app.post('/ai/bulk-draft', async (request, reply) => {
- const { topics, destinations = [], tone = '', model: reqModel } = request.body || {};
- if (!Array.isArray(topics) || !topics.length) return reply.code(400).send({ error: 'topics array is required' });
- const filteredTopics = topics.map((t) => (typeof t === 'string' ? t.trim() : '')).filter(Boolean);
- if (!filteredTopics.length) return reply.code(400).send({ error: 'No valid topics provided' });
- const db = await getDb();
- const batchId = new ObjectId();
- const now = new Date();
- await db.collection('bulk_draft_batches').insertOne({
- _id: batchId,
- total: filteredTopics.length,
- completed: 0,
- failed: 0,
- status: 'processing',
- createdAt: now,
- updatedAt: now,
- });
- const selectedDests = destinations.filter((d) => d.selected);
- const toneClause = tone ? `Write in a ${tone} tone.` : '';
- const platformRules = buildPlatformRulesBlock(selectedDests);
- const system = `You are a social media content writer. Create engaging, concise posts that perform well. ${toneClause} Write only the post text with relevant hashtags. No explanations or preamble.${platformRules}`;
- // Fire-and-forget — process topics sequentially in the background
- (async () => {
- const pconf = await getActiveProviderConfig();
- const model = reqModel || pconf.model;
- for (const topic of filteredTopics) {
- try {
- const prompt = `Write a social media post about: ${topic}`;
- let content = '';
- if (pconf.provider === 'ollama') {
- const res = await axios.post(`${pconf.endpoint}/api/generate`, { model, prompt, system, stream: false }, { timeout: 90000 });
- content = res.data.response || '';
- } else if (pconf.provider === 'openai' || pconf.provider === 'groq') {
- if (!pconf.apiKey) throw new Error(`${pconf.provider} API key not configured`);
- const res = await axios.post(`${pconf.baseUrl}/chat/completions`, {
- model, messages: buildOpenAIMessages(prompt, system), stream: false,
- }, { headers: { Authorization: `Bearer ${pconf.apiKey}` }, timeout: 90000 });
- content = res.data.choices[0]?.message?.content || '';
- } else if (pconf.provider === 'gemini') {
- if (!pconf.apiKey) throw new Error('Gemini API key not configured');
- const res = await axios.post(
- `https://generativelanguage.googleapis.com/v1beta/models/${model}:generateContent?key=${pconf.apiKey}`,
- { contents: buildGeminiContents(prompt, system) },
- { timeout: 90000 },
- );
- content = res.data.candidates?.[0]?.content?.parts?.[0]?.text || '';
- }
- if (content.trim()) {
- const draftNow = new Date();
- await db.collection('drafts').insertOne({
- content: content.trim(),
- mediaUrl: '',
- scheduledAt: '',
- destinations: selectedDests,
- batchId: batchId.toString(),
- topic,
- createdAt: draftNow,
- updatedAt: draftNow,
- });
- }
- await db.collection('bulk_draft_batches').updateOne(
- { _id: batchId },
- { $inc: { completed: 1 }, $set: { updatedAt: new Date() } },
- );
- } catch (err) {
- log.error({ action: 'bulk_draft_topic', topic, outcome: 'failure', err: err.message });
- await db.collection('bulk_draft_batches').updateOne(
- { _id: batchId },
- { $inc: { failed: 1 }, $set: { updatedAt: new Date() } },
- );
- }
- }
- await db.collection('bulk_draft_batches').updateOne(
- { _id: batchId },
- { $set: { status: 'done', updatedAt: new Date() } },
- );
- log.info({ action: 'bulk_draft_batch', batchId: batchId.toString(), total: filteredTopics.length, outcome: 'success' });
- })().catch((err) => {
- log.error({ action: 'bulk_draft_batch', batchId: batchId.toString(), outcome: 'failure', err: err.message });
- getDb().then((d) => d.collection('bulk_draft_batches').updateOne(
- { _id: batchId },
- { $set: { status: 'failed', updatedAt: new Date() } },
- )).catch(() => {});
- });
- return reply.code(202).send({ batchId: batchId.toString() });
- });
- // GET /ai/bulk-draft/:batchId — poll batch progress
- app.get('/ai/bulk-draft/:batchId', async (request, reply) => {
- const { batchId } = request.params;
- let oid;
- try { oid = new ObjectId(batchId); } catch { return reply.code(400).send({ error: 'Invalid batchId' }); }
- const db = await getDb();
- const batch = await db.collection('bulk_draft_batches').findOne({ _id: oid });
- if (!batch) return reply.code(404).send({ error: 'Batch not found' });
- return {
- batchId: batch._id.toString(),
- total: batch.total,
- completed: batch.completed,
- failed: batch.failed,
- status: batch.status,
- processed: batch.completed + batch.failed,
- };
- });
- // ─── Platform service URLs ────────────────────────────────────────────────────
- const PLATFORM_SERVICES = {
- twitter: process.env.TWITTER_SERVICE_URL || 'http://twitter:3001',
- linkedin: process.env.LINKEDIN_SERVICE_URL || 'http://linkedin:3002',
- mastodon: process.env.MASTODON_SERVICE_URL || 'http://mastodon:3003',
- bluesky: process.env.BLUESKY_SERVICE_URL || 'http://bluesky:3004',
- instagram: process.env.INSTAGRAM_SERVICE_URL || 'http://instagram:3005',
- facebook: process.env.FACEBOOK_SERVICE_URL || 'http://facebook:3006',
- };
- // Direct multi-platform post endpoint.
- // Body: { content: string, destinations: Array<{ platform, accountId?, imageUrl?, videoUrl?, link? }> }
- app.post('/post', async (request, reply) => {
- const { content, destinations = [], firstComment } = request.body || {};
- if (!content?.trim()) return reply.code(400).send({ error: 'content is required' });
- if (!destinations.length) return reply.code(400).send({ error: 'destinations must not be empty' });
- const results = await Promise.allSettled(
- destinations.map(async ({ platform, accountId, imageUrl, videoUrl, link }) => {
- const serviceUrl = PLATFORM_SERVICES[platform];
- if (!serviceUrl) throw new Error(`Unknown platform: ${platform}`);
- const res = await axios.post(
- `${serviceUrl}/post`,
- { content, accountId, imageUrl, videoUrl, link, firstComment: firstComment?.trim() || undefined },
- { timeout: 30000 }
- );
- return { platform, accountId, ...res.data };
- })
- );
- const output = results.map((r, i) =>
- r.status === 'fulfilled'
- ? r.value
- : { platform: destinations[i].platform, accountId: destinations[i].accountId, success: false, error: r.reason?.message }
- );
- const anyFailed = output.some((r) => !r.success);
- const anySucceeded = output.some((r) => r.success);
- const postStatus = anyFailed && anySucceeded ? 'partial' : anyFailed ? 'failed' : 'published';
- // Record the post for analytics
- try {
- const db = await getDb();
- await db.collection('posts').insertOne({
- _id: crypto.randomUUID(),
- type: 'immediate',
- content,
- ...(firstComment?.trim() && { firstComment: firstComment.trim() }),
- destinations,
- platformResults: Object.fromEntries(
- output.map((r) => [
- r.accountId ? `${r.platform}:${r.accountId}` : r.platform,
- { success: r.success, ...(r.error && { error: r.error }) },
- ])
- ),
- status: postStatus,
- publishedAt: new Date(),
- createdAt: new Date(),
- });
- } catch (err) {
- app.log.warn({ action: 'post_record', outcome: 'failure', err: err.message });
- }
- return reply.code(anyFailed ? 207 : 200).send({ results: output });
- });
- // ─── Legacy post route ────────────────────────────────────────────────────────
- let rabbitMQProducer = new RabbitMQProducer();
- app.post('/', async (request, reply) => {
- try {
- await rabbitMQProducer.sendMessage('formatter', request.body.message);
- reply.send({ status: 'ok' });
- } catch (error) {
- app.log.error({ action: 'legacy_post', outcome: 'failure', err: error.message });
- reply.status(500).send({ error: 'Internal Server Error' });
- }
- });
- // ─── Meta App Credentials ────────────────────────────────────────────────────
- // Save Facebook App ID + Secret (entered by user in Settings UI)
- app.post('/credentials/meta-app', async (request, reply) => {
- const { appId, appSecret } = request.body || {};
- if (!appId || !appSecret) {
- return reply.code(400).send({ error: 'appId and appSecret are required' });
- }
- await setCredentials('meta_app', { appId, appSecret: encryptToken(appSecret) });
- return { success: true };
- });
- // Get Meta App config (secret is masked for UI display)
- app.get('/credentials/meta-app', async () => {
- const cred = await getCredentials('meta_app');
- if (!cred) return { configured: false };
- const plainSecret = decryptToken(cred.appSecret) || '';
- return { configured: true, appId: cred.appId, appSecretHint: plainSecret ? `****${plainSecret.slice(-4)}` : '****' };
- });
- // ─── Meta OAuth Flow ──────────────────────────────────────────────────────────
- // Return the Facebook OAuth URL to redirect the user to
- app.get('/auth/meta/init', async (request, reply) => {
- const cred = await getCredentials('meta_app');
- if (!cred?.appId) {
- return reply.code(400).send({ error: 'Save your Facebook App ID and Secret first' });
- }
- const redirectUri = `${APP_BASE_URL}/api/auth/meta/callback`;
- const scopes = [
- 'pages_manage_posts',
- 'pages_read_engagement',
- 'instagram_basic',
- 'instagram_content_publish',
- 'instagram_manage_insights',
- ].join(',');
- const url = `https://www.facebook.com/v22.0/dialog/oauth?client_id=${cred.appId}&redirect_uri=${encodeURIComponent(redirectUri)}&scope=${scopes}&response_type=code`;
- return { url };
- });
- // OAuth callback — Facebook redirects here after user authorises
- app.get('/auth/meta/callback', async (request, reply) => {
- const { code, error: oauthError } = request.query;
- if (oauthError) {
- return reply.redirect(`${APP_BASE_URL}/settings?meta_error=${encodeURIComponent(oauthError)}`);
- }
- if (!code) {
- return reply.redirect(`${APP_BASE_URL}/settings?meta_error=no_code`);
- }
- try {
- const appCred = await getCredentials('meta_app');
- if (!appCred?.appId) throw new Error('App credentials not configured');
- const appSecret = decryptToken(appCred.appSecret);
- if (!appSecret) throw new Error('Failed to decrypt app secret');
- const redirectUri = `${APP_BASE_URL}/api/auth/meta/callback`;
- // Exchange code for short-lived token
- const shortRes = await axios.get(`${GRAPH_API}/oauth/access_token`, {
- params: {
- client_id: appCred.appId,
- client_secret: appSecret,
- redirect_uri: redirectUri,
- code,
- },
- });
- // Upgrade to long-lived user token (~60 days)
- const longRes = await axios.get(`${GRAPH_API}/oauth/access_token`, {
- params: {
- grant_type: 'fb_exchange_token',
- client_id: appCred.appId,
- client_secret: appSecret,
- fb_exchange_token: shortRes.data.access_token,
- },
- });
- const userToken = longRes.data.access_token;
- // Fetch all managed Facebook Pages
- const pagesRes = await axios.get(`${GRAPH_API}/me/accounts`, {
- params: { access_token: userToken, fields: 'id,name,access_token,picture' },
- });
- const pages = [];
- const igAccounts = [];
- for (const page of pagesRes.data.data || []) {
- pages.push({
- id: page.id,
- name: page.name,
- accessToken: encryptToken(page.access_token),
- picture: page.picture?.data?.url || null,
- selected: false,
- });
- // Check for linked Instagram Business Account
- try {
- const igRes = await axios.get(`${GRAPH_API}/${page.id}`, {
- params: {
- fields: 'instagram_business_account',
- access_token: page.access_token,
- },
- });
- if (igRes.data.instagram_business_account?.id) {
- const igId = igRes.data.instagram_business_account.id;
- // Fetch IG account details
- const igProfile = await axios.get(`${GRAPH_API}/${igId}`, {
- params: {
- fields: 'id,username,name,profile_picture_url',
- access_token: userToken,
- },
- });
- igAccounts.push({
- id: igId,
- username: igProfile.data.username || igProfile.data.name,
- name: igProfile.data.name,
- avatar: igProfile.data.profile_picture_url || null,
- accessToken: encryptToken(userToken),
- pageId: page.id,
- selected: false,
- });
- }
- } catch (_) {
- // Page has no linked Instagram account — skip
- }
- }
- // Store discovery results for the UI to pick from
- await setCredentials('meta_discovery', { pages, igAccounts, discoveredAt: new Date() });
- reply.redirect(`${APP_BASE_URL}/settings?meta_discovery=1`);
- } catch (err) {
- app.log.error({ action: 'meta_oauth_callback', platform: 'meta', outcome: 'failure', err: err.response?.data?.error?.message || err.message });
- reply.redirect(`${APP_BASE_URL}/settings?meta_error=${encodeURIComponent(err.message)}`);
- }
- });
- // Return pending discovery results so the UI can render the page picker
- app.get('/auth/meta/discovered', async () => {
- const discovery = await getCredentials('meta_discovery');
- if (!discovery) return { pages: [], igAccounts: [] };
- return { pages: discovery.pages || [], igAccounts: discovery.igAccounts || [] };
- });
- // User has chosen which pages/accounts to connect
- app.post('/auth/meta/save', async (request, reply) => {
- const { selectedPageIds = [], selectedIgAccountIds = [] } = request.body || {};
- const discovery = await getCredentials('meta_discovery');
- if (!discovery) return reply.code(400).send({ error: 'No discovery data found — reconnect via OAuth' });
- const fbPages = (discovery.pages || []).map((p) => ({
- ...p,
- selected: selectedPageIds.includes(p.id),
- }));
- const igAccounts = (discovery.igAccounts || []).map((a) => ({
- ...a,
- selected: selectedIgAccountIds.includes(a.id),
- }));
- await setCredentials('facebook', { pages: fbPages });
- await setCredentials('instagram', { accounts: igAccounts });
- await deleteCredentials('meta_discovery');
- _tokenExpiryCache = null; // invalidate cache after reconnect
- return { success: true, facebookPages: fbPages.filter((p) => p.selected).length, instagramAccounts: igAccounts.filter((a) => a.selected).length };
- });
- // Disconnect all Meta platforms
- app.delete('/credentials/meta', async () => {
- await deleteCredentials('facebook');
- await deleteCredentials('instagram');
- await deleteCredentials('meta_discovery');
- return { success: true };
- });
- // ─── Pinterest OAuth Flow ─────────────────────────────────────────────────────
- const PINTEREST_API = 'https://api.pinterest.com/v5';
- const PINTEREST_AUTH_URL = 'https://www.pinterest.com/oauth/';
- const PINTEREST_TOKEN_URL = 'https://api.pinterest.com/v5/oauth/token';
- app.post('/credentials/pinterest-app', async (request, reply) => {
- const { clientId, clientSecret } = request.body || {};
- if (!clientId || !clientSecret) {
- return reply.code(400).send({ error: 'clientId and clientSecret are required' });
- }
- await setCredentials('pinterest_app', { clientId, clientSecret: encryptToken(clientSecret) });
- log.info({ action: 'pinterest_app_save', outcome: 'success' });
- return { success: true };
- });
- app.get('/credentials/pinterest-app', async () => {
- const cred = await getCredentials('pinterest_app');
- if (!cred) return { configured: false };
- const plain = decryptToken(cred.clientSecret) || '';
- return { configured: true, clientId: cred.clientId, clientSecretHint: plain ? `****${plain.slice(-4)}` : '****' };
- });
- app.get('/auth/pinterest/init', async (request, reply) => {
- const cred = await getCredentials('pinterest_app');
- if (!cred?.clientId) {
- return reply.code(400).send({ error: 'Save your Pinterest Client ID and Secret first' });
- }
- const redirectUri = `${APP_BASE_URL}/api/auth/pinterest/callback`;
- const scopes = 'pins:read,pins:write,boards:read,user_accounts:read';
- const url = `${PINTEREST_AUTH_URL}?client_id=${cred.clientId}&redirect_uri=${encodeURIComponent(redirectUri)}&response_type=code&scope=${scopes}`;
- return { url };
- });
- app.get('/auth/pinterest/callback', async (request, reply) => {
- const { code, error: oauthError } = request.query;
- if (oauthError) {
- return reply.redirect(`${APP_BASE_URL}/settings?pinterest_error=${encodeURIComponent(oauthError)}`);
- }
- if (!code) {
- return reply.redirect(`${APP_BASE_URL}/settings?pinterest_error=no_code`);
- }
- try {
- const appCred = await getCredentials('pinterest_app');
- if (!appCred?.clientId) throw new Error('App credentials not configured');
- const clientSecret = decryptToken(appCred.clientSecret);
- if (!clientSecret) throw new Error('Failed to decrypt client secret');
- const redirectUri = `${APP_BASE_URL}/api/auth/pinterest/callback`;
- const basicAuth = Buffer.from(`${appCred.clientId}:${clientSecret}`).toString('base64');
- const tokenRes = await axios.post(
- PINTEREST_TOKEN_URL,
- new URLSearchParams({ grant_type: 'authorization_code', code, redirect_uri: redirectUri }).toString(),
- {
- headers: {
- Authorization: `Basic ${basicAuth}`,
- 'Content-Type': 'application/x-www-form-urlencoded',
- },
- timeout: 15000,
- }
- );
- const { access_token, refresh_token, expires_in } = tokenRes.data;
- const tokenExpiry = new Date(Date.now() + (expires_in || 30 * 24 * 60 * 60) * 1000).toISOString();
- const [userRes, boardsRes] = await Promise.all([
- axios.get(`${PINTEREST_API}/user_account`, {
- headers: { Authorization: `Bearer ${access_token}` },
- timeout: 10000,
- }),
- axios.get(`${PINTEREST_API}/boards`, {
- headers: { Authorization: `Bearer ${access_token}` },
- params: { page_size: 100 },
- timeout: 15000,
- }),
- ]);
- const boards = (boardsRes.data.items || []).map((b) => ({
- id: b.id,
- name: b.name,
- privacy: b.privacy,
- selected: false,
- }));
- await setCredentials('pinterest', {
- userId: userRes.data.username,
- username: userRes.data.username,
- displayName: userRes.data.business_name || userRes.data.username,
- avatar: userRes.data.profile_image,
- accessToken: encryptToken(access_token),
- refreshToken: refresh_token ? encryptToken(refresh_token) : null,
- tokenExpiry,
- boards,
- });
- log.info({ action: 'pinterest_oauth_callback', username: userRes.data.username, boards: boards.length, outcome: 'success' });
- reply.redirect(`${APP_BASE_URL}/settings?pinterest_connected=1`);
- } catch (err) {
- const msg = err.response?.data?.message || err.message;
- log.error({ action: 'pinterest_oauth_callback', outcome: 'failure', err: msg });
- reply.redirect(`${APP_BASE_URL}/settings?pinterest_error=${encodeURIComponent(msg)}`);
- }
- });
- app.post('/credentials/pinterest/boards', async (request, reply) => {
- const { selectedBoardIds = [] } = request.body || {};
- const cred = await getCredentials('pinterest');
- if (!cred) return reply.code(400).send({ error: 'Pinterest not connected' });
- const boards = (cred.boards || []).map((b) => ({ ...b, selected: selectedBoardIds.includes(b.id) }));
- await setCredentials('pinterest', { ...cred, boards });
- log.info({ action: 'pinterest_boards_save', selected: boards.filter((b) => b.selected).length, outcome: 'success' });
- return { success: true, selected: boards.filter((b) => b.selected).length };
- });
- app.delete('/credentials/pinterest', async () => {
- await deleteCredentials('pinterest');
- return { success: true };
- });
- // ─── TikTok OAuth ─────────────────────────────────────────────────────────────
- const TIKTOK_AUTH_URL = 'https://www.tiktok.com/v2/auth/authorize/';
- const TIKTOK_TOKEN_URL = 'https://open.tiktokapis.com/v2/oauth/token/';
- const TIKTOK_API = 'https://open.tiktokapis.com/v2';
- app.post('/credentials/tiktok-app', async (request, reply) => {
- const { clientKey, clientSecret } = request.body || {};
- if (!clientKey || !clientSecret) return reply.code(400).send({ error: 'clientKey and clientSecret are required' });
- await setCredentials('tiktok_app', { clientKey, clientSecret: encryptToken(clientSecret) });
- log.info({ action: 'tiktok_app_save', outcome: 'success' });
- return { success: true };
- });
- app.get('/credentials/tiktok-app', async () => {
- const cred = await getCredentials('tiktok_app');
- if (!cred?.clientKey) return { configured: false };
- return { configured: true, clientKey: cred.clientKey, clientSecretHint: `****${decryptToken(cred.clientSecret).slice(-4)}` };
- });
- app.get('/auth/tiktok/init', async (request, reply) => {
- const cred = await getCredentials('tiktok_app');
- if (!cred?.clientKey) return reply.code(400).send({ error: 'Save your TikTok Client Key and Secret first' });
- const codeVerifier = crypto.randomBytes(32).toString('base64url');
- const codeChallenge = crypto.createHash('sha256').update(codeVerifier).digest('base64url');
- const state = crypto.randomBytes(16).toString('hex');
- // Persist PKCE verifier for the callback
- const db = await getDb();
- await db.collection('platform_credentials').updateOne(
- { _id: 'tiktok_pkce' },
- { $set: { codeVerifier, state, createdAt: new Date() } },
- { upsert: true }
- );
- const redirectUri = `${APP_BASE_URL}/api/auth/tiktok/callback`;
- const scopes = 'user.info.basic,video.list,video.publish';
- const params = new URLSearchParams({
- client_key: cred.clientKey,
- scope: scopes,
- response_type: 'code',
- redirect_uri: redirectUri,
- state,
- code_challenge: codeChallenge,
- code_challenge_method: 'S256',
- });
- return { url: `${TIKTOK_AUTH_URL}?${params.toString()}` };
- });
- app.get('/auth/tiktok/callback', async (request, reply) => {
- const { code, state, error: oauthError, error_description } = request.query;
- if (oauthError) {
- const msg = error_description || oauthError;
- return reply.redirect(`${APP_BASE_URL}/settings?tiktok_error=${encodeURIComponent(msg)}`);
- }
- if (!code) {
- return reply.redirect(`${APP_BASE_URL}/settings?tiktok_error=no_code`);
- }
- try {
- const db = await getDb();
- const pkce = await db.collection('platform_credentials').findOne({ _id: 'tiktok_pkce' });
- if (!pkce?.codeVerifier) throw new Error('PKCE state not found — try connecting again');
- if (state && pkce.state && state !== pkce.state) throw new Error('OAuth state mismatch');
- const appCred = await getCredentials('tiktok_app');
- if (!appCred?.clientKey) throw new Error('App credentials not configured');
- const clientSecret = decryptToken(appCred.clientSecret);
- const redirectUri = `${APP_BASE_URL}/api/auth/tiktok/callback`;
- const tokenRes = await axios.post(
- TIKTOK_TOKEN_URL,
- new URLSearchParams({
- client_key: appCred.clientKey,
- client_secret: clientSecret,
- code,
- grant_type: 'authorization_code',
- redirect_uri: redirectUri,
- code_verifier: pkce.codeVerifier,
- }).toString(),
- { headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, timeout: 15000 }
- );
- const { access_token, refresh_token, expires_in, refresh_expires_in, open_id } = tokenRes.data;
- const tokenExpiry = new Date(Date.now() + (expires_in || 86400) * 1000).toISOString();
- const refreshExpiry = new Date(Date.now() + (refresh_expires_in || 31536000) * 1000).toISOString();
- const userRes = await axios.get(`${TIKTOK_API}/user/info/`, {
- headers: { Authorization: `Bearer ${access_token}` },
- params: { fields: 'open_id,display_name,avatar_url,username' },
- timeout: 10000,
- });
- const user = userRes.data?.data?.user || {};
- await setCredentials('tiktok', {
- openId: open_id || user.open_id,
- username: user.username || user.display_name,
- displayName: user.display_name,
- avatar: user.avatar_url || null,
- accessToken: encryptToken(access_token),
- refreshToken: refresh_token ? encryptToken(refresh_token) : null,
- tokenExpiry,
- refreshExpiry,
- });
- // Clean up PKCE temp state
- await db.collection('platform_credentials').deleteOne({ _id: 'tiktok_pkce' });
- log.info({ action: 'tiktok_oauth_callback', username: user.username || user.display_name, outcome: 'success' });
- reply.redirect(`${APP_BASE_URL}/settings?tiktok_connected=1`);
- } catch (err) {
- const msg = err.response?.data?.error?.message || err.response?.data?.message || err.message;
- log.error({ action: 'tiktok_oauth_callback', outcome: 'failure', err: msg });
- reply.redirect(`${APP_BASE_URL}/settings?tiktok_error=${encodeURIComponent(msg)}`);
- }
- });
- app.delete('/credentials/tiktok', async () => {
- await deleteCredentials('tiktok');
- return { success: true };
- });
- // ─── Credential Status ────────────────────────────────────────────────────────
- // Aggregate connection status for all DB-managed platforms
- app.get('/credentials', async () => {
- const [metaApp, fb, ig, pinterest, tiktok] = await Promise.all([
- getCredentials('meta_app'),
- getCredentials('facebook'),
- getCredentials('instagram'),
- getCredentials('pinterest'),
- getCredentials('tiktok'),
- ]);
- const fbPages = (fb?.pages || []).filter((p) => p.selected);
- const igAccounts = (ig?.accounts || []).filter((a) => a.selected);
- const pinterestBoards = (pinterest?.boards || []).filter((b) => b.selected);
- return {
- metaApp: { configured: !!(metaApp?.appId) },
- facebook: {
- connected: fbPages.length > 0,
- pages: fbPages.map(({ id, name, picture }) => ({ id, name, picture })),
- },
- instagram: {
- connected: igAccounts.length > 0,
- accounts: igAccounts.map(({ id, username, avatar }) => ({ id, username, avatar })),
- },
- pinterest: {
- connected: pinterestBoards.length > 0,
- username: pinterest?.username || null,
- boards: pinterestBoards.map(({ id, name, privacy }) => ({ id, name, privacy })),
- allBoards: (pinterest?.boards || []).map(({ id, name, privacy, selected }) => ({ id, name, privacy, selected })),
- },
- tiktok: {
- connected: !!(tiktok?.accessToken),
- username: tiktok?.username || null,
- displayName: tiktok?.displayName || null,
- avatar: tiktok?.avatar || null,
- },
- };
- });
- // ─── Schedule Suggestions ────────────────────────────────────────────────────
- // [dayOfWeek (0=Sun), hourUTC] pairs — research-based best-practice defaults
- const INDUSTRY_DEFAULTS = {
- facebook: [[2,9],[3,9],[4,9],[2,12],[4,10]],
- instagram: [[1,11],[2,11],[3,11],[2,14],[3,14]],
- twitter: [[2,9],[3,9],[4,9],[2,12],[3,12]],
- linkedin: [[2,8],[3,8],[4,8],[3,12],[4,12]],
- mastodon: [[2,10],[3,10],[4,10],[1,11],[2,11]],
- bluesky: [[1,10],[2,10],[3,10],[1,11],[2,11]],
- reddit: [[1,7],[2,7],[3,7],[4,7],[0,9]],
- youtube: [[4,12],[5,12],[6,12],[4,15],[5,15]],
- pinterest: [[5,12],[6,14],[0,15],[5,20],[6,20]],
- tiktok: [[2,18],[3,18],[4,18],[5,12],[0,14]],
- };
- const DEFAULT_SLOTS = [[2,9],[3,9],[4,9],[2,12],[3,12]];
- // Returns the next UTC Date that falls on `dayOfWeek` at `hourUTC`:00,
- // at least `afterMs` milliseconds in the future.
- function nextOccurrence(dayOfWeek, hourUTC, afterMs) {
- const candidate = new Date(afterMs);
- candidate.setUTCHours(hourUTC, 0, 0, 0);
- const daysAhead = (dayOfWeek - candidate.getUTCDay() + 7) % 7;
- if (daysAhead === 0 && candidate.getTime() <= afterMs) {
- candidate.setUTCDate(candidate.getUTCDate() + 7);
- } else {
- candidate.setUTCDate(candidate.getUTCDate() + daysAhead);
- }
- return candidate;
- }
- const DAY_ABBR = ['Sun','Mon','Tue','Wed','Thu','Fri','Sat'];
- app.get('/schedule/suggestions', async (request, reply) => {
- const { platform, accountId } = request.query;
- if (!platform) return reply.code(400).send({ error: 'platform is required' });
- const db = await getDb();
- const query = { platform, ...(accountId && { accountId }) };
- const dataPoints = await db.collection('post_metrics').countDocuments(query);
- let slots;
- let source;
- if (dataPoints >= 10) {
- const agg = await db.collection('post_metrics').aggregate([
- { $match: query },
- { $group: {
- _id: { day: '$dayOfWeek', hour: '$hourOfDay' },
- avgEngagement: { $avg: '$metrics.engagementTotal' },
- count: { $sum: 1 },
- }},
- { $sort: { avgEngagement: -1 } },
- { $limit: 5 },
- ]).toArray();
- slots = agg.map((r) => [r._id.day, r._id.hour]);
- source = 'history';
- } else {
- slots = INDUSTRY_DEFAULTS[platform] || DEFAULT_SLOTS;
- source = 'default';
- }
- // 30-minute lead time so the user has time to finish writing
- const afterMs = Date.now() + 30 * 60 * 1000;
- const suggestions = slots
- .map(([day, hour]) => {
- const dt = nextOccurrence(day, hour, afterMs);
- const h12 = hour % 12 || 12;
- const ampm = hour < 12 ? 'am' : 'pm';
- return {
- utc: dt.toISOString(),
- dayOfWeek: day,
- hour,
- label: `${DAY_ABBR[day]} ${h12}${ampm}`,
- };
- })
- .sort((a, b) => new Date(a.utc) - new Date(b.utc))
- .slice(0, 4);
- app.log.info({ action: 'schedule_suggestions', platform, source, count: suggestions.length });
- return { source, suggestions };
- });
- // ─── Analytics Metrics Crawl ─────────────────────────────────────────────────
- async function crawlFacebookMetrics(db) {
- const fb = await getCredentials('facebook');
- const pages = (fb?.pages || []).filter((p) => p.selected && p.accessToken);
- if (!pages.length) return { count: 0 };
- let count = 0;
- for (const page of pages) {
- const token = decryptToken(page.accessToken);
- if (!token) continue;
- try {
- const res = await axios.get(`${GRAPH_API}/${page.id}/posts`, {
- params: {
- fields: 'id,message,created_time,reactions.summary(total_count),comments.summary(total_count),shares',
- limit: 100,
- access_token: token,
- },
- timeout: 30000,
- });
- for (const post of res.data.data || []) {
- const likes = post.reactions?.summary?.total_count || 0;
- const comments = post.comments?.summary?.total_count || 0;
- const shares = post.shares?.count || 0;
- const publishedAt = new Date(post.created_time);
- await db.collection('post_metrics').updateOne(
- { platform: 'facebook', postId: post.id },
- {
- $set: {
- platform: 'facebook',
- accountId: page.id,
- accountName: page.name,
- postId: post.id,
- content: post.message || null,
- publishedAt,
- metrics: { likes, comments, shares, views: 0, saves: 0, engagementTotal: likes + comments + shares },
- hourOfDay: publishedAt.getUTCHours(),
- dayOfWeek: publishedAt.getUTCDay(),
- fetchedAt: new Date(),
- },
- },
- { upsert: true }
- );
- count++;
- }
- } catch (err) {
- app.log.warn({ action: 'metrics_crawl', platform: 'facebook', pageId: page.id, outcome: 'failure', err: err.message });
- }
- }
- return { count };
- }
- async function crawlInstagramMetrics(db) {
- const ig = await getCredentials('instagram');
- const accounts = (ig?.accounts || []).filter((a) => a.selected && a.accessToken);
- if (!accounts.length) return { count: 0 };
- let count = 0;
- for (const account of accounts) {
- const token = decryptToken(account.accessToken);
- if (!token) continue;
- try {
- const mediaRes = await axios.get(`${GRAPH_API}/${account.id}/media`, {
- params: { fields: 'id,caption,timestamp,like_count,comments_count', limit: 100, access_token: token },
- timeout: 30000,
- });
- for (const media of mediaRes.data.data || []) {
- const likes = media.like_count || 0;
- const comments = media.comments_count || 0;
- const publishedAt = new Date(media.timestamp);
- let views = 0;
- let saves = 0;
- try {
- const insRes = await axios.get(`${GRAPH_API}/${media.id}/insights`, {
- params: { metric: 'reach,saved', access_token: token },
- timeout: 10000,
- });
- for (const ins of insRes.data.data || []) {
- if (ins.name === 'reach') views = ins.values?.[0]?.value || 0;
- if (ins.name === 'saved') saves = ins.values?.[0]?.value || 0;
- }
- } catch (_) {}
- await db.collection('post_metrics').updateOne(
- { platform: 'instagram', postId: media.id },
- {
- $set: {
- platform: 'instagram',
- accountId: account.id,
- accountName: account.username,
- postId: media.id,
- content: media.caption || null,
- publishedAt,
- metrics: { likes, comments, shares: 0, views, saves, engagementTotal: likes + comments },
- hourOfDay: publishedAt.getUTCHours(),
- dayOfWeek: publishedAt.getUTCDay(),
- fetchedAt: new Date(),
- },
- },
- { upsert: true }
- );
- count++;
- }
- } catch (err) {
- app.log.warn({ action: 'metrics_crawl', platform: 'instagram', accountId: account.id, outcome: 'failure', err: err.message });
- }
- }
- return { count };
- }
- app.post('/analytics/crawl', async () => {
- const db = await getDb();
- const results = {};
- for (const [platform, crawler] of [['facebook', crawlFacebookMetrics], ['instagram', crawlInstagramMetrics]]) {
- try {
- results[platform] = await crawler(db);
- } catch (err) {
- app.log.error({ action: 'metrics_crawl', platform, outcome: 'failure', err: err.message });
- results[platform] = { count: 0, error: err.message };
- }
- }
- const total = Object.values(results).reduce((sum, r) => sum + (r.count || 0), 0);
- app.log.info({ action: 'metrics_crawl', outcome: 'complete', total });
- return { success: true, total, byPlatform: results };
- });
- app.get('/analytics/insights', async (request) => {
- const filter = parseAccountFilter(request.query.account);
- const metricsMatch = filter
- ? { platform: filter.platform, ...(filter.accountId && { accountId: filter.accountId }) }
- : {};
- const db = await getDb();
- const total = await db.collection('post_metrics').countDocuments(metricsMatch);
- if (total === 0) return { empty: true };
- const [byHourRaw, byDayRaw, topPosts, platformComparison, heatmapRaw] = await Promise.all([
- db.collection('post_metrics').aggregate([
- { $match: metricsMatch },
- { $group: { _id: '$hourOfDay', avgEngagement: { $avg: '$metrics.engagementTotal' }, count: { $sum: 1 } } },
- { $sort: { _id: 1 } },
- ]).toArray(),
- db.collection('post_metrics').aggregate([
- { $match: metricsMatch },
- { $group: { _id: '$dayOfWeek', avgEngagement: { $avg: '$metrics.engagementTotal' }, count: { $sum: 1 } } },
- { $sort: { _id: 1 } },
- ]).toArray(),
- db.collection('post_metrics').find(metricsMatch).sort({ 'metrics.engagementTotal': -1 }).limit(5).toArray(),
- db.collection('post_metrics').aggregate([
- { $match: metricsMatch },
- { $group: {
- _id: '$platform',
- avgEngagement: { $avg: '$metrics.engagementTotal' },
- avgLikes: { $avg: '$metrics.likes' },
- avgComments: { $avg: '$metrics.comments' },
- avgShares: { $avg: '$metrics.shares' },
- totalPosts: { $sum: 1 },
- }},
- { $sort: { avgEngagement: -1 } },
- ]).toArray(),
- db.collection('post_metrics').aggregate([
- { $match: metricsMatch },
- { $group: {
- _id: { day: '$dayOfWeek', hour: '$hourOfDay' },
- avgEngagement: { $avg: '$metrics.engagementTotal' },
- count: { $sum: 1 },
- }},
- ]).toArray(),
- ]);
- const byHour = Array.from({ length: 24 }, (_, h) => {
- const e = byHourRaw.find((r) => r._id === h);
- return { hour: h, avgEngagement: Math.round(e?.avgEngagement || 0), count: e?.count || 0 };
- });
- const byDay = Array.from({ length: 7 }, (_, d) => {
- const e = byDayRaw.find((r) => r._id === d);
- return { day: d, avgEngagement: Math.round(e?.avgEngagement || 0), count: e?.count || 0 };
- });
- const heatmap = Array.from({ length: 7 * 24 }, (_, i) => {
- const day = Math.floor(i / 24);
- const hour = i % 24;
- const e = heatmapRaw.find((r) => r._id.day === day && r._id.hour === hour);
- return { day, hour, avg: Math.round(e?.avgEngagement || 0), count: e?.count || 0 };
- });
- return {
- empty: false,
- total,
- byHour,
- byDay,
- heatmap,
- topPosts: topPosts.map((p) => ({
- platform: p.platform, accountName: p.accountName, postId: p.postId,
- content: p.content, publishedAt: p.publishedAt, metrics: p.metrics,
- })),
- platformComparison: platformComparison.map((p) => ({
- platform: p._id,
- avgEngagement: Math.round(p.avgEngagement),
- avgLikes: Math.round(p.avgLikes),
- avgComments: Math.round(p.avgComments),
- avgShares: Math.round(p.avgShares),
- totalPosts: p.totalPosts,
- })),
- };
- });
- // ─── Analytics ────────────────────────────────────────────────────────────────
- // Parse "platform" or "platform:accountId" filter strings from the account query param.
- function parseAccountFilter(account) {
- if (!account) return null;
- const idx = account.indexOf(':');
- if (idx === -1) return { platform: account };
- return { platform: account.slice(0, idx), accountId: account.slice(idx + 1) };
- }
- // Build a MongoDB match fragment for scheduled_jobs given an account filter.
- function sjFilter(filter) {
- if (!filter) return {};
- return {
- 'destinations.platform': filter.platform,
- ...(filter.accountId && { 'destinations.accountId': filter.accountId }),
- };
- }
- // Build a MongoDB match fragment for posts (type:immediate) given an account filter.
- function ipFilter(filter) {
- if (!filter) return {};
- return {
- 'destinations.platform': filter.platform,
- ...(filter.accountId && { 'destinations.accountId': filter.accountId }),
- };
- }
- app.get('/analytics/summary', async (request) => {
- const filter = parseAccountFilter(request.query.account);
- const db = await getDb();
- const thirtyDaysAgo = new Date(Date.now() - 30 * 24 * 60 * 60 * 1000);
- const sevenDaysAgo = new Date(Date.now() - 7 * 24 * 60 * 60 * 1000);
- // Post-unwind filter for scheduled_jobs platform breakdown — re-applies the
- // account filter after $unwind so a job targeting multiple platforms only
- // counts the platform(s) that match the filter.
- const unwindFilter = filter ? [{ $match: sjFilter(filter) }] : [];
- const [
- schedCompleted, schedFailed,
- immPublished, immFailed,
- recentSched, recentImm,
- schedPlatformRaw, immPlatformRaw,
- schedDayRaw, immDayRaw,
- ] = await Promise.all([
- db.collection('scheduled_jobs').countDocuments({ status: 'completed', ...sjFilter(filter) }),
- db.collection('scheduled_jobs').countDocuments({ status: 'failed', ...sjFilter(filter) }),
- db.collection('posts').countDocuments({ type: 'immediate', status: { $in: ['published', 'partial'] }, ...ipFilter(filter) }),
- db.collection('posts').countDocuments({ type: 'immediate', status: 'failed', ...ipFilter(filter) }),
- db.collection('scheduled_jobs').countDocuments({ status: 'completed', completedAt: { $gte: sevenDaysAgo }, ...sjFilter(filter) }),
- db.collection('posts').countDocuments({ type: 'immediate', publishedAt: { $gte: sevenDaysAgo }, ...ipFilter(filter) }),
- // Platform breakdown from scheduled_jobs destinations
- db.collection('scheduled_jobs').aggregate([
- { $match: { status: 'completed', ...sjFilter(filter) } },
- { $unwind: '$destinations' },
- ...unwindFilter,
- { $group: { _id: '$destinations.platform', count: { $sum: 1 } } },
- { $sort: { count: -1 } },
- ]).toArray(),
- // Platform breakdown from immediate posts platformResults
- db.collection('posts').aggregate([
- { $match: { type: 'immediate', ...ipFilter(filter) } },
- { $project: { results: { $objectToArray: { $ifNull: ['$platformResults', {}] } } } },
- { $unwind: '$results' },
- { $match: { 'results.v.success': true } },
- { $project: { platform: { $arrayElemAt: [{ $split: ['$results.k', ':'] }, 0] } } },
- { $group: { _id: '$platform', count: { $sum: 1 } } },
- ]).toArray(),
- // Activity by day from scheduled_jobs (using completedAt)
- db.collection('scheduled_jobs').aggregate([
- { $match: { status: 'completed', completedAt: { $gte: thirtyDaysAgo }, ...sjFilter(filter) } },
- { $group: { _id: { $dateToString: { format: '%Y-%m-%d', date: '$completedAt' } }, count: { $sum: 1 } } },
- { $sort: { _id: 1 } },
- ]).toArray(),
- // Activity by day from immediate posts
- db.collection('posts').aggregate([
- { $match: { type: 'immediate', publishedAt: { $gte: thirtyDaysAgo }, ...ipFilter(filter) } },
- { $group: { _id: { $dateToString: { format: '%Y-%m-%d', date: '$publishedAt' } }, count: { $sum: 1 } } },
- { $sort: { _id: 1 } },
- ]).toArray(),
- ]);
- const dayMap = {};
- for (const { _id, count } of [...schedDayRaw, ...immDayRaw]) {
- dayMap[_id] = (dayMap[_id] || 0) + count;
- }
- const byDay = Object.entries(dayMap).map(([date, count]) => ({ date, count })).sort((a, b) => a.date.localeCompare(b.date));
- const platformMap = {};
- for (const { _id, count } of [...schedPlatformRaw, ...immPlatformRaw]) {
- if (_id) platformMap[_id] = (platformMap[_id] || 0) + count;
- }
- const published = schedCompleted + immPublished;
- const failed = schedFailed + immFailed;
- const total = published + failed;
- const successRate = total > 0 ? Math.round((published / total) * 100) : 0;
- const recentCount = recentSched + recentImm;
- return { total, published, failed, partial: 0, successRate, byPlatform: platformMap, byDay, recentCount };
- });
- app.get('/analytics/posts', async (request) => {
- const limit = Math.min(parseInt(request.query.limit || '20', 10), 100);
- const skip = parseInt(request.query.skip || '0', 10);
- const filter = parseAccountFilter(request.query.account);
- const db = await getDb();
- const sjMatch = { status: { $in: ['completed', 'failed'] }, ...sjFilter(filter) };
- const ipMatch = { type: 'immediate', ...ipFilter(filter) };
- const [scheduledJobs, immediatePosts, schedTotal, immTotal] = await Promise.all([
- db.collection('scheduled_jobs')
- .find(sjMatch)
- .sort({ completedAt: -1, scheduledAt: -1 })
- .skip(skip)
- .limit(limit)
- .project({ content: 1, destinations: 1, status: 1, completedAt: 1, scheduledAt: 1 })
- .toArray(),
- db.collection('posts')
- .find(ipMatch)
- .sort({ publishedAt: -1 })
- .project({ content: 1, destinations: 1, platformResults: 1, status: 1, publishedAt: 1 })
- .toArray(),
- db.collection('scheduled_jobs').countDocuments(sjMatch),
- db.collection('posts').countDocuments(ipMatch),
- ]);
- const normalised = [
- ...scheduledJobs.map((j) => ({
- _id: String(j._id),
- type: 'scheduled',
- content: j.content || null,
- destinations: j.destinations || [],
- platformResults: null,
- status: j.status === 'completed' ? 'published' : 'failed',
- publishedAt: j.completedAt || j.scheduledAt,
- })),
- ...immediatePosts.map((p) => ({
- _id: String(p._id),
- type: 'immediate',
- content: p.content || null,
- destinations: p.destinations || [],
- platformResults: p.platformResults || null,
- status: p.status,
- publishedAt: p.publishedAt,
- })),
- ].sort((a, b) => new Date(b.publishedAt) - new Date(a.publishedAt))
- .slice(0, limit);
- return { posts: normalised, total: schedTotal + immTotal };
- });
- // ─── Hashtag Groups ───────────────────────────────────────────────────────────
- app.get('/hashtag-groups', async () => {
- const db = await getDb();
- const groups = await db.collection('hashtag_groups').find({}).sort({ name: 1 }).toArray();
- return { groups };
- });
- app.post('/hashtag-groups', async (request, reply) => {
- const { name, hashtags } = request.body || {};
- if (!name?.trim()) return reply.code(400).send({ error: 'name is required' });
- const tags = (hashtags || []).map((t) => (t.startsWith('#') ? t : `#${t}`).toLowerCase()).filter(Boolean);
- const db = await getDb();
- const result = await db.collection('hashtag_groups').insertOne({
- name: name.trim(),
- hashtags: [...new Set(tags)],
- createdAt: new Date(),
- updatedAt: new Date(),
- });
- return { success: true, _id: result.insertedId };
- });
- app.put('/hashtag-groups/:id', async (request, reply) => {
- const { id } = request.params;
- const { name, hashtags } = request.body || {};
- const update = { updatedAt: new Date() };
- if (name?.trim()) update.name = name.trim();
- if (hashtags) {
- const tags = hashtags.map((t) => (t.startsWith('#') ? t : `#${t}`).toLowerCase()).filter(Boolean);
- update.hashtags = [...new Set(tags)];
- }
- const db = await getDb();
- let oid;
- try { oid = new ObjectId(id); } catch { return reply.code(400).send({ error: 'Invalid id' }); }
- await db.collection('hashtag_groups').updateOne({ _id: oid }, { $set: update });
- return { success: true };
- });
- app.delete('/hashtag-groups/:id', async (request, reply) => {
- const { id } = request.params;
- const db = await getDb();
- let oid;
- try { oid = new ObjectId(id); } catch { return reply.code(400).send({ error: 'Invalid id' }); }
- await db.collection('hashtag_groups').deleteOne({ _id: oid });
- return { success: true };
- });
- // ─── Hashtag Stats & Scraper ──────────────────────────────────────────────────
- const HASHTAG_RE = /#([a-zA-Z]\w*)/g;
- function extractHashtags(text) {
- if (!text) return [];
- const tags = [];
- let m;
- HASHTAG_RE.lastIndex = 0;
- while ((m = HASHTAG_RE.exec(text)) !== null) tags.push(`#${m[1].toLowerCase()}`);
- return tags;
- }
- function gradeHashtag(count, avgEngagement) {
- if (count >= 5 && avgEngagement >= 10) return 'A';
- if (count >= 3 && avgEngagement >= 3) return 'B';
- if (count >= 2) return 'C';
- return 'D';
- }
- // POST /hashtags/scrape — scan YOUR published posts per-account.
- // Body: { accountKey?: string } — omit to scan all accounts at once.
- app.post('/hashtags/scrape', async (request) => {
- const { accountKey: filterAccount } = request.body || {};
- const db = await getDb();
- // tagMap key: `${accountKey}||${hashtag}`
- const tagMap = {};
- function touch(tag, accountKey, platform, engagement) {
- const key = `${accountKey}||${tag}`;
- if (!tagMap[key]) tagMap[key] = { tag, accountKey, count: 0, totalEngagement: 0, platforms: new Set() };
- tagMap[key].count++;
- tagMap[key].totalEngagement += engagement;
- tagMap[key].platforms.add(platform);
- }
- // Engagement lookup keyed by content fingerprint
- const postMetrics = await db.collection('post_metrics').find({}).toArray();
- const metricsByContent = {};
- for (const m of postMetrics) {
- if (m.content) {
- const key = m.content.slice(0, 100).toLowerCase().trim();
- metricsByContent[key] = (metricsByContent[key] || 0) + (m.metrics?.engagementTotal || 0);
- }
- }
- // Scan YOUR published posts only — feeds are others' content, not your performance
- const posts = await db.collection('posts').find({}, { projection: { content: 1, destinations: 1 } }).toArray();
- for (const post of posts) {
- const tags = extractHashtags(post.content || '');
- if (!tags.length) continue;
- const engagement = post.content
- ? (metricsByContent[post.content.slice(0, 100).toLowerCase().trim()] || 0)
- : 0;
- const destinations = post.destinations?.length ? post.destinations : [{ platform: 'unknown' }];
- for (const dest of destinations) {
- const acctKey = dest.accountId ? `${dest.platform}:${dest.accountId}` : dest.platform;
- if (filterAccount && acctKey !== filterAccount) continue;
- for (const tag of tags) {
- touch(tag, acctKey, dest.platform, engagement / Math.max(tags.length, 1));
- }
- }
- }
- let scraped = 0;
- for (const [compoundKey, data] of Object.entries(tagMap)) {
- const avgEngagement = data.count > 0 ? data.totalEngagement / data.count : 0;
- await db.collection('hashtag_stats').updateOne(
- { _id: compoundKey },
- {
- $set: {
- hashtag: data.tag,
- accountKey: data.accountKey,
- count: data.count,
- avgEngagement: Math.round(avgEngagement * 10) / 10,
- grade: gradeHashtag(data.count, avgEngagement),
- platforms: [...data.platforms],
- lastScraped: new Date(),
- },
- },
- { upsert: true }
- );
- scraped++;
- }
- log.info({ action: 'hashtag_scrape', accountKey: filterAccount || 'all', outcome: 'success', scraped });
- return { success: true, scraped };
- });
- app.get('/hashtags/stats', async (request) => {
- const { sort, accountKey } = request.query;
- const db = await getDb();
- const sortField = sort === 'engagement' ? 'avgEngagement' : 'count';
- if (accountKey) {
- // Per-account view
- const stats = await db.collection('hashtag_stats')
- .find({ accountKey })
- .sort({ [sortField]: -1 })
- .limit(200)
- .toArray();
- return { stats };
- }
- // Aggregate view: group by hashtag across all accounts
- const allStats = await db.collection('hashtag_stats').find({ accountKey: { $exists: true } }).toArray();
- const grouped = new Map();
- for (const s of allStats) {
- if (!s.hashtag) continue;
- if (!grouped.has(s.hashtag)) {
- grouped.set(s.hashtag, { count: 0, totalEngagement: 0, totalCount: 0, platforms: new Set(), lastScraped: null });
- }
- const g = grouped.get(s.hashtag);
- g.count += s.count;
- g.totalEngagement += s.avgEngagement * s.count;
- g.totalCount += s.count;
- for (const p of (s.platforms || [])) g.platforms.add(p);
- if (!g.lastScraped || (s.lastScraped && new Date(s.lastScraped) > new Date(g.lastScraped))) g.lastScraped = s.lastScraped;
- }
- const stats = [...grouped.entries()]
- .map(([tag, g]) => {
- const avgEngagement = g.totalCount > 0 ? Math.round((g.totalEngagement / g.totalCount) * 10) / 10 : 0;
- return {
- _id: tag,
- hashtag: tag,
- accountKey: null,
- count: g.count,
- avgEngagement,
- grade: gradeHashtag(g.count, avgEngagement),
- platforms: [...g.platforms],
- lastScraped: g.lastScraped,
- };
- })
- .sort((a, b) => b[sortField] - a[sortField])
- .slice(0, 200);
- return { stats };
- });
- app.post('/hashtags/ai-suggest', async (request, reply) => {
- const { accountKey, topTags = [], count = 20 } = request.body || {};
- let profileCtx = '';
- if (accountKey) {
- try {
- const db = await getDb();
- const profile = await db.collection('account_profiles').findOne({ _id: accountKey });
- if (profile) {
- const parts = [];
- if (profile.businessName) parts.push(`Business: ${profile.businessName}`);
- if (profile.description) parts.push(`Description: ${profile.description}`);
- if (profile.industry) parts.push(`Industry: ${profile.industry}`);
- if (profile.targetAudience) parts.push(`Target audience: ${profile.targetAudience}`);
- if (profile.keywords) parts.push(`Existing keywords: ${profile.keywords}`);
- if (profile.hashtags) parts.push(`Current hashtags: ${profile.hashtags}`);
- profileCtx = parts.join('\n');
- }
- } catch (_) {}
- }
- const topTagList = topTags.slice(0, 15).map((t) => t._id || t).join(', ');
- const system = 'You are a social media hashtag strategist. Return ONLY hashtags, space-separated, no explanations.';
- const prompt = [
- `Suggest ${count} high-performing hashtags for a social media account.`,
- profileCtx ? `\nACCOUNT CONTEXT:\n${profileCtx}` : '',
- topTagList ? `\nCURRENT TOP HASHTAGS (by usage):\n${topTagList}` : '',
- `\nReturn exactly ${count} unique hashtags as a space-separated list. Mix popular and niche tags. Include a variety of sizes (broad, medium, niche). Example: #photography #naturephotography #landscapephoto`,
- ].filter(Boolean).join('');
- try {
- const pconf = await getActiveProviderConfig();
- const model = pconf.model;
- let text = '';
- if (pconf.provider === 'ollama') {
- const res = await axios.post(`${pconf.endpoint}/api/generate`, { model, prompt, system, stream: false }, { timeout: 60000 });
- text = res.data.response;
- } else if (pconf.provider === 'openai' || pconf.provider === 'groq') {
- if (!pconf.apiKey) return reply.code(503).send({ error: `${pconf.provider} API key not configured` });
- const res = await axios.post(`${pconf.baseUrl}/chat/completions`, {
- model, messages: buildOpenAIMessages(prompt, system), stream: false,
- }, { headers: { Authorization: `Bearer ${pconf.apiKey}` }, timeout: 60000 });
- text = res.data.choices[0]?.message?.content || '';
- } else if (pconf.provider === 'gemini') {
- if (!pconf.apiKey) return reply.code(503).send({ error: 'Gemini API key not configured' });
- const res = await axios.post(
- `https://generativelanguage.googleapis.com/v1beta/models/${model}:generateContent?key=${pconf.apiKey}`,
- { contents: buildGeminiContents(prompt, system) },
- { timeout: 60000 },
- );
- text = res.data.candidates?.[0]?.content?.parts?.[0]?.text || '';
- } else {
- return reply.code(400).send({ error: 'AI not configured' });
- }
- const tags = [...new Set((text.match(/#[a-zA-Z]\w*/g) || []).map((t) => t.toLowerCase()))].slice(0, count);
- return { success: true, hashtags: tags };
- } catch (err) {
- return reply.code(503).send({ error: 'AI suggestion failed', detail: err.message });
- }
- });
- // ─── Competitor Intelligence ──────────────────────────────────────────────────
- async function extractTextFromUrl(url) {
- try {
- const res = await axios.get(url, { timeout: 15000, headers: { 'User-Agent': 'Mozilla/5.0 (compatible; SocialManager/1.0)' } });
- const html = res.data || '';
- const title = (html.match(/<title[^>]*>([^<]+)<\/title>/i) || [])[1] || '';
- const desc = (html.match(/<meta[^>]+name=["']description["'][^>]+content=["']([^"']+)["']/i) || [])[1] || '';
- const headings = [...html.matchAll(/<h[1-3][^>]*>(.*?)<\/h[1-3]>/gi)].map((m) => m[1].replace(/<[^>]+>/g, '').trim()).filter(Boolean).slice(0, 8);
- const paras = [...html.matchAll(/<p[^>]*>(.*?)<\/p>/gis)].map((m) => m[1].replace(/<[^>]+>/g, '').trim()).filter((t) => t.length > 40).slice(0, 5);
- return [title, desc, ...headings, ...paras].filter(Boolean).join('\n').slice(0, 3000);
- } catch {
- return '';
- }
- }
- async function scrapeBluesky(profileUrl) {
- try {
- const handle = profileUrl.replace(/^https?:\/\/bsky\.app\/profile\//i, '').replace(/\/$/, '');
- if (!handle) return '';
- const res = await axios.get(`https://public.api.bsky.app/xrpc/app.bsky.feed.getAuthorFeed?actor=${encodeURIComponent(handle)}&limit=10`, { timeout: 10000 });
- const posts = (res.data.feed || []).map((f) => f.post?.record?.text || '').filter(Boolean);
- return posts.join('\n').slice(0, 3000);
- } catch {
- return '';
- }
- }
- async function scrapeMastodon(profileUrl) {
- try {
- const m = profileUrl.match(/^https?:\/\/([^/]+)\/@(.+)$/);
- if (!m) return '';
- const [, instance, username] = m;
- const lookupRes = await axios.get(`https://${instance}/api/v1/accounts/lookup?acct=${encodeURIComponent(username)}`, { timeout: 10000 });
- const accountId = lookupRes.data?.id;
- if (!accountId) return '';
- const statusRes = await axios.get(`https://${instance}/api/v1/accounts/${accountId}/statuses?limit=10&exclude_replies=true`, { timeout: 10000 });
- const posts = (statusRes.data || []).map((s) => s.content?.replace(/<[^>]+>/g, '').trim() || '').filter(Boolean);
- return posts.join('\n').slice(0, 3000);
- } catch {
- return '';
- }
- }
- async function runCompetitorScrape(competitorId) {
- const db = await getDb();
- const competitor = await db.collection('competitors').findOne({ _id: new ObjectId(competitorId) });
- if (!competitor) return { ok: false, message: 'Not found', sources: 0 };
- const newItems = [];
- if (competitor.websiteUrl) {
- const text = await extractTextFromUrl(competitor.websiteUrl);
- if (text) newItems.push({ source: 'website', url: competitor.websiteUrl, text, scrapedAt: new Date() });
- }
- const socialEntries = Object.entries(competitor.socialUrls || {});
- for (const [platform, url] of socialEntries) {
- if (!url) continue;
- let text = '';
- if (platform === 'bluesky') text = await scrapeBluesky(url);
- else if (platform === 'mastodon') text = await scrapeMastodon(url);
- else text = await extractTextFromUrl(url);
- if (text) newItems.push({ source: platform, url, text, scrapedAt: new Date() });
- }
- const existing = competitor.scrapedContent || [];
- // Detect whether any newly scraped content differs from what was previously stored
- const existingFingerprints = new Set(existing.map((s) => s.url + '||' + s.text.slice(0, 200)));
- const contentChanged = newItems.some((item) => !existingFingerprints.has(item.url + '||' + item.text.slice(0, 200)));
- const combined = [...newItems, ...existing].slice(0, 20);
- await db.collection('competitors').updateOne(
- { _id: new ObjectId(competitorId) },
- { $set: { scrapedContent: combined, contentChanged, lastScraped: new Date(), updatedAt: new Date() } },
- );
- return { ok: true, sources: newItems.length, message: newItems.length ? `Scraped ${newItems.length} source(s)` : 'No content found' };
- }
- async function buildCompetitorSystemSuffix() {
- try {
- const db = await getDb();
- const competitors = await db.collection('competitors').find({
- $or: [{ 'aiAnalysis.positioning': { $nin: ['', null] } }, { aiSummary: { $nin: ['', null] } }],
- }).toArray();
- if (!competitors.length) return '';
- const lines = competitors.map((c) => {
- if (c.aiAnalysis?.positioning) {
- const a = c.aiAnalysis;
- const parts = [`- ${c.name}:`];
- if (a.positioning) parts.push(` Positioning: ${a.positioning}`);
- if (a.gaps?.length) parts.push(` Weaknesses/gaps: ${a.gaps.join('; ')}`);
- if (a.themes?.length) parts.push(` Key themes: ${a.themes.join(', ')}`);
- return parts.join('\n');
- }
- return `- ${c.name}: ${c.aiSummary}`;
- }).join('\n');
- return `\n\nCOMPETITOR CONTEXT (for differentiation — do not copy, use to contrast):\n${lines}\nEmphasise what makes this brand unique compared to the above.`;
- } catch {
- return '';
- }
- }
- // List competitors
- app.get('/competitors', async (request, reply) => {
- const db = await getDb();
- const list = await db.collection('competitors').find({}).sort({ createdAt: 1 }).toArray();
- return list;
- });
- // Add competitor (max 2)
- app.post('/competitors', async (request, reply) => {
- const db = await getDb();
- const count = await db.collection('competitors').countDocuments();
- if (count >= 5) return reply.code(400).send({ error: 'Maximum 5 competitors allowed' });
- const { name, websiteUrl, socialUrls = {} } = request.body || {};
- if (!name || !websiteUrl) return reply.code(400).send({ error: 'name and websiteUrl are required' });
- const now = new Date();
- const result = await db.collection('competitors').insertOne({
- name, websiteUrl, socialUrls, scrapedContent: [], aiSummary: '', keywords: [], lastScraped: null, createdAt: now, updatedAt: now,
- });
- const doc = await db.collection('competitors').findOne({ _id: result.insertedId });
- return doc;
- });
- // Update competitor
- app.put('/competitors/:id', async (request, reply) => {
- const db = await getDb();
- const { name, websiteUrl, socialUrls } = request.body || {};
- const updates = { updatedAt: new Date() };
- if (name !== undefined) updates.name = name;
- if (websiteUrl !== undefined) updates.websiteUrl = websiteUrl;
- if (socialUrls !== undefined) updates.socialUrls = socialUrls;
- await db.collection('competitors').updateOne({ _id: new ObjectId(request.params.id) }, { $set: updates });
- const doc = await db.collection('competitors').findOne({ _id: new ObjectId(request.params.id) });
- return doc;
- });
- // Delete competitor
- app.delete('/competitors/:id', async (request, reply) => {
- const db = await getDb();
- await db.collection('competitors').deleteOne({ _id: new ObjectId(request.params.id) });
- return { success: true };
- });
- // Scrape one competitor — returns jobId immediately, runs in background
- app.post('/competitors/:id/scrape', async (request, reply) => {
- const jobId = new ObjectId().toString();
- activeScrapeJobs.set(jobId, { status: 'running', sources: 0, message: '' });
- (async () => {
- try {
- const result = await runCompetitorScrape(request.params.id);
- activeScrapeJobs.set(jobId, {
- status: result.ok ? 'done' : 'failed',
- sources: result.sources,
- message: result.message,
- });
- } catch (err) {
- activeScrapeJobs.set(jobId, { status: 'failed', sources: 0, message: err.message });
- }
- })();
- return reply.code(202).send({ jobId });
- });
- // Poll scrape job status
- app.get('/competitors/:id/scrape-status/:jobId', async (request, reply) => {
- const job = activeScrapeJobs.get(request.params.jobId);
- if (!job) return reply.code(404).send({ error: 'Job not found or expired' });
- return job;
- });
- // Scrape all competitors (called by scheduler)
- app.post('/competitors/scrape-all', async (request, reply) => {
- const db = await getDb();
- const all = await db.collection('competitors').find({}).toArray();
- const results = [];
- for (const c of all) {
- const r = await runCompetitorScrape(c._id.toString());
- results.push({ id: c._id.toString(), name: c.name, ...r });
- }
- return { success: true, results };
- });
- // Summarize competitor content with AI — returns structured analysis
- app.post('/competitors/:id/summarize', async (request, reply) => {
- const db = await getDb();
- const competitor = await db.collection('competitors').findOne({ _id: new ObjectId(request.params.id) });
- if (!competitor) return reply.code(404).send({ error: 'Competitor not found' });
- const content = (competitor.scrapedContent || []).map((s) => `[${s.source}] ${s.text}`).join('\n\n').slice(0, 6000);
- if (!content) return reply.code(400).send({ error: 'No scraped content to summarize' });
- const system = 'You are a competitive intelligence analyst. Return only valid JSON with no explanation, no markdown code blocks.';
- const prompt = `Analyse the following content from "${competitor.name}" and return a JSON object with exactly these fields:
- {
- "themes": ["3-5 main content topics or pillars they focus on"],
- "tone": "one sentence describing their voice and communication style",
- "positioning": "one sentence on how they position themselves in the market",
- "gaps": ["2-3 topics or angles they ignore or handle poorly — opportunities for you"],
- "moves": ["3 specific content angles you could use to stand out against them"]
- }
- Content:
- ${content}
- Return ONLY the JSON object. No explanation, no markdown.`;
- try {
- const pconf = await getActiveProviderConfig();
- const model = pconf.model;
- let text = '';
- if (pconf.provider === 'ollama') {
- const res = await axios.post(`${pconf.endpoint}/api/generate`, { model, prompt, system, stream: false }, { timeout: 180000 });
- text = res.data.response;
- } else if (pconf.provider === 'openai' || pconf.provider === 'groq') {
- if (!pconf.apiKey) return reply.code(503).send({ error: `${pconf.provider} API key not configured` });
- const res = await axios.post(`${pconf.baseUrl}/chat/completions`, {
- model, messages: buildOpenAIMessages(prompt, system), stream: false,
- }, { headers: { Authorization: `Bearer ${pconf.apiKey}` }, timeout: 180000 });
- text = res.data.choices[0]?.message?.content || '';
- } else if (pconf.provider === 'gemini') {
- if (!pconf.apiKey) return reply.code(503).send({ error: 'Gemini API key not configured' });
- const res = await axios.post(
- `https://generativelanguage.googleapis.com/v1beta/models/${model}:generateContent?key=${pconf.apiKey}`,
- { contents: buildGeminiContents(prompt, system) },
- { timeout: 180000 },
- );
- text = res.data.candidates?.[0]?.content?.parts?.[0]?.text || '';
- } else {
- return reply.code(400).send({ error: 'AI not configured' });
- }
- let aiAnalysis = null;
- try {
- const jsonStr = (text.match(/\{[\s\S]*\}/) || ['{}'])[0];
- aiAnalysis = JSON.parse(jsonStr);
- if (!Array.isArray(aiAnalysis.themes)) aiAnalysis.themes = [];
- if (typeof aiAnalysis.tone !== 'string') aiAnalysis.tone = '';
- if (typeof aiAnalysis.positioning !== 'string') aiAnalysis.positioning = '';
- if (!Array.isArray(aiAnalysis.gaps)) aiAnalysis.gaps = [];
- if (!Array.isArray(aiAnalysis.moves)) aiAnalysis.moves = [];
- } catch {
- aiAnalysis = null;
- }
- if (!aiAnalysis) return reply.code(503).send({ error: 'AI returned invalid analysis format — try again' });
- await db.collection('competitors').updateOne(
- { _id: new ObjectId(request.params.id) },
- { $set: { aiAnalysis, aiSummary: '', updatedAt: new Date() } },
- );
- return { success: true, aiAnalysis };
- } catch (err) {
- return reply.code(503).send({ error: 'Summarization failed', detail: err.message });
- }
- });
- // Extract keywords from scraped content using AI (item 34)
- app.post('/competitors/:id/extract-keywords', async (request, reply) => {
- const db = await getDb();
- const competitor = await db.collection('competitors').findOne({ _id: new ObjectId(request.params.id) });
- if (!competitor) return reply.code(404).send({ error: 'Competitor not found' });
- const content = (competitor.scrapedContent || []).map((s) => s.text).join('\n\n').slice(0, 6000);
- if (!content) return reply.code(400).send({ error: 'No scraped content to extract keywords from' });
- const system = 'You are an SEO and content strategist. Return only valid JSON with no explanation, no markdown code blocks.';
- const prompt = `Analyse the following content from "${competitor.name}" and extract the top 20 keywords and key phrases they appear to be targeting. For each keyword, classify its search intent using one of these four types:
- - informational: user wants to learn ("how to", "what is", "guide", "tips")
- - commercial: user is evaluating options ("best", "vs", "review", "top", "alternative")
- - transactional: user is ready to act ("buy", "free", "pricing", "download", "get started")
- - navigational: user is searching for a specific brand or tool by name
- Content:
- ${content}
- Return ONLY a JSON array, e.g.:
- [{"term": "project management software", "intent": "commercial"}, {"term": "how to manage tasks", "intent": "informational"}]
- No explanation, no markdown.`;
- try {
- const pconf = await getActiveProviderConfig();
- const model = pconf.model;
- let text = '';
- if (pconf.provider === 'ollama') {
- const res = await axios.post(`${pconf.endpoint}/api/generate`, { model, prompt, system, stream: false }, { timeout: 120000 });
- text = res.data.response;
- } else if (pconf.provider === 'openai' || pconf.provider === 'groq') {
- if (!pconf.apiKey) return reply.code(503).send({ error: `${pconf.provider} API key not configured` });
- const res = await axios.post(`${pconf.baseUrl}/chat/completions`, {
- model, messages: buildOpenAIMessages(prompt, system), stream: false,
- }, { headers: { Authorization: `Bearer ${pconf.apiKey}` }, timeout: 120000 });
- text = res.data.choices[0]?.message?.content || '';
- } else if (pconf.provider === 'gemini') {
- if (!pconf.apiKey) return reply.code(503).send({ error: 'Gemini API key not configured' });
- const res = await axios.post(
- `https://generativelanguage.googleapis.com/v1beta/models/${model}:generateContent?key=${pconf.apiKey}`,
- { contents: buildGeminiContents(prompt, system) },
- { timeout: 120000 },
- );
- text = res.data.candidates?.[0]?.content?.parts?.[0]?.text || '';
- } else {
- return reply.code(400).send({ error: 'AI not configured' });
- }
- const VALID_INTENTS = new Set(['informational', 'commercial', 'transactional', 'navigational']);
- let keywords = [];
- try {
- const jsonStr = (text.match(/\[[\s\S]*\]/) || ['[]'])[0];
- const parsed = JSON.parse(jsonStr);
- if (!Array.isArray(parsed)) throw new Error();
- const now = new Date();
- keywords = parsed
- .filter((k) => k && typeof k.term === 'string' && k.term.trim())
- .slice(0, 20)
- .map((k) => ({
- term: k.term.trim(),
- intent: VALID_INTENTS.has(k.intent) ? k.intent : 'informational',
- extractedAt: now,
- }));
- } catch {
- keywords = [];
- }
- await db.collection('competitors').updateOne(
- { _id: new ObjectId(request.params.id) },
- { $set: { keywords, updatedAt: new Date() } },
- );
- return { success: true, keywords };
- } catch (err) {
- return reply.code(503).send({ error: 'Keyword extraction failed', detail: err.message });
- }
- });
- // Analyse content gaps — compare competitor keywords against user's hashtag_stats
- app.post('/competitors/:id/analyze-gaps', async (request, reply) => {
- const db = await getDb();
- const competitor = await db.collection('competitors').findOne({ _id: new ObjectId(request.params.id) });
- if (!competitor) return reply.code(404).send({ error: 'Competitor not found' });
- const keywords = (competitor.keywords || []);
- if (!keywords.length) return reply.code(400).send({ error: 'Extract keywords first before analysing gaps' });
- const hashtagDocs = await db.collection('hashtag_stats')
- .find({ accountKey: { $exists: true } }, { projection: { _id: 0, hashtag: 1 } })
- .toArray();
- const hashtagStatsEmpty = hashtagDocs.length === 0;
- // Deduplicate across accounts — same hashtag used by any account counts as covered
- const uniqueTags = [...new Set(hashtagDocs.map((h) => h.hashtag).filter(Boolean))];
- const hashtagTexts = uniqueTags.map((tag) => ({ id: tag, text: tag.replace(/^#/, '').toLowerCase() }));
- const INTENT_ORDER = { transactional: 0, commercial: 1, informational: 2, navigational: 3 };
- function findMatchingHashtags(term) {
- const words = term.toLowerCase().split(/\s+/).filter((w) => w.length >= 4);
- return hashtagTexts
- .filter(({ text }) => words.some((w) => text.includes(w)))
- .map(({ id }) => id);
- }
- const gaps = [];
- const covered = [];
- for (const kw of keywords) {
- const term = typeof kw === 'string' ? kw : kw.term;
- const intent = typeof kw === 'string' ? 'informational' : (kw.intent || 'informational');
- const matched = findMatchingHashtags(term);
- if (matched.length) {
- covered.push({ term, intent, matchedHashtags: matched.slice(0, 4) });
- } else {
- gaps.push({ term, intent });
- }
- }
- gaps.sort((a, b) => (INTENT_ORDER[a.intent] ?? 99) - (INTENT_ORDER[b.intent] ?? 99));
- const gapAnalysis = { gaps, covered, totalKeywords: keywords.length, hashtagStatsEmpty, lastAnalyzed: new Date() };
- await db.collection('competitors').updateOne(
- { _id: new ObjectId(request.params.id) },
- { $set: { gapAnalysis, updatedAt: new Date() } },
- );
- return { success: true, ...gapAnalysis };
- });
- // Generate a 5-post content roadmap from competitor keywords and gaps
- app.post('/competitors/:id/content-roadmap', async (request, reply) => {
- const db = await getDb();
- const competitor = await db.collection('competitors').findOne({ _id: new ObjectId(request.params.id) });
- if (!competitor) return reply.code(404).send({ error: 'Competitor not found' });
- const keywords = (competitor.keywords || []);
- const hasKeywords = keywords.length > 0;
- const hasContent = (competitor.scrapedContent || []).length > 0;
- if (!hasKeywords && !hasContent) return reply.code(400).send({ error: 'Extract keywords first before generating a roadmap' });
- const kwList = hasKeywords
- ? keywords.map((k) => (typeof k === 'string' ? k : k.term)).join(', ')
- : '';
- const gaps = competitor.aiAnalysis?.gaps || [];
- const moves = competitor.aiAnalysis?.moves || [];
- const gapsSection = gaps.length ? `\nCompetitor gaps/weaknesses:\n${gaps.map((g) => `- ${g}`).join('\n')}` : '';
- const movesSection = moves.length ? `\nSuggested differentiation angles:\n${moves.map((m) => `- ${m}`).join('\n')}` : '';
- const kwSection = kwList ? `\nCompetitor's keywords: ${kwList}` : '';
- const system = 'You are a content strategist. Return only valid JSON with no explanation, no markdown code blocks.';
- const prompt = `Create a 5-post content roadmap to compete against "${competitor.name}".
- ${kwSection}${gapsSection}${movesSection}
- Generate 5 post ideas that exploit their weaknesses and differentiate clearly. For each post return:
- - topic: short topic name, max 8 words
- - headline: an engaging opening line or hook ready to use as post content (1-2 sentences)
- - keywords: array of 2-3 keywords from the competitor's list to target (use exact terms where available)
- - rationale: one sentence on why this post wins against ${competitor.name}
- Return ONLY a JSON array:
- [{"topic":"...","headline":"...","keywords":["..."],"rationale":"..."}]
- No explanation, no markdown.`;
- try {
- const pconf = await getActiveProviderConfig();
- const model = pconf.model;
- let text = '';
- if (pconf.provider === 'ollama') {
- const res = await axios.post(`${pconf.endpoint}/api/generate`, { model, prompt, system, stream: false }, { timeout: 180000 });
- text = res.data.response;
- } else if (pconf.provider === 'openai' || pconf.provider === 'groq') {
- if (!pconf.apiKey) return reply.code(503).send({ error: `${pconf.provider} API key not configured` });
- const res = await axios.post(`${pconf.baseUrl}/chat/completions`, {
- model, messages: buildOpenAIMessages(prompt, system), stream: false,
- }, { headers: { Authorization: `Bearer ${pconf.apiKey}` }, timeout: 180000 });
- text = res.data.choices[0]?.message?.content || '';
- } else if (pconf.provider === 'gemini') {
- if (!pconf.apiKey) return reply.code(503).send({ error: 'Gemini API key not configured' });
- const res = await axios.post(
- `https://generativelanguage.googleapis.com/v1beta/models/${model}:generateContent?key=${pconf.apiKey}`,
- { contents: buildGeminiContents(prompt, system) },
- { timeout: 180000 },
- );
- text = res.data.candidates?.[0]?.content?.parts?.[0]?.text || '';
- } else {
- return reply.code(400).send({ error: 'AI not configured' });
- }
- let roadmap = [];
- try {
- const jsonStr = (text.match(/\[[\s\S]*\]/) || ['[]'])[0];
- const parsed = JSON.parse(jsonStr);
- if (!Array.isArray(parsed)) throw new Error();
- roadmap = parsed
- .filter((p) => p && typeof p.topic === 'string' && typeof p.headline === 'string')
- .slice(0, 5)
- .map((p) => ({
- topic: p.topic.trim(),
- headline: p.headline.trim(),
- keywords: Array.isArray(p.keywords) ? p.keywords.filter((k) => typeof k === 'string').slice(0, 3) : [],
- rationale: typeof p.rationale === 'string' ? p.rationale.trim() : '',
- }));
- } catch {
- roadmap = [];
- }
- if (!roadmap.length) return reply.code(503).send({ error: 'AI returned invalid roadmap format — try again' });
- await db.collection('competitors').updateOne(
- { _id: new ObjectId(request.params.id) },
- { $set: { contentRoadmap: roadmap, updatedAt: new Date() } },
- );
- return { success: true, contentRoadmap: roadmap };
- } catch (err) {
- return reply.code(503).send({ error: 'Roadmap generation failed', detail: err.message });
- }
- });
- module.exports = app;
|