Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93090050
ConduitAPIRequest.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, 03:33
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 03:33 (2 d)
Engine
blob
Format
Raw Data
Handle
22571133
Attached To
rPH Phabricator
ConduitAPIRequest.php
View Options
<?php
/*
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @group conduit
*/
final
class
ConduitAPIRequest
{
protected
$params
;
private
$user
;
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
(
"You can not access the user inside the implementation of a Conduit "
.
"method which does not require authentication (as per "
.
"shouldRequireAuthentication())."
);
}
return
$this
->
user
;
}
}
Event Timeline
Log In to Comment