-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathRoute.php
86 lines (74 loc) · 1.51 KB
/
Route.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
/**
*
* This file is part of mvc-rest-api for PHP.
*
*/
namespace Router;
/**
* Class Route For Save Route
*
* @author Mohammad Rahmani <rto1680@gmail.com>
*
* @package Router
*/
final class Route {
/**
* Http Method.
*
* @var string
*/
private $method;
/**
* The path for this route.
*
* @var string
*/
private $pattern;
/**
* The action, controller, callable. this route points to.
*
* @var mixed
*/
private $callback;
/**
* Allows these HTTP methods.
*
* @var array
*/
private $list_method = ['GET', 'POST', 'PUT', 'DELETE', 'OPTION'];
/**
* construct function
*/
public function __construct(String $method, String $pattern, $callback) {
$this->method = $this->validateMethod(strtoupper($method));
$this->pattern = cleanUrl($pattern);
$this->callback = $callback;
}
/**
* check valid method
*/
private function validateMethod(string $method) {
if (in_array(strtoupper($method), $this->list_method))
return $method;
throw new Exception('Invalid Method Name');
}
/**
* get method
*/
public function getMethod() {
return $this->method;
}
/**
* get pattern
*/
public function getPattern() {
return $this->pattern;
}
/**
* get callback
*/
public function getCallback() {
return $this->callback;
}
}