1 | <?php |
||
17 | class CrossOriginRequestPlugin extends AbstractPlugin |
||
18 | { |
||
19 | /** the PHP constant for the Origin HTTP request header */ |
||
20 | const HEADER_CLIENT_ORIGIN = 'HTTP_ORIGIN'; |
||
21 | |||
22 | /** The HTTP header for allowing cross origin requests */ |
||
23 | const HEADER_ALLOW_ORIGIN = 'Access-Control-Allow-Origin'; |
||
24 | /** The HTTP header for allowing a list of headers */ |
||
25 | const HEADER_ALLOW_HEADERS = 'Access-Control-Allow-Headers'; |
||
26 | /** The HTTP header for allowing a list of methods */ |
||
27 | const HEADER_ALLOW_METHODS = 'Access-Control-Allow-Methods'; |
||
28 | /** The HTTP header for allowing credentials */ |
||
29 | const HEADER_ALLOW_CREDENTIALS = 'Access-Control-Allow-Credentials'; |
||
30 | /** The HTTP header for the max age to cache access control */ |
||
31 | const HEADER_MAX_AGE = 'Access-Control-Max-Age'; |
||
32 | |||
33 | /** the config key for the whitelist of allowed services */ |
||
34 | const CONFIG_SERVICE_WHITELIST = 'whitelist'; |
||
35 | /** the config key for the whitelist of allowed origin domains */ |
||
36 | const CONFIG_ORIGIN_WHITELIST = 'ignoreOrigins'; |
||
37 | /** the magic config option to allow all methods on a service */ |
||
38 | const CONFIG_ALL_METHODS = 'all'; |
||
39 | |||
40 | /** A constant indicating how long (in seconds) a user agent should cache |
||
41 | cross origin preflight response headers */ |
||
42 | const MAX_AGE = 86400; // 1 day |
||
43 | |||
44 | // the array of allowed headers the user agent can send in a cross origin request |
||
45 | private static $allowedHeaders = array( |
||
46 | 'accept', 'content-type' |
||
47 | ); |
||
48 | |||
49 | // the array of allowed HTTP verbs that can be used to perform cross origin requests |
||
50 | private static $allowedMethods = array( |
||
51 | 'GET', 'POST', 'OPTIONS' |
||
52 | ); |
||
53 | |||
54 | /** |
||
55 | * Invoked directly after the router decides which handler will be used. |
||
56 | * @param AbstractHandler $handler The handler selected by the router. |
||
57 | */ |
||
58 | 8 | public function afterHandlerSelected(AbstractHandler $handler) |
|
59 | { |
||
60 | 8 | parent::afterHandlerSelected($handler); |
|
61 | 8 | if (false === $this->isRequestCrossOrigin() || !($handler instanceof AbstractRequestHandler)) { |
|
62 | // since the request isn't cross origin we don't need this plugin to |
||
63 | // do any processing at all |
||
64 | 1 | return; |
|
65 | } |
||
66 | |||
67 | 7 | $request = $handler->getRequest(); |
|
68 | 7 | if (null === $request) { |
|
69 | // the CORS plugin only supports handlers with standard requests |
||
70 | 1 | return; |
|
71 | } |
||
72 | 6 | $requests = array($request); |
|
73 | 6 | if ($handler instanceof BatchRequestHandlerInterface) { |
|
74 | 1 | $requests = $handler->getRequests(); |
|
75 | } |
||
76 | 6 | $this->processRequestsForAccessDenial($requests); |
|
77 | |||
78 | // let the browser know this domain can make cross origin requests |
||
79 | 3 | @header(self::HEADER_ALLOW_ORIGIN.': '.$_SERVER[self::HEADER_CLIENT_ORIGIN]); |
|
|
|||
80 | // do not explicitly block requests that pass a cookie |
||
81 | 3 | @header(self::HEADER_ALLOW_CREDENTIALS.': true'); |
|
82 | |||
83 | 3 | if ('OPTIONS' === strtoupper($request->getVerb())) { |
|
84 | 1 | $this->addHeadersForOptionsRequests(); |
|
85 | } |
||
86 | 3 | } |
|
87 | |||
88 | /** |
||
89 | * Processes the list of requests to check if any should be blocked due |
||
90 | * to CORS policy. |
||
91 | * @param array $requests The array of requests. |
||
92 | */ |
||
93 | 6 | private function processRequestsForAccessDenial(array $requests) |
|
94 | { |
||
95 | 6 | foreach ($requests as $request) { |
|
96 | 6 | $controller = $request->getController(); |
|
97 | 6 | $action = $request->getAction(); |
|
98 | 6 | if (false === $this->isServiceEnabledForCrossOrigin($controller, $action)) { |
|
99 | // we have a cross origin request for a controller that's not enabled |
||
100 | // so throw an exception instead of processing the request |
||
101 | 2 | throw new AccessDeniedException( |
|
102 | 5 | 'Cross origin access denied to '.$controller.' and action '.$action |
|
103 | ); |
||
104 | } |
||
105 | } |
||
106 | 3 | } |
|
107 | |||
108 | /** |
||
109 | * Adds additional headers for the OPTIONS http verb. |
||
110 | */ |
||
111 | 1 | private function addHeadersForOptionsRequests() |
|
112 | { |
||
113 | // header for preflight cache expiry |
||
114 | 1 | $maxAge = self::MAX_AGE; |
|
115 | 1 | if (isset($this->options[self::HEADER_MAX_AGE])) { |
|
116 | 1 | $maxAge = intval($this->options[self::HEADER_MAX_AGE]); |
|
117 | } |
||
118 | 1 | @header(self::HEADER_MAX_AGE.': '.$maxAge); |
|
119 | |||
120 | // header for allowed request headers in cross origin requests |
||
121 | 1 | $allowedHeaders = self::$allowedHeaders; |
|
122 | 1 | if (isset($this->options[self::HEADER_ALLOW_HEADERS])) { |
|
123 | 1 | $allowedHeaders = (array)$this->options[self::HEADER_ALLOW_HEADERS]; |
|
124 | } |
||
125 | 1 | @header(self::HEADER_ALLOW_HEADERS.':'.implode(',', $allowedHeaders)); |
|
126 | |||
127 | // header for allowed HTTP methods in cross orgin requests |
||
128 | 1 | $allowedMethods = self::$allowedMethods; |
|
129 | 1 | if (isset($this->options[self::HEADER_ALLOW_METHODS])) { |
|
130 | 1 | $allowedMethods = (array)$this->options[self::HEADER_ALLOW_METHODS]; |
|
131 | } |
||
132 | 1 | @header(self::HEADER_ALLOW_METHODS.':'.implode(',', $allowedMethods)); |
|
133 | 1 | } |
|
134 | |||
135 | /** |
||
136 | * Returns whether or not the current service/method combination is enabled |
||
137 | * for cross origin requests. |
||
138 | * @param string $service The service requested. |
||
139 | * @param string|null $method The method requested. |
||
140 | * @return boolean Returns true if the service/method pair is in the whitelist and |
||
141 | * false otherwise. |
||
142 | */ |
||
143 | 6 | protected function isServiceEnabledForCrossOrigin($service, $method) |
|
174 | |||
175 | /** |
||
176 | * Returns true if the current requests is a cross origin request (i.e. does |
||
177 | * the Origin HTTP header exist in the request) and false otherwise. |
||
178 | * @return boolean Returns true if the request is cross origin and false otherwise. |
||
179 | */ |
||
180 | 8 | protected function isRequestCrossOrigin() |
|
192 | } |
||
193 |
If you suppress an error, we recommend checking for the error condition explicitly: