mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-05 15:27:53 +10:00
224 lines
6.4 KiB
JavaScript
Executable File
224 lines
6.4 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 PLUGIN_NAME = 'seo';
|
|
const OUTPUT_DIR = '.';
|
|
const OUTPUT_FILE = 'seo.json';
|
|
const CHROME_SESSION_DIR = '../chrome';
|
|
|
|
// 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;
|
|
}
|
|
|
|
// Wait for chrome tab to be fully loaded
|
|
async function waitForChromeTabLoaded(timeoutMs = 60000) {
|
|
const navigationFile = path.join(CHROME_SESSION_DIR, 'navigation.json');
|
|
const startTime = Date.now();
|
|
|
|
while (Date.now() - startTime < timeoutMs) {
|
|
if (fs.existsSync(navigationFile)) {
|
|
return true;
|
|
}
|
|
// Wait 100ms before checking again
|
|
await new Promise(resolve => setTimeout(resolve, 100));
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
// Get CDP URL from chrome plugin
|
|
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) {
|
|
// Output directory is current directory (hook already runs in output dir)
|
|
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 plugin 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)');
|
|
// Output clean JSONL (no RESULT_JSON= prefix)
|
|
console.log(JSON.stringify({
|
|
type: 'ArchiveResult',
|
|
status: 'skipped',
|
|
output_str: 'SAVE_SEO=False',
|
|
}));
|
|
process.exit(0);
|
|
}
|
|
|
|
// Check if Chrome session exists, then wait for page load
|
|
const cdpUrl = getCdpUrl();
|
|
if (cdpUrl) {
|
|
// Wait for page to be fully loaded
|
|
const pageLoaded = await waitForChromeTabLoaded(60000);
|
|
if (!pageLoaded) {
|
|
throw new Error('Page not loaded after 60s (chrome_navigate must complete first)');
|
|
}
|
|
}
|
|
|
|
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();
|
|
|
|
if (error) console.error(`ERROR: ${error}`);
|
|
|
|
// Output clean JSONL (no RESULT_JSON= prefix)
|
|
console.log(JSON.stringify({
|
|
type: 'ArchiveResult',
|
|
status,
|
|
output_str: output || error || '',
|
|
}));
|
|
|
|
process.exit(status === 'succeeded' ? 0 : 1);
|
|
}
|
|
|
|
main().catch(e => {
|
|
console.error(`Fatal error: ${e.message}`);
|
|
process.exit(1);
|
|
});
|