1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- require_once('dypath.class.php');
- require_once('request.class.php');
- require_once('response.class.php');
- require_once('arguments.class.php');
- class Path implements JsonSerializable{
- private $handles = [];
- public $path;
- public function __construct(string $path){
- $this->path = new DyPath($path);
- }
- public function __invoke(Request $req, Response $res, Arguments $args){
- $err = null;
- foreach($this->handles as $k => $fn){
- try{
- $fn($req, $res, $args, $err);
- }catch(Exception $e){
- $err = $e;
- }
- }
- }
- public function __clone(){
- // No cloning for now
- }
- public function __destruct(){
- // Nothing to do here
- }
- public function jsonSerialize(){
- return [
- 'dypath'=>$this->path
- ];
- }
- public function __toString(){
- return "[Path {$this->path}]";
- }
- public function handle(Callable $fn){
- array_push($this->handles,$fn);
- return $this;
- }
- public function matches(string $path){
- return $this->path->matches($path);
- }
- public function args(string $path){
- return $this->path->args($path);
- }
- }
- ?>
|