You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.4 KiB
59 lines
1.4 KiB
<?php
|
|
|
|
namespace IQBall\Core;
|
|
|
|
use IQBall\Core\Http\HttpResponse;
|
|
|
|
/**
|
|
* Represent an action.
|
|
* @template S session
|
|
*/
|
|
class Action {
|
|
/**
|
|
* @var callable(mixed[], S): HttpResponse $action action to call
|
|
*/
|
|
protected $action;
|
|
|
|
private bool $isAuthRequired;
|
|
|
|
/**
|
|
* @param callable(mixed[], S): HttpResponse $action
|
|
*/
|
|
protected function __construct(callable $action, bool $isAuthRequired) {
|
|
$this->action = $action;
|
|
$this->isAuthRequired = $isAuthRequired;
|
|
}
|
|
|
|
public function isAuthRequired(): bool {
|
|
return $this->isAuthRequired;
|
|
}
|
|
|
|
/**
|
|
* Runs an action
|
|
* @param mixed[] $params
|
|
* @param S $session
|
|
* @return HttpResponse
|
|
*/
|
|
public function run(array $params, $session): HttpResponse {
|
|
$params = array_values($params);
|
|
$params[] = $session;
|
|
return call_user_func_array($this->action, $params);
|
|
}
|
|
|
|
/**
|
|
* @param callable(mixed[], S): HttpResponse $action
|
|
* @return Action<S> an action that does not require to have an authorization.
|
|
*/
|
|
public static function noAuth(callable $action): Action {
|
|
return new Action($action, false);
|
|
}
|
|
|
|
/**
|
|
* @param callable(mixed[], S): HttpResponse $action
|
|
* @return Action<S> an action that does require to have an authorization.
|
|
*/
|
|
public static function auth(callable $action): Action {
|
|
return new Action($action, true);
|
|
}
|
|
}
|