mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-06 12:27:52 -05:00
* Updates do-install params * Adds parseCliParams to _cli.php * Updates do-install to use parseCliParams * Updates reconfigure to use parseCliParams * Fixes bug mail_login => email * Update create-user to use parseCliParams * Minor refactor * Updates update-user to use parseCliParams * Fix no_default_feeds => no-default-feeds * Refactors arrays * Updates CLI Readme * Adds docblocks to _cli functions * Sets vars in _cli functions * Fixes indentation * Meeting coding standards around colons * Meeting PHPStan standards * Removes stray whitespace * Meeting PHPStan Next Level standards * More specific typing * Maintaining types * Typing around getopt() * Fixes typo * Fixes typo perameters -> parameters * Removes unused variable * Rewrites deprecation warning message
34 lines
760 B
PHP
Executable File
34 lines
760 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
declare(strict_types=1);
|
|
|
|
$isUpdate = true;
|
|
require(__DIR__ . '/_update-or-create-user.php');
|
|
|
|
$username = cliInitUser($GLOBALS['options']['valid']['user']);
|
|
|
|
echo 'FreshRSS updating user “', $username, "”…\n";
|
|
|
|
$ok = FreshRSS_user_Controller::updateUser(
|
|
$username,
|
|
empty($options['valid']['email']) ? null : $options['valid']['email'],
|
|
empty($options['valid']['password']) ? '' : $options['valid']['password'],
|
|
$GLOBALS['values']);
|
|
|
|
if (!$ok) {
|
|
fail('FreshRSS could not update user!');
|
|
}
|
|
|
|
if (!empty($options['valid']['api_password'])) {
|
|
$error = FreshRSS_api_Controller::updatePassword($options['valid']['api_password']);
|
|
if ($error) {
|
|
fail($error);
|
|
}
|
|
}
|
|
|
|
invalidateHttpCache($username);
|
|
|
|
accessRights();
|
|
|
|
done($ok);
|