mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-08 05:17:52 -05:00
If an option used on cli is not recognized, the command aborts and displays an error message. If the typed option is similar to one of the recognized options, a hint is displayed. At the moment, there is a limitation on long options. Short options are not validated at the moment. See #2046
33 lines
827 B
PHP
Executable File
33 lines
827 B
PHP
Executable File
#!/usr/bin/php
|
|
<?php
|
|
require(__DIR__ . '/_cli.php');
|
|
|
|
$params = array(
|
|
'user:',
|
|
'max-feed-entries:',
|
|
);
|
|
|
|
$options = getopt('', $params);
|
|
|
|
if (!validateOptions($argv, $params) || empty($options['user'])) {
|
|
fail('Usage: ' . basename(__FILE__) . " --user username ( --max-feed-entries 100 ) > /path/to/file.zip");
|
|
}
|
|
|
|
$username = cliInitUser($options['user']);
|
|
|
|
fwrite(STDERR, 'FreshRSS exporting ZIP for user “' . $username . "”…\n");
|
|
|
|
$importController = new FreshRSS_importExport_Controller();
|
|
|
|
$ok = false;
|
|
try {
|
|
$ok = $importController->exportFile(true, true, true, true,
|
|
empty($options['max-feed-entries']) ? 100 : intval($options['max-feed-entries']),
|
|
$username);
|
|
} catch (FreshRSS_ZipMissing_Exception $zme) {
|
|
fail('FreshRSS error: Lacking php-zip extension!');
|
|
}
|
|
invalidateHttpCache($username);
|
|
|
|
done($ok);
|