Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93194828
Http.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Nov 26, 22:34
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 22:34 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22582437
Attached To
rPH Phabricator
Http.php
View Options
<?php
namespace
Httpful
;
/**
* @author Nate Good <me@nategood.com>
*/
class
Http
{
const
HEAD
=
'HEAD'
;
const
GET
=
'GET'
;
const
POST
=
'POST'
;
const
PUT
=
'PUT'
;
const
DELETE
=
'DELETE'
;
const
PATCH
=
'PATCH'
;
const
OPTIONS
=
'OPTIONS'
;
const
TRACE
=
'TRACE'
;
/**
* @return array of HTTP method strings
*/
public
static
function
safeMethods
()
{
return
array
(
self
::
HEAD
,
self
::
GET
,
self
::
OPTIONS
,
self
::
TRACE
);
}
/**
* @return bool
* @param string HTTP method
*/
public
static
function
isSafeMethod
(
$method
)
{
return
in_array
(
$method
,
self
::
safeMethods
());
}
/**
* @return bool
* @param string HTTP method
*/
public
static
function
isUnsafeMethod
(
$method
)
{
return
!
in_array
(
$method
,
self
::
safeMethods
());
}
/**
* @return array list of (always) idempotent HTTP methods
*/
public
static
function
idempotentMethods
()
{
// Though it is possible to be idempotent, POST
// is not guarunteed to be, and more often than
// not, it is not.
return
array
(
self
::
HEAD
,
self
::
GET
,
self
::
PUT
,
self
::
DELETE
,
self
::
OPTIONS
,
self
::
TRACE
,
self
::
PATCH
);
}
/**
* @return bool
* @param string HTTP method
*/
public
static
function
isIdempotent
(
$method
)
{
return
in_array
(
$method
,
self
::
safeidempotentMethodsMethods
());
}
/**
* @return bool
* @param string HTTP method
*/
public
static
function
isNotIdempotent
(
$method
)
{
return
!
in_array
(
$method
,
self
::
idempotentMethods
());
}
/**
* @deprecated Technically anything *can* have a body,
* they just don't have semantic meaning. So say's Roy
* http://tech.groups.yahoo.com/group/rest-discuss/message/9962
*
* @return array of HTTP method strings
*/
public
static
function
canHaveBody
()
{
return
array
(
self
::
POST
,
self
::
PUT
,
self
::
PATCH
,
self
::
OPTIONS
);
}
}
Event Timeline
Log In to Comment