mapguesser/src/Controller/UserController.php

73 lines
1.9 KiB
PHP
Raw Normal View History

<?php namespace MapGuesser\Controller;
2020-06-14 21:04:20 +02:00
use MapGuesser\Interfaces\Authorization\ISecured;
use MapGuesser\Interfaces\Request\IRequest;
use MapGuesser\Interfaces\Response\IContent;
use MapGuesser\PersistentData\PersistentDataManager;
use MapGuesser\PersistentData\Model\User;
use MapGuesser\Response\HtmlContent;
use MapGuesser\Response\JsonContent;
2020-06-14 21:04:20 +02:00
class UserController implements ISecured
{
private IRequest $request;
private PersistentDataManager $pdm;
public function __construct(IRequest $request)
{
$this->request = $request;
$this->pdm = new PersistentDataManager();
}
2020-06-14 21:04:20 +02:00
public function authorize(): bool
{
$user = $this->request->user();
return $user !== null;
}
2020-06-25 16:44:34 +02:00
public function getAccount(): IContent
{
/**
* @var User $user
*/
$user = $this->request->user();
$data = ['user' => $user->toArray()];
2020-06-25 16:44:34 +02:00
return new HtmlContent('account', $data);
}
2020-06-25 16:44:34 +02:00
public function saveAccount(): IContent
{
/**
* @var User $user
*/
$user = $this->request->user();
if (!$user->checkPassword($this->request->post('password'))) {
$data = ['error' => 'password_not_match'];
return new JsonContent($data);
}
if (strlen($this->request->post('password_new')) > 0) {
if (strlen($this->request->post('password_new')) < 6) {
$data = ['error' => 'password_too_short'];
return new JsonContent($data);
}
if ($this->request->post('password_new') !== $this->request->post('password_new_confirm')) {
$data = ['error' => 'passwords_not_match'];
return new JsonContent($data);
}
$user->setPlainPassword($this->request->post('password_new'));
}
$this->pdm->saveToDb($user);
$data = ['success' => true];
return new JsonContent($data);
}
}