-
-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathindex.js
More file actions
executable file
·128 lines (108 loc) · 5.9 KB
/
Copy pathindex.js
File metadata and controls
executable file
·128 lines (108 loc) · 5.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
* Copyright (c) 2026 by Christian Kellner.
* Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause
*/
import fs from 'fs';
import { checkIfConfigIsAccessible, getProviders, refreshConfig } from './lib/utils.js';
import * as similarityCache from './lib/services/similarity-check/similarityCache.js';
import { runMigrations } from './lib/services/storage/migrations/migrate.js';
import { ensureDemoUserExists, ensureAdminUserExists } from './lib/services/storage/userStorage.js';
import { initTrackerCron } from './lib/services/crons/tracker-cron.js';
import logger from './lib/services/logger.js';
import { reloadEnabledFromSettings } from './lib/services/debug/debugLogStorage.js';
import { initActiveCheckerCron } from './lib/services/crons/listing-alive-cron.js';
import { initGeocodingCron } from './lib/services/crons/geocoding-cron.js';
import { getSettings } from './lib/services/storage/settingsStorage.js';
import SqliteConnection, { computeDbPath } from './lib/services/storage/SqliteConnection.js';
import { initJobExecutionService } from './lib/services/jobs/jobExecutionService.js';
import { ensureValidBinary } from './lib/services/ensureValidBinary.js';
import { removeObsoleteProviders } from './lib/services/providers/providerCleanup.js';
import { seedDemo, warnOnDefaultAdminPassword } from './lib/services/demo/demoService.js';
import { initDemoCleanupCron } from './lib/services/crons/demo-cleanup-cron.js';
import { initSessionCleanupCron } from './lib/services/crons/session-cleanup-cron.js';
import { initListingRetentionCron } from './lib/services/crons/listing-retention-cron.js';
import { initPriceTrackingCron } from './lib/services/crons/price-tracking-cron.js';
import { initTravelTimeCron } from './lib/services/crons/travel-time-cron.js';
// Ensure the CloakBrowser stealth Chromium binary is present and complete before
// jobs run. ensureValidBinary() also detects and auto-heals partial extractions
// (e.g. a newer version that was downloaded but only the chrome executable was
// written) so Chrome never crashes with "Invalid file descriptor to ICU data".
logger.info('Checking CloakBrowser binary...');
await ensureValidBinary();
logger.info('CloakBrowser binary ready.');
// Configuration comes first, because everything below reads it - SqliteConnection.init() in
// particular resolves the database directory from `sqlitepath`.
//
// This used to run one step later, after SqliteConnection.init(), which made a fresh Docker
// container unstartable: the image ships no conf/config.json (`.dockerignore` excludes `conf/`, the
// Dockerfile only creates an empty /conf volume), so the very first read threw ENOENT and the
// create-with-defaults below never got the chance to run. A source checkout has the file committed,
// which is why this only ever showed up in containers.
if (!(await checkIfConfigIsAccessible())) {
logger.error('Configuration exists, but is not accessible. Please check the file permission');
process.exit(1);
}
try {
await refreshConfig();
} catch (error) {
logger.error(error.message, error.cause ?? error);
process.exit(1);
}
await SqliteConnection.init();
// Run DB migrations once at startup and block until finished. A failure here is fatal: continuing
// would start the API and the schedulers against a schema that is missing the failed migration and
// everything after it.
try {
await runMigrations();
} catch (err) {
logger.error('Database migration failed. Refusing to start.', err.cause ?? err);
process.exit(1);
}
const settings = await getSettings();
// Restore the persisted on/off flag for opt-in DB log capture so it survives a
// Fredy restart. reloadEnabledFromSettings() also (un)wires the logger sink based
// on the restored flag, so the logger hot path stays cost-free when nobody enabled
// the feature.
await reloadEnabledFromSettings();
// Ensure the sqlite directory exists before loading anything else (based on config.sqlitepath)
const { dir: sqliteDir } = await computeDbPath();
if (!fs.existsSync(sqliteDir)) {
fs.mkdirSync(sqliteDir, { recursive: true });
}
// Load provider modules once at startup
const providers = await getProviders();
// A provider that was deleted from lib/provider still lives on in the DB (in the provider config
// of existing jobs and in the listings it found). Those leftovers can never be scraped or
// re-checked again, so they are pruned before anything starts working with jobs or listings.
removeObsoleteProviders(providers);
similarityCache.initSimilarityCache();
similarityCache.startSimilarityCacheReloader();
//assuming interval is always in minutes
const INTERVAL = settings.interval * 60 * 1000;
// Initialize API only after migrations completed
await import('./lib/api/api.js');
if (settings.demoMode) {
logger.info('Running in demo mode');
}
await ensureAdminUserExists();
await ensureDemoUserExists();
// A demo instance must always present a working Fredy: the demo job is created on the first
// start and repaired on every later one, so a drifted config can never leave the demo empty.
await seedDemo(providers);
await warnOnDefaultAdminPassword();
await initTrackerCron();
//do not wait for this to finish, let it run in the background
initActiveCheckerCron();
initGeocodingCron();
await initDemoCleanupCron();
await initSessionCleanupCron();
await initListingRetentionCron();
// Schedules only. Unlike the others this one is never run on start: it renders a browser page per
// listing, and a restart is the worst moment to begin doing that.
initPriceTrackingCron();
// Same reasoning: schedule only. The sweep talks to a community routing service, and hammering it
// every time an instance restarts is exactly the behaviour their usage policy asks projects to avoid.
initTravelTimeCron();
logger.info(`Started Fredy successfully. Ui can be accessed via http://localhost:${settings.port}`);
// Initialize the lean Job Execution Service (schedules and bus listeners)
initJobExecutionService({ providers, intervalMs: INTERVAL });