Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99640746
Resource.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
Sat, Jan 25, 22:39
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 27, 22:39 (2 d)
Engine
blob
Format
Raw Data
Handle
23837307
Attached To
rPH Phabricator
Resource.php
View Options
<?php
namespace
Balanced
;
use
Balanced\Errors\Error
;
use
RESTful\Exceptions\HTTPError
;
class
Resource
extends
\RESTful\Resource
{
public
static
$fields
,
$f
;
protected
static
$_client
,
$_registry
,
$_uri_spec
;
public
static
function
init
()
{
self
::
$_client
=
new
\RESTful\Client
(
'
\B
alanced
\S
ettings'
,
null
,
__NAMESPACE__
.
'
\R
esource::convertError'
);
self
::
$_registry
=
new
\RESTful\Registry
();
self
::
$f
=
self
::
$fields
=
new
\RESTful\Fields
();
}
public
static
function
convertError
(
$response
)
{
if
(
property_exists
(
$response
->
body
,
'category_code'
)
&&
array_key_exists
(
$response
->
body
->
category_code
,
Error
::
$codes
))
$error
=
new
Error
::
$codes
[
$response
->
body
->
category_code
](
$response
);
else
$error
=
new
HTTPError
(
$response
);
return
$error
;
}
public
static
function
getClient
()
{
$class
=
get_called_class
();
return
$class
::
$_client
;
}
public
static
function
getRegistry
()
{
$class
=
get_called_class
();
return
$class
::
$_registry
;
}
public
static
function
getURISpec
()
{
$class
=
get_called_class
();
return
$class
::
$_uri_spec
;
}
}
Event Timeline
Log In to Comment