aboutsummaryrefslogtreecommitdiff
path: root/cli/export-zip-for-user.php
blob: 67421ea29cf2b9721ccb332d13de7913c0ecc34b (plain)
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
#!/usr/bin/env 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;
$number_entries = empty($options['max-feed-entries']) ? 100 : intval($options['max-feed-entries']);
try {
	$ok = $importController->exportFile($username, true, true, true, true, $number_entries);
} catch (FreshRSS_ZipMissing_Exception $zme) {
	fail('FreshRSS error: Lacking php-zip extension!');
}
invalidateHttpCache($username);

done($ok);