mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-02 18:37:52 -05:00
* Housekeeping lib_rss.php `lib_rss.php` had become much too large, especially after https://github.com/FreshRSS/FreshRSS/pull/7924 Moved most functions to other places. Mostly no change of code otherwise (see comments). * Extension: composer run-script phpstan-third-party
65 lines
1.9 KiB
PHP
Executable File
65 lines
1.9 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
declare(strict_types=1);
|
|
require __DIR__ . '/_cli.php';
|
|
|
|
performRequirementCheck(FreshRSS_Context::systemConf()->db['type'] ?? '');
|
|
|
|
$cliOptions = new class extends CliOptionsParser {
|
|
public bool $deleteBackup;
|
|
public bool $forceOverwrite;
|
|
|
|
public function __construct() {
|
|
$this->addOption('deleteBackup', (new CliOption('delete-backup'))->withValueNone());
|
|
$this->addOption('forceOverwrite', (new CliOption('force-overwrite'))->withValueNone());
|
|
parent::__construct();
|
|
}
|
|
};
|
|
|
|
if (!empty($cliOptions->errors)) {
|
|
fail('FreshRSS error: ' . array_shift($cliOptions->errors) . "\n" . $cliOptions->usage);
|
|
}
|
|
|
|
FreshRSS_Context::initSystem(true);
|
|
Minz_User::change(Minz_User::INTERNAL_USER);
|
|
$ok = false;
|
|
try {
|
|
$error = initDb();
|
|
if ($error != '') {
|
|
$_SESSION['bd_error'] = $error;
|
|
} else {
|
|
$ok = true;
|
|
}
|
|
} catch (Exception $ex) {
|
|
$_SESSION['bd_error'] = $ex->getMessage();
|
|
}
|
|
if (!$ok) {
|
|
fail('FreshRSS database error: ' . (is_string($_SESSION['bd_error'] ?? null) ? $_SESSION['bd_error'] : 'Unknown error'));
|
|
}
|
|
|
|
foreach (FreshRSS_user_Controller::listUsers() as $username) {
|
|
$username = cliInitUser($username);
|
|
$filename = DATA_PATH . "/users/{$username}/backup.sqlite";
|
|
if (!file_exists($filename)) {
|
|
fwrite(STDERR, "FreshRSS SQLite backup not found for user “{$username}”!\n");
|
|
$ok = false;
|
|
continue;
|
|
}
|
|
|
|
echo 'FreshRSS restore database from SQLite for user “', $username, "”…\n";
|
|
|
|
$databaseDAO = FreshRSS_Factory::createDatabaseDAO($username);
|
|
$ok &= $databaseDAO->dbCopy($filename, FreshRSS_DatabaseDAO::SQLITE_IMPORT, clearFirst: $cliOptions->forceOverwrite);
|
|
if ($ok) {
|
|
if ($cliOptions->deleteBackup) {
|
|
unlink($filename);
|
|
}
|
|
} else {
|
|
fwrite(STDERR, "FreshRSS database already exists for user “{$username}”!\n");
|
|
fwrite(STDERR, "If you would like to clear the user database first, use the option --force-overwrite\n");
|
|
}
|
|
invalidateHttpCache($username);
|
|
}
|
|
|
|
done((bool)$ok);
|