Compare commits
13 Commits
61aa012dd6
...
5e8c945170
Author | SHA1 | Date |
---|---|---|
tracer | 5e8c945170 | |
tracer | 54ecb6b15e | |
tracer | 7160fd0804 | |
tracer | 2b34a89068 | |
tracer | ab7ac074ba | |
tracer | 6461046c31 | |
tracer | d2cdcdded4 | |
tracer | 7e19efd420 | |
tracer | ffe4d43600 | |
tracer | c05aee49d5 | |
tracer | 10d56751e4 | |
tracer | 71f8e1623e | |
tracer | 2836e0d878 |
|
@ -14,16 +14,31 @@ use App\Enums\UserAuth;
|
|||
class User
|
||||
{
|
||||
public function __construct(
|
||||
private string $nick = '',
|
||||
private string $password = '',
|
||||
private string $first = '',
|
||||
private string $last = '',
|
||||
private int $id = 0,
|
||||
private bool $isAdmin = false,
|
||||
private UserAuth $userAuth = UserAuth::AUTH_ANONYMOUS
|
||||
private string $nick = '',
|
||||
private string $password = '',
|
||||
private readonly string $newPassword = '',
|
||||
private string $first = '',
|
||||
private string $last = '',
|
||||
private int $id = 0,
|
||||
private bool $isAdmin = false,
|
||||
private UserAuth $userAuth = UserAuth::AUTH_ANONYMOUS
|
||||
)
|
||||
{
|
||||
// empty body
|
||||
if (!empty($this->newPassword)) {
|
||||
echo "password";
|
||||
$this->password = password_hash(password: $this->newPassword, algo: PASSWORD_ARGON2I);
|
||||
}
|
||||
|
||||
if (session_status() === PHP_SESSION_ACTIVE) {
|
||||
// ANONYMOUS has id 0
|
||||
if ($this->id != 0) {
|
||||
if ($this->isAdmin) {
|
||||
$this->userAuth = UserAuth::AUTH_ADMIN;
|
||||
} else {
|
||||
$this->userAuth = UserAuth::AUTH_USER;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function getNick(): string
|
||||
|
@ -86,12 +101,12 @@ class User
|
|||
$this->isAdmin = $isAdmin;
|
||||
}
|
||||
|
||||
public function getAuth()
|
||||
public function getAuth(): UserAuth
|
||||
{
|
||||
return UserAuth::AUTH_ANONYMOUS;
|
||||
return $this->userAuth;
|
||||
}
|
||||
|
||||
public function setAuth(UserAuth $userAuth)
|
||||
public function setAuth(UserAuth $userAuth): void
|
||||
{
|
||||
$this->userAuth = $userAuth;
|
||||
}
|
||||
|
|
|
@ -1,29 +1,62 @@
|
|||
<?php
|
||||
/*
|
||||
* Copyright (c) 2022. Micha Espey <tracer@24unix.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace App\Service;
|
||||
|
||||
use App\Controller\AddressBook;
|
||||
use App\Controller\AddressBookAdminController;
|
||||
use App\Controller\AddressBookController;
|
||||
use App\Controller\SecurityController;
|
||||
use App\Entity\User;
|
||||
use App\Repository\UserRepository;
|
||||
|
||||
/*
|
||||
* A quick and dirty class container for DI.
|
||||
* Caveat: Classes are always instantiated
|
||||
* No autowiring (yet, maybe later, but it might fit for a demo)
|
||||
*/
|
||||
|
||||
class Container
|
||||
{
|
||||
// caveat: Classes are always instantiated
|
||||
// No autowiring (yet, maybe later, but it might fit for a demo)
|
||||
|
||||
private Template $template;
|
||||
private AddressBook $addressBook;
|
||||
private Router $router;
|
||||
private AddressBookController $addressBook;
|
||||
private AddressBookAdminController $addressBookAdmin;
|
||||
private Config $config;
|
||||
private DatabaseConnection $databaseConnection;
|
||||
private Router $router;
|
||||
private SecurityController $securityController;
|
||||
private Template $template;
|
||||
private User $user;
|
||||
private UserRepository $userRepository;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->template = new Template(templateDir: dirname(path: __DIR__, levels: 2) . '/templates/');
|
||||
$this->addressBook = new AddressBook(template: $this->template);
|
||||
$this->router = new Router();
|
||||
$this->config = new Config();
|
||||
$this->databaseConnection = new DatabaseConnection(config: $this->config);
|
||||
$this->template = new Template(templateDir: dirname(path: __DIR__, levels: 2) . '/templates/');
|
||||
$this->router = new Router(template: $this->template);
|
||||
$this->userRepository = new UserRepository(databaseConnection: $this->databaseConnection);
|
||||
$this->securityController = new SecurityController(template: $this->template, userRepository: $this->userRepository, router: $this->router);
|
||||
if (empty($_SESSION['user_id'])) {
|
||||
$this->user = new User(); // ANONYMOUS
|
||||
} else {
|
||||
$this->user = $this->userRepository->findByID(id: $_SESSION['user_id']);
|
||||
}
|
||||
$this->addressBook = new AddressBookController(template: $this->template, user: $this->user, userRepository: $this->userRepository, router: $this->router);
|
||||
$this->addressBookAdmin = new AddressBookAdminController(template: $this->template, user: $this->user, userRepository: $this->userRepository, router: $this->router);
|
||||
}
|
||||
|
||||
public function get(string $className): object
|
||||
{
|
||||
return match ($className) {
|
||||
'App\Controller\AddressBook' => $this->addressBook,
|
||||
'App\Controller\AddressBookController' => $this->addressBook,
|
||||
'App\Controller\AddressBookAdminController' => $this->addressBookAdmin,
|
||||
'App\Controller\SecurityController' => $this->securityController,
|
||||
'App\Service\Router' => $this->router,
|
||||
//default => throw new Exception(message: "Missing class definition: $class")
|
||||
default => die("Missing class definition: $className")
|
||||
|
|
|
@ -16,17 +16,17 @@ use Closure;
|
|||
/*
|
||||
* A small router implementation for the address book demo.
|
||||
* Currently it doesn't handle GET requests, as not needed.
|
||||
* But if I reuse the code in my bindApi I'll support GET as well.
|
||||
* But if I reuse the code in my bindApi I'll maybe support GET as well.
|
||||
*/
|
||||
|
||||
class Router
|
||||
{
|
||||
/*
|
||||
* The easiest wy to differentiate between static and dynamic routes is using
|
||||
* The easiest way to differentiate between static and dynamic routes is using
|
||||
* two arrays, no need to pollute the class Route with that information
|
||||
*/
|
||||
private array $staticRoutes;
|
||||
private array $dynamicRoutes;
|
||||
private array $staticRoutes = [];
|
||||
private array $dynamicRoutes = [];
|
||||
|
||||
public function __construct(private readonly Template $template)
|
||||
{
|
||||
|
@ -44,13 +44,9 @@ class Router
|
|||
$parameters = $matches[0];
|
||||
|
||||
// create regex for route:
|
||||
$regex = preg_replace(pattern: '/(?<={).+?(?=})/', replacement: '(.*?)', subject: $route);
|
||||
|
||||
// code below is ugly, better match including the braces
|
||||
$regex = str_replace(search: '{', replace: '', subject: $regex);
|
||||
$regex = str_replace(search: '}', replace: '', subject: $regex);
|
||||
|
||||
$regex = preg_replace(pattern: '/{.+?}/', replacement: '([a-zA-Z0-9]*)', subject: $route);
|
||||
$regex = '/^' . str_replace(search: "/", replace: '\\/', subject: $regex) . '$/i';
|
||||
|
||||
$route = new Route(name: $name, route: $route, regEx: $regex, parameters: $parameters, callback: $callback);
|
||||
|
||||
if ($parameters) {
|
||||
|
@ -61,7 +57,7 @@ class Router
|
|||
}
|
||||
|
||||
/*
|
||||
* Check if there is a known route and executes the callback.
|
||||
* Checks if there is a known route and executes the callback.
|
||||
*/
|
||||
public function handleRouting(): void
|
||||
{
|
||||
|
@ -71,28 +67,56 @@ class Router
|
|||
* Static routes have preference over dynamic ones, so
|
||||
* /admin/user/add to add and
|
||||
* /admin/user/{name} to edit is possible.
|
||||
* A user named "add" of course not :)
|
||||
*
|
||||
* But who wants to call their users "add" or "delete"?
|
||||
* That's as weird as Little Bobby Tables … (https://xkcd.com/327/)
|
||||
*/
|
||||
foreach ($this->staticRoutes as $route) {
|
||||
if (preg_match(pattern: $route->getRegex(), subject: $requestUri, matches: $matches)) {
|
||||
call_user_func(callback: $route->getCallback());
|
||||
|
||||
// We've found our route, bail out.
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($this->dynamicRoutes as $route) {
|
||||
$parameters = [];
|
||||
if (preg_match(pattern: $route->getRegex(), subject: $requestUri, matches: $matches)) {
|
||||
$parameters = [];
|
||||
foreach ($route->getParameters() as $id => $parameter) {
|
||||
$parameters[$parameter] = $matches[$id + 1];
|
||||
}
|
||||
// PHP is mad about named parameters in call_user_func
|
||||
// Uncaught Error: Unknown named parameter $args in …
|
||||
// PHP is mad about named parameters in call_user_func when adding parameters.
|
||||
// Uncaught Error: Unknown named parameter $args in <sourceFile>
|
||||
// But PHPStorm seems happy without them. So what?
|
||||
call_user_func($route->getCallback(), $parameters);
|
||||
return;
|
||||
}
|
||||
}
|
||||
// if no route is matched, throw a 404
|
||||
$this->template->render(templateName: 'status/404.html.php');
|
||||
}
|
||||
|
||||
public function path(string $routeName, array $vars = [])
|
||||
{
|
||||
foreach (array_merge($this->dynamicRoutes, $this->staticRoutes) as $route) {
|
||||
|
||||
if ($route->getName() == $routeName) {
|
||||
if ($vars) {
|
||||
// build route
|
||||
$route = $route->getRoute();
|
||||
// replace placeholder with current values
|
||||
foreach ($vars as $key => $value) {
|
||||
$route = str_replace(search: '{' . $key . '}', replace: $value, subject: $route);
|
||||
}
|
||||
return $route;
|
||||
} else {
|
||||
return $route->getRoute();
|
||||
}
|
||||
}
|
||||
}
|
||||
// no 404, this is reached only if the code is wrong
|
||||
die("Missing Route: $routeName");
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
<?php include dirname(path: __DIR__) . '/_header.html.php'; ?>
|
||||
|
||||
<h1>Address Book - Admin</h1>
|
||||
<a href="/admin/users">👱Users</a>
|
||||
<a href="<?= $router->path('app_admin_users') ?>">👱Users</a>
|
||||
|
||||
<?php include dirname(path: __DIR__) . '/_footer.html.php' ?>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<th>First</th>
|
||||
<th>Last</th>
|
||||
<th>Is Admin</th>
|
||||
<th> </th>
|
||||
<th colspan="2"> </th>
|
||||
</tr>
|
||||
<?php foreach ($users as $userLine): ?>
|
||||
<tr>
|
||||
|
@ -22,11 +22,14 @@
|
|||
<?php endif; ?>
|
||||
</td>
|
||||
<td>
|
||||
<a href="/admin/users/<?= $userLine->getNick(); ?>">edit</a>
|
||||
<a href="<?= $router->path('app_admin_users_edit', vars: ['nick' => $userLine->getNick()]); ?>">edit</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="<?= $router->path('app_admin_users_delete', vars: ['nick' => $userLine->getNick()]); ?>">delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</table>
|
||||
<a href="/admin/users/add">Add User</a>
|
||||
<a href="<?= $router->path('app_admin_users_add'); ?>">Add User</a>
|
||||
|
||||
<?php include dirname(path: __DIR__) . '/_footer.html.php' ?>
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
<input type="text" name="nick" id="nick" required>
|
||||
<br>
|
||||
|
||||
<label for="password">Password</label>
|
||||
<input type="password" name="password" id="password" required>
|
||||
<label for="new_password">Password</label>
|
||||
<input type="password" name="new_password" id="new_password" required>
|
||||
<br>
|
||||
|
||||
<label for="first">First</label>
|
||||
|
@ -17,7 +17,7 @@
|
|||
<input type="text" name="last" id="last" required>
|
||||
<br>
|
||||
|
||||
<label for="is-admin">Is Admin</label>
|
||||
<label for="is_admin">Is Admin</label>
|
||||
<input type="checkbox" name="is_admin" id="is_admin">
|
||||
<br>
|
||||
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
<input type="text" name="nick" id="nick" value="<?= $editUser->getNick() ?>" required>
|
||||
<br>
|
||||
|
||||
<label for="password">Password (leave empty to keep the current one)</label>
|
||||
<input type="password" name="password" id="password">
|
||||
<label for="new_password">Password (leave empty to keep the current one)</label>
|
||||
<input type="password" name="new_password" id="new_password">
|
||||
<br>
|
||||
|
||||
<label for="first">First</label>
|
||||
|
@ -19,7 +19,7 @@
|
|||
<input type="text" name="last" id="last" value="<?= $editUser->getLast() ?>" required>
|
||||
<br>
|
||||
|
||||
<label for="is-admin">Is Admin</label>
|
||||
<label for="is_admin">Is Admin</label>
|
||||
<input type="checkbox" name="is_admin" id="is_admin" <?= $editUser->isAdmin()?'checked':'' ?>>
|
||||
<br>
|
||||
|
||||
|
|
Loading…
Reference in New Issue