mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-08 13:27:49 -05:00
* Upgrade to PHP 8.1 As discussed in https://github.com/FreshRSS/FreshRSS/discussions/5474 https://www.php.net/releases/8.0/en.php https://www.php.net/releases/8.1/en.php Upgrade to available native type declarations https://php.net/language.types.declarations Upgrade to https://phpunit.de/announcements/phpunit-10.html which requires PHP 8.1+ (good timing, as version 9 was not maintained anymore) Upgrade `:oldest` Docker dev image to oldest Alpine version supporting PHP 8.1: Alpine 3.16, which includes PHP 8.1.22. * Include 6736 https://github.com/FreshRSS/FreshRSS/pull/6736
65 lines
1.6 KiB
PHP
65 lines
1.6 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* This controller manage API-related features.
|
|
*/
|
|
class FreshRSS_api_Controller extends FreshRSS_ActionController {
|
|
|
|
/**
|
|
* Update the user API password.
|
|
* Return an error message, or `false` if no error.
|
|
*/
|
|
public static function updatePassword(string $apiPasswordPlain): string|false {
|
|
$username = Minz_User::name();
|
|
if ($username == null) {
|
|
return _t('feedback.api.password.failed');
|
|
}
|
|
|
|
$apiPasswordHash = FreshRSS_password_Util::hash($apiPasswordPlain);
|
|
FreshRSS_Context::userConf()->apiPasswordHash = $apiPasswordHash;
|
|
|
|
$feverKey = FreshRSS_fever_Util::updateKey($username, $apiPasswordPlain);
|
|
if ($feverKey == false) {
|
|
return _t('feedback.api.password.failed');
|
|
}
|
|
|
|
FreshRSS_Context::userConf()->feverKey = $feverKey;
|
|
if (FreshRSS_Context::userConf()->save()) {
|
|
return false;
|
|
} else {
|
|
return _t('feedback.api.password.failed');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This action updates the user API password.
|
|
*
|
|
* Parameter is:
|
|
* - apiPasswordPlain: the new user password
|
|
*/
|
|
public function updatePasswordAction(): void {
|
|
if (!FreshRSS_Auth::hasAccess()) {
|
|
Minz_Error::error(403);
|
|
}
|
|
|
|
$return_url = ['c' => 'user', 'a' => 'profile'];
|
|
|
|
if (!Minz_Request::isPost()) {
|
|
Minz_Request::forward($return_url, true);
|
|
}
|
|
|
|
$apiPasswordPlain = Minz_Request::paramString('apiPasswordPlain', true);
|
|
if ($apiPasswordPlain == '') {
|
|
Minz_Request::forward($return_url, true);
|
|
}
|
|
|
|
$error = self::updatePassword($apiPasswordPlain);
|
|
if (is_string($error)) {
|
|
Minz_Request::bad($error, $return_url);
|
|
} else {
|
|
Minz_Request::good(_t('feedback.api.password.updated'), $return_url);
|
|
}
|
|
}
|
|
}
|