Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F949734
ConduitAPIRequest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
ConduitAPIRequest.php
View Options
<?php
final
class
ConduitAPIRequest
{
protected
$params
;
private
$user
;
private
$isClusterRequest
=
false
;
public
function
__construct
(
array
$params
)
{
$this
->
params
=
$params
;
}
public
function
getValue
(
$key
,
$default
=
null
)
{
return
coalesce
(
idx
(
$this
->
params
,
$key
),
$default
);
}
public
function
getAllParameters
()
{
return
$this
->
params
;
}
public
function
setUser
(
PhabricatorUser
$user
)
{
$this
->
user
=
$user
;
return
$this
;
}
/**
* Retrieve the authentic identity of the user making the request. If a
* method requires authentication (the default) the user object will always
* be available. If a method does not require authentication (i.e., overrides
* shouldRequireAuthentication() to return false) the user object will NEVER
* be available.
*
* @return PhabricatorUser Authentic user, available ONLY if the method
* requires authentication.
*/
public
function
getUser
()
{
if
(!
$this
->
user
)
{
throw
new
Exception
(
pht
(
'You can not access the user inside the implementation of a Conduit '
.
'method which does not require authentication (as per %s).'
,
'shouldRequireAuthentication()'
));
}
return
$this
->
user
;
}
public
function
setIsClusterRequest
(
$is_cluster_request
)
{
$this
->
isClusterRequest
=
$is_cluster_request
;
return
$this
;
}
public
function
getIsClusterRequest
()
{
return
$this
->
isClusterRequest
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 1:44 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
223926
Default Alt Text
ConduitAPIRequest.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment