AdditionalDomains.php
1 year ago
Base.php
8 months ago
Cache.php
1 year ago
ExcludedUrls.php
1 year ago
Excludes.php
1 year ago
Integration.php
1 year ago
RemoteConfigFetcher.php
1 year ago
RequestMaker.php
1 year ago
Response.php
1 year ago
ResponseStatus.php
1 year ago
SafeMode.php
1 year ago
SecureRequestMaker.php
1 year ago
SignedBase.php
1 year ago
Stats.php
1 year ago
Tagger.php
1 year ago
Url.php
1 year ago
VariationCookie.php
1 year ago
Varnish.php
1 year ago
Warmup.php
1 year ago
Webhook.php
1 year ago
ResponseStatus.php
36 lines
| 1 | <?php |
| 2 | namespace NitroPack\SDK\Api; |
| 3 | |
| 4 | class ResponseStatus { |
| 5 | const OK = 200; |
| 6 | const ACCEPTED = 202; // There is no cache, but the request for creating cache has been accepted. |
| 7 | const BAD_REQUEST = 400; |
| 8 | const PAYMENT_REQUIRED = 402; |
| 9 | const FORBIDDEN = 403; |
| 10 | const NOT_FOUND = 404; |
| 11 | const CONFLICT = 409; |
| 12 | const RUNTIME_ERROR = 500; |
| 13 | const SERVICE_UNAVAILABLE = 503; |
| 14 | const UNKNOWN = -1; |
| 15 | |
| 16 | public static function getStatus($code) { |
| 17 | if (isset(self::$codeToStatus[$code])) { |
| 18 | return self::$codeToStatus[$code]; |
| 19 | } else { |
| 20 | return ResponseStatus::UNKNOWN; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | private static $codeToStatus = array( |
| 25 | "200" => ResponseStatus::OK, |
| 26 | "202" => ResponseStatus::ACCEPTED, |
| 27 | "400" => ResponseStatus::BAD_REQUEST, |
| 28 | "402" => ResponseStatus::PAYMENT_REQUIRED, |
| 29 | "403" => ResponseStatus::FORBIDDEN, |
| 30 | "404" => ResponseStatus::NOT_FOUND, |
| 31 | "409" => ResponseStatus::CONFLICT, |
| 32 | "500" => ResponseStatus::RUNTIME_ERROR, |
| 33 | "503" => ResponseStatus::SERVICE_UNAVAILABLE |
| 34 | ); |
| 35 | } |
| 36 |