Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122190027
HTTPFutureHTTPResponseStatus.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
Wed, Jul 16, 11:54
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jul 18, 11:54 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27447174
Attached To
rPHU libphutil
HTTPFutureHTTPResponseStatus.php
View Options
<?php
final
class
HTTPFutureHTTPResponseStatus
extends
HTTPFutureResponseStatus
{
private
$excerpt
;
private
$expect
;
public
function
__construct
(
$status_code
,
$body
,
array
$headers
,
$expect
=
null
)
{
// NOTE: Avoiding PhutilUTF8StringTruncator here because this isn't lazy
// and responses may be large.
if
(
strlen
(
$body
)
>
512
)
{
$excerpt
=
substr
(
$body
,
0
,
512
).
'...'
;
}
else
{
$excerpt
=
$body
;
}
$content_type
=
BaseHTTPFuture
::
getHeader
(
$headers
,
'Content-Type'
);
$match
=
null
;
if
(
preg_match
(
'/;
\s
*charset=([^;]+)/'
,
$content_type
,
$match
))
{
$encoding
=
trim
(
$match
[
1
],
"
\"
'"
);
try
{
$excerpt
=
phutil_utf8_convert
(
$excerpt
,
'UTF-8'
,
$encoding
);
}
catch
(
Exception
$ex
)
{
}
}
$this
->
excerpt
=
phutil_utf8ize
(
$excerpt
);
$this
->
expect
=
$expect
;
parent
::
__construct
(
$status_code
);
}
protected
function
getErrorCodeType
(
$code
)
{
return
'HTTP'
;
}
public
function
isError
()
{
if
(
$this
->
expect
===
null
)
{
return
(
$this
->
getStatusCode
()
<
200
)
||
(
$this
->
getStatusCode
()
>
299
);
}
return
!
in_array
(
$this
->
getStatusCode
(),
$this
->
expect
,
true
);
}
public
function
isTimeout
()
{
return
false
;
}
protected
function
getErrorCodeDescription
(
$code
)
{
static
$map
=
array
(
404
=>
'Not Found'
,
500
=>
'Internal Server Error'
,
);
return
idx
(
$map
,
$code
).
"
\n
"
.
$this
->
excerpt
.
"
\n
"
;
}
}
Event Timeline
Log In to Comment