* [MOD] Use static types.

* [MOD] CORS headers.
* [MOD] Improve Forwarded header lookup.
* [ADD] Create interface for configuration data.

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2021-10-12 20:49:18 +02:00
parent 5424084a52
commit 58249da565
638 changed files with 21764 additions and 22315 deletions

View File

@@ -4,7 +4,7 @@
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2020, Rubén Domínguez nuxsmin@$syspass.org
* @copyright 2012-2021, Rubén Domínguez nuxsmin@$syspass.org
*
* This file is part of sysPass.
*
@@ -19,7 +19,7 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
*/
namespace SP\Modules\Web\Controllers;
@@ -42,17 +42,15 @@ final class UserSettingsGeneralController extends SimpleControllerBase
{
use JsonTrait;
/**
* @var UserService
*/
protected $userService;
protected ?UserService $userService = null;
/**
* @return bool
* @throws DependencyException
* @throws NotFoundException
* @throws \JsonException
*/
public function saveAction()
public function saveAction(): bool
{
try {
$userData = $this->session->getUserData();
@@ -76,11 +74,17 @@ final class UserSettingsGeneralController extends SimpleControllerBase
// Guardar las preferencias en la sesión
$userData->setPreferences($userPreferencesData);
return $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('Preferences updated'));
return $this->returnJsonResponse(
JsonResponse::JSON_SUCCESS,
__u('Preferences updated')
);
} catch (Exception $e) {
processException($e);
$this->eventDispatcher->notifyEvent('exception', new Event($e));
$this->eventDispatcher->notifyEvent(
'exception',
new Event($e)
);
return $this->returnJsonResponseException($e);
}
@@ -93,7 +97,7 @@ final class UserSettingsGeneralController extends SimpleControllerBase
* @throws NotFoundException
* @throws SessionTimeout
*/
protected function initialize()
protected function initialize(): void
{
$this->checks();