mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-05 15:27:53 +10:00
220 lines
6.2 KiB
JavaScript
Executable File
220 lines
6.2 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
/**
|
|
* Extract SEO metadata from a URL.
|
|
*
|
|
* Extracts all <meta> tags including:
|
|
* - og:* (Open Graph)
|
|
* - twitter:*
|
|
* - description, keywords, author
|
|
* - Any other meta tags
|
|
*
|
|
* Usage: on_Snapshot__17_seo.js --url=<url> --snapshot-id=<uuid>
|
|
* Output: Writes seo/seo.json
|
|
*
|
|
* Environment variables:
|
|
* SAVE_SEO: Enable SEO extraction (default: true)
|
|
*/
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const puppeteer = require('puppeteer-core');
|
|
|
|
// Extractor metadata
|
|
const EXTRACTOR_NAME = 'seo';
|
|
const OUTPUT_DIR = 'seo';
|
|
const OUTPUT_FILE = 'seo.json';
|
|
const CHROME_SESSION_DIR = 'chrome_session';
|
|
|
|
// Parse command line arguments
|
|
function parseArgs() {
|
|
const args = {};
|
|
process.argv.slice(2).forEach(arg => {
|
|
if (arg.startsWith('--')) {
|
|
const [key, ...valueParts] = arg.slice(2).split('=');
|
|
args[key.replace(/-/g, '_')] = valueParts.join('=') || true;
|
|
}
|
|
});
|
|
return args;
|
|
}
|
|
|
|
// Get environment variable with default
|
|
function getEnv(name, defaultValue = '') {
|
|
return (process.env[name] || defaultValue).trim();
|
|
}
|
|
|
|
function getEnvBool(name, defaultValue = false) {
|
|
const val = getEnv(name, '').toLowerCase();
|
|
if (['true', '1', 'yes', 'on'].includes(val)) return true;
|
|
if (['false', '0', 'no', 'off'].includes(val)) return false;
|
|
return defaultValue;
|
|
}
|
|
|
|
// Get CDP URL from chrome_session
|
|
function getCdpUrl() {
|
|
const cdpFile = path.join(CHROME_SESSION_DIR, 'cdp_url.txt');
|
|
if (fs.existsSync(cdpFile)) {
|
|
return fs.readFileSync(cdpFile, 'utf8').trim();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
// Extract SEO metadata
|
|
async function extractSeo(url) {
|
|
// Create output directory
|
|
if (!fs.existsSync(OUTPUT_DIR)) {
|
|
fs.mkdirSync(OUTPUT_DIR, { recursive: true });
|
|
}
|
|
const outputPath = path.join(OUTPUT_DIR, OUTPUT_FILE);
|
|
|
|
let browser = null;
|
|
|
|
try {
|
|
// Connect to existing Chrome session
|
|
const cdpUrl = getCdpUrl();
|
|
if (!cdpUrl) {
|
|
return { success: false, error: 'No Chrome session found (chrome_session extractor must run first)' };
|
|
}
|
|
|
|
browser = await puppeteer.connect({
|
|
browserWSEndpoint: cdpUrl,
|
|
});
|
|
|
|
// Get the page
|
|
const pages = await browser.pages();
|
|
const page = pages.find(p => p.url().startsWith('http')) || pages[0];
|
|
|
|
if (!page) {
|
|
return { success: false, error: 'No page found in Chrome session' };
|
|
}
|
|
|
|
// Extract all meta tags
|
|
const seoData = await page.evaluate(() => {
|
|
const metaTags = Array.from(document.querySelectorAll('meta'));
|
|
const seo = {
|
|
url: window.location.href,
|
|
title: document.title || '',
|
|
};
|
|
|
|
// Process each meta tag
|
|
metaTags.forEach(tag => {
|
|
// Get the key (name or property attribute)
|
|
const key = tag.getAttribute('name') || tag.getAttribute('property') || '';
|
|
const content = tag.getAttribute('content') || '';
|
|
|
|
if (key && content) {
|
|
// Store by key
|
|
seo[key] = content;
|
|
}
|
|
});
|
|
|
|
// Also get canonical URL if present
|
|
const canonical = document.querySelector('link[rel="canonical"]');
|
|
if (canonical) {
|
|
seo.canonical = canonical.getAttribute('href');
|
|
}
|
|
|
|
// Get language
|
|
const htmlLang = document.documentElement.lang;
|
|
if (htmlLang) {
|
|
seo.language = htmlLang;
|
|
}
|
|
|
|
return seo;
|
|
});
|
|
|
|
// Write output
|
|
fs.writeFileSync(outputPath, JSON.stringify(seoData, null, 2));
|
|
|
|
return { success: true, output: outputPath, seoData };
|
|
|
|
} catch (e) {
|
|
return { success: false, error: `${e.name}: ${e.message}` };
|
|
} finally {
|
|
if (browser) {
|
|
browser.disconnect();
|
|
}
|
|
}
|
|
}
|
|
|
|
async function main() {
|
|
const args = parseArgs();
|
|
const url = args.url;
|
|
const snapshotId = args.snapshot_id;
|
|
|
|
if (!url || !snapshotId) {
|
|
console.error('Usage: on_Snapshot__17_seo.js --url=<url> --snapshot-id=<uuid>');
|
|
process.exit(1);
|
|
}
|
|
|
|
const startTs = new Date();
|
|
let status = 'failed';
|
|
let output = null;
|
|
let error = '';
|
|
|
|
try {
|
|
// Check if enabled
|
|
if (!getEnvBool('SAVE_SEO', true)) {
|
|
console.log('Skipping SEO (SAVE_SEO=False)');
|
|
status = 'skipped';
|
|
const endTs = new Date();
|
|
console.log(`START_TS=${startTs.toISOString()}`);
|
|
console.log(`END_TS=${endTs.toISOString()}`);
|
|
console.log(`STATUS=${status}`);
|
|
console.log(`RESULT_JSON=${JSON.stringify({extractor: EXTRACTOR_NAME, status, url, snapshot_id: snapshotId})}`);
|
|
process.exit(0);
|
|
}
|
|
|
|
const result = await extractSeo(url);
|
|
|
|
if (result.success) {
|
|
status = 'succeeded';
|
|
output = result.output;
|
|
const metaCount = Object.keys(result.seoData).length - 2; // Subtract url and title
|
|
console.log(`SEO metadata extracted: ${metaCount} meta tags`);
|
|
} else {
|
|
status = 'failed';
|
|
error = result.error;
|
|
}
|
|
} catch (e) {
|
|
error = `${e.name}: ${e.message}`;
|
|
status = 'failed';
|
|
}
|
|
|
|
const endTs = new Date();
|
|
const duration = (endTs - startTs) / 1000;
|
|
|
|
// Print results
|
|
console.log(`START_TS=${startTs.toISOString()}`);
|
|
console.log(`END_TS=${endTs.toISOString()}`);
|
|
console.log(`DURATION=${duration.toFixed(2)}`);
|
|
if (output) {
|
|
console.log(`OUTPUT=${output}`);
|
|
}
|
|
console.log(`STATUS=${status}`);
|
|
|
|
if (error) {
|
|
console.error(`ERROR=${error}`);
|
|
}
|
|
|
|
// Print JSON result
|
|
const resultJson = {
|
|
extractor: EXTRACTOR_NAME,
|
|
url,
|
|
snapshot_id: snapshotId,
|
|
status,
|
|
start_ts: startTs.toISOString(),
|
|
end_ts: endTs.toISOString(),
|
|
duration: Math.round(duration * 100) / 100,
|
|
output,
|
|
error: error || null,
|
|
};
|
|
console.log(`RESULT_JSON=${JSON.stringify(resultJson)}`);
|
|
|
|
process.exit(status === 'succeeded' ? 0 : 1);
|
|
}
|
|
|
|
main().catch(e => {
|
|
console.error(`Fatal error: ${e.message}`);
|
|
process.exit(1);
|
|
});
|