9b4a25799f
Replace fixed ackText with a rule-based AckProvider that picks response templates by message type and intent (translate, summary, rewrite, poster, ppt, mindmap, code, search, schedule). Pure sync, zero I/O, auto-falls back to config.ackText on any error. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
71 lines
2.3 KiB
JavaScript
71 lines
2.3 KiB
JavaScript
#!/usr/bin/env node
|
|
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { createDbPool } from '../db.mjs';
|
|
import { resolvePlazaCoverUrl } from '../plaza-posts.mjs';
|
|
|
|
const root = path.join(path.dirname(fileURLToPath(import.meta.url)), '..');
|
|
const shouldWrite = process.argv.includes('--write');
|
|
|
|
function loadEnvFile(filePath) {
|
|
if (!fs.existsSync(filePath)) return;
|
|
for (const line of fs.readFileSync(filePath, 'utf8').split('\n')) {
|
|
const trimmed = line.trim();
|
|
if (!trimmed || trimmed.startsWith('#')) continue;
|
|
const eq = trimmed.indexOf('=');
|
|
if (eq < 0) continue;
|
|
const key = trimmed.slice(0, eq).trim();
|
|
const value = trimmed.slice(eq + 1).trim();
|
|
if (!process.env[key]) process.env[key] = value;
|
|
}
|
|
}
|
|
|
|
loadEnvFile(path.join(root, '../../.env.local'));
|
|
loadEnvFile(path.join(root, '.env'));
|
|
|
|
const pool = createDbPool();
|
|
const [rows] = await pool.query(
|
|
`SELECT pp.id, pp.title, pp.cover_url, pp.status, pr.public_url
|
|
FROM plaza_posts pp
|
|
JOIN h5_publish_records pr ON pr.id = pp.publication_id
|
|
WHERE pp.status IN ('published', 'pending_review', 'rejected')
|
|
ORDER BY pp.published_at DESC, pp.id DESC`,
|
|
);
|
|
|
|
const updates = rows
|
|
.map((row) => ({
|
|
id: row.id,
|
|
title: row.title,
|
|
from: String(row.cover_url ?? ''),
|
|
to: resolvePlazaCoverUrl(row.cover_url, row.public_url),
|
|
publicUrl: String(row.public_url ?? ''),
|
|
}))
|
|
.filter((row) => row.to && row.from !== row.to);
|
|
|
|
console.log(`${shouldWrite ? '写入模式' : 'Dry-run'}:共扫描 ${rows.length} 条帖子,命中 ${updates.length} 条待补封面。`);
|
|
|
|
for (const row of updates.slice(0, 20)) {
|
|
console.log(`- ${row.id} | ${row.title}`);
|
|
console.log(` ${row.from || '(empty)'} -> ${row.to}`);
|
|
}
|
|
if (updates.length > 20) {
|
|
console.log(`... 其余 ${updates.length - 20} 条省略`);
|
|
}
|
|
|
|
if (shouldWrite && updates.length > 0) {
|
|
const now = Date.now();
|
|
for (const row of updates) {
|
|
await pool.query(`UPDATE plaza_posts SET cover_url = ?, updated_at = ? WHERE id = ?`, [
|
|
row.to,
|
|
now,
|
|
row.id,
|
|
]);
|
|
}
|
|
console.log(`已更新 ${updates.length} 条帖子封面。`);
|
|
} else if (!shouldWrite) {
|
|
console.log('未写入数据库;如需正式回填,请执行: node scripts/backfill-plaza-cover-urls.mjs --write');
|
|
}
|
|
|
|
await pool.end();
|