- Скрипт fix-introduction-h2.ts для массового исправления - Скрипт fix-last-post.ts для частного случая - Добавлены эмодзи в зависимости от категории поста Пофикшено 8 постов: - Скрытие с места ДТП - Отказ от подписи в протоколе ГИБДД - За рулем на лекарствах - Лишение прав за встречку - Независимая экспертиза после ДТП - Бесплатная консультация автоюриста - Протокол и постановление ГИБДД - 5 ошибок при заполнении протокола
121 lines
4.3 KiB
TypeScript
121 lines
4.3 KiB
TypeScript
import PocketBase from 'pocketbase';
|
||
|
||
const PB_URL = 'https://avt-back.ru';
|
||
const ADMIN_EMAIL = 'redibedi2019@gmail.com';
|
||
const ADMIN_PASSWORD = 'Stalin4444';
|
||
|
||
// Посты с "Введение" на production
|
||
const PROBLEMATIC_POSTS = [
|
||
{
|
||
id: 'e8or2rfsrpoly19',
|
||
title: 'Скрытие с места ДТП',
|
||
slug: 'skrytie-s-mesta-dtp'
|
||
},
|
||
{
|
||
id: 'no247l14oxw156i',
|
||
title: 'Отказ от подписи в протоколе ГИБДД',
|
||
slug: 'otkaz-ot-podpisi-v-protokole-gibdd'
|
||
},
|
||
{
|
||
id: 'eflpgypt1r78q3q',
|
||
title: 'За рулем на лекарствах',
|
||
slug: 'lekarstva-za-rulem-lishenie-prav'
|
||
},
|
||
{
|
||
id: 'kmt2cpiu47jsp9c',
|
||
title: 'Лишение прав за встречку',
|
||
slug: 'lishenie-prav-za-vstrechku-12-15'
|
||
},
|
||
{
|
||
id: '87u3tnboztln5w1',
|
||
title: 'Независимая экспертиза после ДТП',
|
||
slug: 'nezavisimaya-ekspertiza-posle-dtp'
|
||
},
|
||
{
|
||
id: 'ewq7fbjbgpo12iv',
|
||
title: 'Консультация автоюриста',
|
||
slug: 'avtoyurist-surgut-besplatnaya-konsultaciya'
|
||
},
|
||
{
|
||
id: '656dhm888yebhc8',
|
||
title: 'Протокол и постановление ГИБДД',
|
||
slug: 'protocol-ili-postanovlenie'
|
||
},
|
||
{
|
||
id: 'f54gic3amc1rmjx',
|
||
title: '5 ошибок при заполнении протокола',
|
||
slug: '5-oshibok-voditelya-pri-zapolnenii-protokola-gibdd'
|
||
}
|
||
];
|
||
|
||
// Эмодзи по категории (приблизительно)
|
||
function getEmojiForTitle(title: string): string {
|
||
const lower = title.toLowerCase();
|
||
if (lower.includes('дтп') || lower.includes('авария') || lower.includes('столкновен')) return '⚖️';
|
||
if (lower.includes('лишени') || lower.includes('прав')) return '🚗';
|
||
if (lower.includes('протокол') || lower.includes('гибдд') || lower.includes('штраф')) return '📋';
|
||
if (lower.includes('эксперт')) return '🔍';
|
||
if (lower.includes('консульт')) return '💡';
|
||
return '⚖️';
|
||
}
|
||
|
||
async function fixIntroductionH2() {
|
||
const pb = new PocketBase(PB_URL);
|
||
|
||
try {
|
||
await pb.admins.authWithPassword(ADMIN_EMAIL, ADMIN_PASSWORD);
|
||
console.log('✅ Подключено к PocketBase\n');
|
||
} catch (e) {
|
||
console.error('❌ Ошибка авторизации:', e);
|
||
process.exit(1);
|
||
}
|
||
|
||
let fixed = 0;
|
||
let errors = 0;
|
||
|
||
for (const post of PROBLEMATIC_POSTS) {
|
||
try {
|
||
// Получаем текущий пост
|
||
const current = await pb.collection('posts').getOne(post.id);
|
||
const content = current.content || '';
|
||
|
||
// Проверяем что действительно начинается с "Введение"
|
||
if (!content.includes('<h2>Введение</h2>') && !content.includes('<h2>Введение ')) {
|
||
console.log(`⏭️ ${post.title} — уже исправлен или не содержит "Введение"`);
|
||
continue;
|
||
}
|
||
|
||
// Формируем новый H2
|
||
const newH2 = `<h2>${getEmojiForTitle(post.title)} ${post.title}</h2>`;
|
||
|
||
// Заменяем "Введение" на новый H2
|
||
// Учитываем возможные варианты: <h2>Введение</h2>, <h2>Введение </h2>, etc
|
||
const newContent = content.replace(/<h2>\s*Введение\s*<\/h2>/gi, newH2);
|
||
|
||
// Если замена не произошла, попробуем другой паттерн
|
||
const finalContent = newContent.includes(newH2)
|
||
? newContent
|
||
: content.replace(/<h2>[^<]*Введение[^<]*<\/h2>/gi, newH2);
|
||
|
||
// Обновляем пост
|
||
await pb.collection('posts').update(post.id, { content: finalContent });
|
||
|
||
console.log(`✅ ${post.title}`);
|
||
console.log(` Было: <h2>Введение</h2>`);
|
||
console.log(` Стало: ${newH2}`);
|
||
console.log(` URL: https://avtourist-surgut.ru/blog/${post.slug}`);
|
||
console.log();
|
||
|
||
fixed++;
|
||
} catch (e: any) {
|
||
console.error(`❌ Ошибка при обработке ${post.title}:`, e.message);
|
||
errors++;
|
||
}
|
||
}
|
||
|
||
console.log('='.repeat(50));
|
||
console.log(`Готово! Исправлено: ${fixed}, ошибок: ${errors}`);
|
||
console.log('='.repeat(50));
|
||
}
|
||
|
||
fixIntroductionH2();
|