Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101644377
ConduitAPI_arcanist_projectinfo_Method.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, Feb 12, 09:43
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Feb 14, 09:43 (2 d)
Engine
blob
Format
Raw Data
Handle
24205426
Attached To
rPH Phabricator
ConduitAPI_arcanist_projectinfo_Method.php
View Options
<?php
/**
* @group conduit
*/
final
class
ConduitAPI_arcanist_projectinfo_Method
extends
ConduitAPI_arcanist_Method
{
public
function
getMethodDescription
()
{
return
'Get information about Arcanist projects.'
;
}
public
function
defineParamTypes
()
{
return
array
(
'name'
=>
'required string'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty dict'
;
}
public
function
defineErrorTypes
()
{
return
array
(
'ERR-BAD-ARCANIST-PROJECT'
=>
'No such project exists.'
,
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$name
=
$request
->
getValue
(
'name'
);
$project
=
id
(
new
PhabricatorRepositoryArcanistProject
())->
loadOneWhere
(
'name = %s'
,
$name
);
if
(!
$project
)
{
throw
new
ConduitException
(
'ERR-BAD-ARCANIST-PROJECT'
);
}
$repository
=
$project
->
loadRepository
();
$repository_phid
=
null
;
$tracked
=
false
;
$encoding
=
null
;
$dictionary
=
array
();
if
(
$repository
)
{
$repository_phid
=
$repository
->
getPHID
();
$tracked
=
$repository
->
isTracked
();
$encoding
=
$repository
->
getDetail
(
'encoding'
);
$dictionary
=
$repository
->
toDictionary
();
}
return
array
(
'name'
=>
$project
->
getName
(),
'phid'
=>
$project
->
getPHID
(),
'repositoryPHID'
=>
$repository_phid
,
'tracked'
=>
$tracked
,
'encoding'
=>
$encoding
,
'repository'
=>
$dictionary
,
);
}
}
Event Timeline
Log In to Comment