Skip to content

Commit 4713825

Browse files
committed
[smarcet]
* added content type and content length on put request to avoid 405 on ical
1 parent e92aed9 commit 4713825

File tree

3 files changed

+37
-11
lines changed

3 files changed

+37
-11
lines changed

src/Facade/Utils/Headers.php

+6-5
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@
1818
*/
1919
final class Headers
2020
{
21-
const Depth = 'Depth';
22-
const Prefer = 'Prefer';
23-
const ContentType = 'Content-Type';
24-
const IfMatch = 'If-Match';
25-
const IfNotMatch = 'If-None-Match"';
21+
const Depth = 'Depth';
22+
const Prefer = 'Prefer';
23+
const ContentType = 'Content-Type';
24+
const ContentLength = 'Content-Length';
25+
const IfMatch = 'If-Match';
26+
const IfNotMatch = 'If-None-Match"';
2627
}

src/Facade/Utils/HttpMethods.php

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
final class HttpMethods
2222
{
2323
const Get = 'GET';
24+
const Post = 'POST';
2425
const Put = 'PUT';
2526
const Report = 'REPORT';
2627
const PropFind = 'PROPFIND';

src/Facade/Utils/RequestFactory.php

+30-6
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,20 @@ private static function createHeadersFor($http_method, array $params = []){
4949
Headers::ContentType => ContentTypes::Xml
5050
];
5151
case HttpMethods::Put:
52-
$etag = $params[0];
52+
53+
$len = $params[0];
54+
$etag = $params[1];
55+
56+
$headers = [
57+
Headers::ContentLength => intval($len),
58+
Headers::ContentType => ContentTypes::Calendar,
59+
];
60+
5361
if(!empty($etag)){
54-
return [
55-
Headers::ContentType => ContentTypes::Calendar,
56-
Headers::IfMatch => $etag
57-
];
62+
$headers[Headers::IfMatch] = $etag;
5863
}
64+
65+
return $headers;
5966
}
6067
return [];
6168
}
@@ -154,11 +161,28 @@ public static function createGetRequest($url){
154161
* @return Request
155162
*/
156163
public static function createPutRequest($url, $body, $etag = null){
164+
157165
return new Request
158166
(
159167
HttpMethods::Put,
160168
$url,
161-
self::createHeadersFor(HttpMethods::Put, [$etag]),
169+
self::createHeadersFor(HttpMethods::Put, [strlen($body), $etag]),
170+
$body
171+
);
172+
}
173+
174+
/**
175+
* @param string $url
176+
* @param string $body
177+
* @param string $etag
178+
* @return Request
179+
*/
180+
public static function createPostRequest($url, $body, $etag = null){
181+
return new Request
182+
(
183+
HttpMethods::Post,
184+
$url,
185+
self::createHeadersFor(HttpMethods::Post, [$etag]),
162186
$body
163187
);
164188
}

0 commit comments

Comments
 (0)