Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90780874
JsonHandler.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
Mon, Nov 4, 16:58
Size
874 B
Mime Type
text/x-php
Expires
Wed, Nov 6, 16:58 (2 d)
Engine
blob
Format
Raw Data
Handle
22133676
Attached To
rPH Phabricator
JsonHandler.php
View Options
<?php
/**
* Mime Type: application/json
* @author Nathan Good <me@nategood.com>
*/
namespace
Httpful\Handlers
;
class
JsonHandler
extends
MimeHandlerAdapter
{
private
$decode_as_array
=
false
;
public
function
init
(
array
$args
)
{
$this
->
decode_as_array
=
!!(
array_key_exists
(
'decode_as_array'
,
$args
)
?
$args
[
'decode_as_array'
]
:
false
);
}
/**
* @param string $body
* @return mixed
*/
public
function
parse
(
$body
)
{
if
(
empty
(
$body
))
return
null
;
$parsed
=
json_decode
(
$body
,
$this
->
decode_as_array
);
if
(
is_null
(
$parsed
))
throw
new
\Exception
(
"Unable to parse response as JSON"
);
return
$parsed
;
}
/**
* @param mixed $payload
* @return string
*/
public
function
serialize
(
$payload
)
{
return
json_encode
(
$payload
);
}
}
Event Timeline
Log In to Comment