Browse code

added appinfo/info.xml appinfo/signature.json CHANGELOG.txt lib/AppInfo/Application.php css/style.css providers/Plivo

DoubleBastionAdmin authored on 05/11/2025 13:35:09
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,161 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
+
5
+namespace GuzzleHttp\Psr7;
6
+
7
+use Psr\Http\Message\ResponseInterface;
8
+use Psr\Http\Message\StreamInterface;
9
+
10
+/**
11
+ * PSR-7 response implementation.
12
+ */
13
+class Response implements ResponseInterface
14
+{
15
+    use MessageTrait;
16
+
17
+    /** Map of standard HTTP status code/reason phrases */
18
+    private const PHRASES = [
19
+        100 => 'Continue',
20
+        101 => 'Switching Protocols',
21
+        102 => 'Processing',
22
+        200 => 'OK',
23
+        201 => 'Created',
24
+        202 => 'Accepted',
25
+        203 => 'Non-Authoritative Information',
26
+        204 => 'No Content',
27
+        205 => 'Reset Content',
28
+        206 => 'Partial Content',
29
+        207 => 'Multi-status',
30
+        208 => 'Already Reported',
31
+        300 => 'Multiple Choices',
32
+        301 => 'Moved Permanently',
33
+        302 => 'Found',
34
+        303 => 'See Other',
35
+        304 => 'Not Modified',
36
+        305 => 'Use Proxy',
37
+        306 => 'Switch Proxy',
38
+        307 => 'Temporary Redirect',
39
+        308 => 'Permanent Redirect',
40
+        400 => 'Bad Request',
41
+        401 => 'Unauthorized',
42
+        402 => 'Payment Required',
43
+        403 => 'Forbidden',
44
+        404 => 'Not Found',
45
+        405 => 'Method Not Allowed',
46
+        406 => 'Not Acceptable',
47
+        407 => 'Proxy Authentication Required',
48
+        408 => 'Request Time-out',
49
+        409 => 'Conflict',
50
+        410 => 'Gone',
51
+        411 => 'Length Required',
52
+        412 => 'Precondition Failed',
53
+        413 => 'Request Entity Too Large',
54
+        414 => 'Request-URI Too Large',
55
+        415 => 'Unsupported Media Type',
56
+        416 => 'Requested range not satisfiable',
57
+        417 => 'Expectation Failed',
58
+        418 => 'I\'m a teapot',
59
+        422 => 'Unprocessable Entity',
60
+        423 => 'Locked',
61
+        424 => 'Failed Dependency',
62
+        425 => 'Unordered Collection',
63
+        426 => 'Upgrade Required',
64
+        428 => 'Precondition Required',
65
+        429 => 'Too Many Requests',
66
+        431 => 'Request Header Fields Too Large',
67
+        451 => 'Unavailable For Legal Reasons',
68
+        500 => 'Internal Server Error',
69
+        501 => 'Not Implemented',
70
+        502 => 'Bad Gateway',
71
+        503 => 'Service Unavailable',
72
+        504 => 'Gateway Time-out',
73
+        505 => 'HTTP Version not supported',
74
+        506 => 'Variant Also Negotiates',
75
+        507 => 'Insufficient Storage',
76
+        508 => 'Loop Detected',
77
+        510 => 'Not Extended',
78
+        511 => 'Network Authentication Required',
79
+    ];
80
+
81
+    /** @var string */
82
+    private $reasonPhrase;
83
+
84
+    /** @var int */
85
+    private $statusCode;
86
+
87
+    /**
88
+     * @param int                                  $status  Status code
89
+     * @param (string|string[])[]                  $headers Response headers
90
+     * @param string|resource|StreamInterface|null $body    Response body
91
+     * @param string                               $version Protocol version
92
+     * @param string|null                          $reason  Reason phrase (when empty a default will be used based on the status code)
93
+     */
94
+    public function __construct(
95
+        int $status = 200,
96
+        array $headers = [],
97
+        $body = null,
98
+        string $version = '1.1',
99
+        ?string $reason = null
100
+    ) {
101
+        $this->assertStatusCodeRange($status);
102
+
103
+        $this->statusCode = $status;
104
+
105
+        if ($body !== '' && $body !== null) {
106
+            $this->stream = Utils::streamFor($body);
107
+        }
108
+
109
+        $this->setHeaders($headers);
110
+        if ($reason == '' && isset(self::PHRASES[$this->statusCode])) {
111
+            $this->reasonPhrase = self::PHRASES[$this->statusCode];
112
+        } else {
113
+            $this->reasonPhrase = (string) $reason;
114
+        }
115
+
116
+        $this->protocol = $version;
117
+    }
118
+
119
+    public function getStatusCode(): int
120
+    {
121
+        return $this->statusCode;
122
+    }
123
+
124
+    public function getReasonPhrase(): string
125
+    {
126
+        return $this->reasonPhrase;
127
+    }
128
+
129
+    public function withStatus($code, $reasonPhrase = ''): ResponseInterface
130
+    {
131
+        $this->assertStatusCodeIsInteger($code);
132
+        $code = (int) $code;
133
+        $this->assertStatusCodeRange($code);
134
+
135
+        $new = clone $this;
136
+        $new->statusCode = $code;
137
+        if ($reasonPhrase == '' && isset(self::PHRASES[$new->statusCode])) {
138
+            $reasonPhrase = self::PHRASES[$new->statusCode];
139
+        }
140
+        $new->reasonPhrase = (string) $reasonPhrase;
141
+
142
+        return $new;
143
+    }
144
+
145
+    /**
146
+     * @param mixed $statusCode
147
+     */
148
+    private function assertStatusCodeIsInteger($statusCode): void
149
+    {
150
+        if (filter_var($statusCode, FILTER_VALIDATE_INT) === false) {
151
+            throw new \InvalidArgumentException('Status code must be an integer value.');
152
+        }
153
+    }
154
+
155
+    private function assertStatusCodeRange(int $statusCode): void
156
+    {
157
+        if ($statusCode < 100 || $statusCode >= 600) {
158
+            throw new \InvalidArgumentException('Status code must be an integer value between 1xx and 5xx.');
159
+        }
160
+    }
161
+}
Browse code

removed appinfo/info.xml appinfo/signature.json CHANGELOG.txt lib/AppInfo/Application.php css/style.css providers/Plivo

DoubleBastionAdmin authored on 05/11/2025 13:12:22
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,155 +0,0 @@
1
-<?php
2
-
3
-namespace GuzzleHttp\Psr7;
4
-
5
-use Psr\Http\Message\ResponseInterface;
6
-use Psr\Http\Message\StreamInterface;
7
-
8
-/**
9
- * PSR-7 response implementation.
10
- */
11
-class Response implements ResponseInterface
12
-{
13
-    use MessageTrait;
14
-
15
-    /** @var array Map of standard HTTP status code/reason phrases */
16
-    private static $phrases = [
17
-        100 => 'Continue',
18
-        101 => 'Switching Protocols',
19
-        102 => 'Processing',
20
-        200 => 'OK',
21
-        201 => 'Created',
22
-        202 => 'Accepted',
23
-        203 => 'Non-Authoritative Information',
24
-        204 => 'No Content',
25
-        205 => 'Reset Content',
26
-        206 => 'Partial Content',
27
-        207 => 'Multi-status',
28
-        208 => 'Already Reported',
29
-        300 => 'Multiple Choices',
30
-        301 => 'Moved Permanently',
31
-        302 => 'Found',
32
-        303 => 'See Other',
33
-        304 => 'Not Modified',
34
-        305 => 'Use Proxy',
35
-        306 => 'Switch Proxy',
36
-        307 => 'Temporary Redirect',
37
-        400 => 'Bad Request',
38
-        401 => 'Unauthorized',
39
-        402 => 'Payment Required',
40
-        403 => 'Forbidden',
41
-        404 => 'Not Found',
42
-        405 => 'Method Not Allowed',
43
-        406 => 'Not Acceptable',
44
-        407 => 'Proxy Authentication Required',
45
-        408 => 'Request Time-out',
46
-        409 => 'Conflict',
47
-        410 => 'Gone',
48
-        411 => 'Length Required',
49
-        412 => 'Precondition Failed',
50
-        413 => 'Request Entity Too Large',
51
-        414 => 'Request-URI Too Large',
52
-        415 => 'Unsupported Media Type',
53
-        416 => 'Requested range not satisfiable',
54
-        417 => 'Expectation Failed',
55
-        418 => 'I\'m a teapot',
56
-        422 => 'Unprocessable Entity',
57
-        423 => 'Locked',
58
-        424 => 'Failed Dependency',
59
-        425 => 'Unordered Collection',
60
-        426 => 'Upgrade Required',
61
-        428 => 'Precondition Required',
62
-        429 => 'Too Many Requests',
63
-        431 => 'Request Header Fields Too Large',
64
-        451 => 'Unavailable For Legal Reasons',
65
-        500 => 'Internal Server Error',
66
-        501 => 'Not Implemented',
67
-        502 => 'Bad Gateway',
68
-        503 => 'Service Unavailable',
69
-        504 => 'Gateway Time-out',
70
-        505 => 'HTTP Version not supported',
71
-        506 => 'Variant Also Negotiates',
72
-        507 => 'Insufficient Storage',
73
-        508 => 'Loop Detected',
74
-        511 => 'Network Authentication Required',
75
-    ];
76
-
77
-    /** @var string */
78
-    private $reasonPhrase = '';
79
-
80
-    /** @var int */
81
-    private $statusCode = 200;
82
-
83
-    /**
84
-     * @param int                                  $status  Status code
85
-     * @param array                                $headers Response headers
86
-     * @param string|null|resource|StreamInterface $body    Response body
87
-     * @param string                               $version Protocol version
88
-     * @param string|null                          $reason  Reason phrase (when empty a default will be used based on the status code)
89
-     */
90
-    public function __construct(
91
-        $status = 200,
92
-        array $headers = [],
93
-        $body = null,
94
-        $version = '1.1',
95
-        $reason = null
96
-    ) {
97
-        $this->assertStatusCodeIsInteger($status);
98
-        $status = (int) $status;
99
-        $this->assertStatusCodeRange($status);
100
-
101
-        $this->statusCode = $status;
102
-
103
-        if ($body !== '' && $body !== null) {
104
-            $this->stream = Utils::streamFor($body);
105
-        }
106
-
107
-        $this->setHeaders($headers);
108
-        if ($reason == '' && isset(self::$phrases[$this->statusCode])) {
109
-            $this->reasonPhrase = self::$phrases[$this->statusCode];
110
-        } else {
111
-            $this->reasonPhrase = (string) $reason;
112
-        }
113
-
114
-        $this->protocol = $version;
115
-    }
116
-
117
-    public function getStatusCode()
118
-    {
119
-        return $this->statusCode;
120
-    }
121
-
122
-    public function getReasonPhrase()
123
-    {
124
-        return $this->reasonPhrase;
125
-    }
126
-
127
-    public function withStatus($code, $reasonPhrase = '')
128
-    {
129
-        $this->assertStatusCodeIsInteger($code);
130
-        $code = (int) $code;
131
-        $this->assertStatusCodeRange($code);
132
-
133
-        $new = clone $this;
134
-        $new->statusCode = $code;
135
-        if ($reasonPhrase == '' && isset(self::$phrases[$new->statusCode])) {
136
-            $reasonPhrase = self::$phrases[$new->statusCode];
137
-        }
138
-        $new->reasonPhrase = (string) $reasonPhrase;
139
-        return $new;
140
-    }
141
-
142
-    private function assertStatusCodeIsInteger($statusCode)
143
-    {
144
-        if (filter_var($statusCode, FILTER_VALIDATE_INT) === false) {
145
-            throw new \InvalidArgumentException('Status code must be an integer value.');
146
-        }
147
-    }
148
-
149
-    private function assertStatusCodeRange($statusCode)
150
-    {
151
-        if ($statusCode < 100 || $statusCode >= 600) {
152
-            throw new \InvalidArgumentException('Status code must be an integer value between 1xx and 5xx.');
153
-        }
154
-    }
155
-}
Browse code

Added README.md appinfo/info.xml appinfo/signature.json lib/Controller/AuthorApiController.php and the providers directory

DoubleBastionAdmin authored on 20/08/2022 16:33:00
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,155 @@
1
+<?php
2
+
3
+namespace GuzzleHttp\Psr7;
4
+
5
+use Psr\Http\Message\ResponseInterface;
6
+use Psr\Http\Message\StreamInterface;
7
+
8
+/**
9
+ * PSR-7 response implementation.
10
+ */
11
+class Response implements ResponseInterface
12
+{
13
+    use MessageTrait;
14
+
15
+    /** @var array Map of standard HTTP status code/reason phrases */
16
+    private static $phrases = [
17
+        100 => 'Continue',
18
+        101 => 'Switching Protocols',
19
+        102 => 'Processing',
20
+        200 => 'OK',
21
+        201 => 'Created',
22
+        202 => 'Accepted',
23
+        203 => 'Non-Authoritative Information',
24
+        204 => 'No Content',
25
+        205 => 'Reset Content',
26
+        206 => 'Partial Content',
27
+        207 => 'Multi-status',
28
+        208 => 'Already Reported',
29
+        300 => 'Multiple Choices',
30
+        301 => 'Moved Permanently',
31
+        302 => 'Found',
32
+        303 => 'See Other',
33
+        304 => 'Not Modified',
34
+        305 => 'Use Proxy',
35
+        306 => 'Switch Proxy',
36
+        307 => 'Temporary Redirect',
37
+        400 => 'Bad Request',
38
+        401 => 'Unauthorized',
39
+        402 => 'Payment Required',
40
+        403 => 'Forbidden',
41
+        404 => 'Not Found',
42
+        405 => 'Method Not Allowed',
43
+        406 => 'Not Acceptable',
44
+        407 => 'Proxy Authentication Required',
45
+        408 => 'Request Time-out',
46
+        409 => 'Conflict',
47
+        410 => 'Gone',
48
+        411 => 'Length Required',
49
+        412 => 'Precondition Failed',
50
+        413 => 'Request Entity Too Large',
51
+        414 => 'Request-URI Too Large',
52
+        415 => 'Unsupported Media Type',
53
+        416 => 'Requested range not satisfiable',
54
+        417 => 'Expectation Failed',
55
+        418 => 'I\'m a teapot',
56
+        422 => 'Unprocessable Entity',
57
+        423 => 'Locked',
58
+        424 => 'Failed Dependency',
59
+        425 => 'Unordered Collection',
60
+        426 => 'Upgrade Required',
61
+        428 => 'Precondition Required',
62
+        429 => 'Too Many Requests',
63
+        431 => 'Request Header Fields Too Large',
64
+        451 => 'Unavailable For Legal Reasons',
65
+        500 => 'Internal Server Error',
66
+        501 => 'Not Implemented',
67
+        502 => 'Bad Gateway',
68
+        503 => 'Service Unavailable',
69
+        504 => 'Gateway Time-out',
70
+        505 => 'HTTP Version not supported',
71
+        506 => 'Variant Also Negotiates',
72
+        507 => 'Insufficient Storage',
73
+        508 => 'Loop Detected',
74
+        511 => 'Network Authentication Required',
75
+    ];
76
+
77
+    /** @var string */
78
+    private $reasonPhrase = '';
79
+
80
+    /** @var int */
81
+    private $statusCode = 200;
82
+
83
+    /**
84
+     * @param int                                  $status  Status code
85
+     * @param array                                $headers Response headers
86
+     * @param string|null|resource|StreamInterface $body    Response body
87
+     * @param string                               $version Protocol version
88
+     * @param string|null                          $reason  Reason phrase (when empty a default will be used based on the status code)
89
+     */
90
+    public function __construct(
91
+        $status = 200,
92
+        array $headers = [],
93
+        $body = null,
94
+        $version = '1.1',
95
+        $reason = null
96
+    ) {
97
+        $this->assertStatusCodeIsInteger($status);
98
+        $status = (int) $status;
99
+        $this->assertStatusCodeRange($status);
100
+
101
+        $this->statusCode = $status;
102
+
103
+        if ($body !== '' && $body !== null) {
104
+            $this->stream = Utils::streamFor($body);
105
+        }
106
+
107
+        $this->setHeaders($headers);
108
+        if ($reason == '' && isset(self::$phrases[$this->statusCode])) {
109
+            $this->reasonPhrase = self::$phrases[$this->statusCode];
110
+        } else {
111
+            $this->reasonPhrase = (string) $reason;
112
+        }
113
+
114
+        $this->protocol = $version;
115
+    }
116
+
117
+    public function getStatusCode()
118
+    {
119
+        return $this->statusCode;
120
+    }
121
+
122
+    public function getReasonPhrase()
123
+    {
124
+        return $this->reasonPhrase;
125
+    }
126
+
127
+    public function withStatus($code, $reasonPhrase = '')
128
+    {
129
+        $this->assertStatusCodeIsInteger($code);
130
+        $code = (int) $code;
131
+        $this->assertStatusCodeRange($code);
132
+
133
+        $new = clone $this;
134
+        $new->statusCode = $code;
135
+        if ($reasonPhrase == '' && isset(self::$phrases[$new->statusCode])) {
136
+            $reasonPhrase = self::$phrases[$new->statusCode];
137
+        }
138
+        $new->reasonPhrase = (string) $reasonPhrase;
139
+        return $new;
140
+    }
141
+
142
+    private function assertStatusCodeIsInteger($statusCode)
143
+    {
144
+        if (filter_var($statusCode, FILTER_VALIDATE_INT) === false) {
145
+            throw new \InvalidArgumentException('Status code must be an integer value.');
146
+        }
147
+    }
148
+
149
+    private function assertStatusCodeRange($statusCode)
150
+    {
151
+        if ($statusCode < 100 || $statusCode >= 600) {
152
+            throw new \InvalidArgumentException('Status code must be an integer value between 1xx and 5xx.');
153
+        }
154
+    }
155
+}