Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F444985
ProjectQueryConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
ProjectQueryConduitAPIMethod.php
View Options
<?php
final
class
ProjectQueryConduitAPIMethod
extends
ProjectConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'project.query'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Execute searches for Projects.'
);
}
protected
function
defineParamTypes
()
{
$statuses
=
array
(
PhabricatorProjectQuery
::
STATUS_ANY
,
PhabricatorProjectQuery
::
STATUS_OPEN
,
PhabricatorProjectQuery
::
STATUS_CLOSED
,
PhabricatorProjectQuery
::
STATUS_ACTIVE
,
PhabricatorProjectQuery
::
STATUS_ARCHIVED
,
);
$status_const
=
$this
->
formatStringConstants
(
$statuses
);
return
array
(
'ids'
=>
'optional list<int>'
,
'names'
=>
'optional list<string>'
,
'phids'
=>
'optional list<phid>'
,
'slugs'
=>
'optional list<string>'
,
'status'
=>
'optional '
.
$status_const
,
'members'
=>
'optional list<phid>'
,
'limit'
=>
'optional int'
,
'offset'
=>
'optional int'
,
);
}
protected
function
defineReturnType
()
{
return
'list'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$query
=
new
PhabricatorProjectQuery
();
$query
->
setViewer
(
$request
->
getUser
());
$query
->
needMembers
(
true
);
$query
->
needSlugs
(
true
);
$ids
=
$request
->
getValue
(
'ids'
);
if
(
$ids
)
{
$query
->
withIDs
(
$ids
);
}
$names
=
$request
->
getValue
(
'names'
);
if
(
$names
)
{
$query
->
withNames
(
$names
);
}
$status
=
$request
->
getValue
(
'status'
);
if
(
$status
)
{
$query
->
withStatus
(
$status
);
}
$phids
=
$request
->
getValue
(
'phids'
);
if
(
$phids
)
{
$query
->
withPHIDs
(
$phids
);
}
$slugs
=
$request
->
getValue
(
'slugs'
);
if
(
$slugs
)
{
$query
->
withSlugs
(
$slugs
);
}
$members
=
$request
->
getValue
(
'members'
);
if
(
$members
)
{
$query
->
withMemberPHIDs
(
$members
);
}
$limit
=
$request
->
getValue
(
'limit'
);
if
(
$limit
)
{
$query
->
setLimit
(
$limit
);
}
$offset
=
$request
->
getValue
(
'offset'
);
if
(
$offset
)
{
$query
->
setOffset
(
$offset
);
}
$pager
=
$this
->
newPager
(
$request
);
$results
=
$query
->
executeWithCursorPager
(
$pager
);
$projects
=
$this
->
buildProjectInfoDictionaries
(
$results
);
// TODO: This is pretty hideous.
$slug_map
=
array
();
if
(
$slugs
)
{
foreach
(
$slugs
as
$slug
)
{
$normal
=
rtrim
(
PhabricatorSlug
::
normalize
(
$slug
),
'/'
);
foreach
(
$projects
as
$project
)
{
if
(
in_array
(
$normal
,
$project
[
'slugs'
]))
{
$slug_map
[
$slug
]
=
$project
[
'phid'
];
}
}
}
}
$result
=
array
(
'data'
=>
$projects
,
'slugMap'
=>
$slug_map
,
);
return
$this
->
addPagerResults
(
$result
,
$pager
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 12:58 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
65428
Default Alt Text
ProjectQueryConduitAPIMethod.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment