mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-24 05:08:03 -05:00
* Separates long & short options for parsing * Adds parsing for short options + doc rewrites * Fixes undefined constant in check.translation * Standardises CL option parsing * Refactors option parsing * Renames getLongOptions -> getOptions * Removes unused code * Converges on string typing for options * Updates docs & help files * Updates array syntax array( ) -> [ ]
55 lines
1.6 KiB
PHP
Executable File
55 lines
1.6 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
declare(strict_types=1);
|
|
require(__DIR__ . '/_cli.php');
|
|
|
|
performRequirementCheck(FreshRSS_Context::systemConf()->db['type'] ?? '');
|
|
|
|
$parameters = [
|
|
'long' => [
|
|
'user' => ':',
|
|
'max-feed-entries' => ':',
|
|
],
|
|
'short' => [],
|
|
'deprecated' => [],
|
|
];
|
|
|
|
$options = parseCliParams($parameters);
|
|
|
|
if (!empty($options['invalid']) || empty($options['valid']['user']) || !is_string($options['valid']['user'])) {
|
|
fail('Usage: ' . basename(__FILE__) . " --user username ( --max-feed-entries 100 ) > /path/to/file.zip");
|
|
}
|
|
|
|
if (!extension_loaded('zip')) {
|
|
fail('FreshRSS error: Lacking php-zip extension!');
|
|
}
|
|
|
|
$username = cliInitUser($options['valid']['user']);
|
|
|
|
fwrite(STDERR, 'FreshRSS exporting ZIP for user “' . $username . "”…\n");
|
|
|
|
$export_service = new FreshRSS_Export_Service($username);
|
|
$number_entries = empty($options['valid']['max-feed-entries']) ? 100 : intval($options['valid']['max-feed-entries']);
|
|
$exported_files = [];
|
|
|
|
// First, we generate the OPML file
|
|
list($filename, $content) = $export_service->generateOpml();
|
|
$exported_files[$filename] = $content;
|
|
|
|
// Then, labelled and starred entries
|
|
list($filename, $content) = $export_service->generateStarredEntries('ST');
|
|
$exported_files[$filename] = $content;
|
|
|
|
// And a list of entries based on the complete list of feeds
|
|
$feeds_exported_files = $export_service->generateAllFeedEntries($number_entries);
|
|
$exported_files = array_merge($exported_files, $feeds_exported_files);
|
|
|
|
// Finally, we compress all these files into a single Zip archive and we output
|
|
// the content
|
|
list($filename, $content) = $export_service->zip($exported_files);
|
|
echo $content;
|
|
|
|
invalidateHttpCache($username);
|
|
|
|
done();
|