Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104534744
ConduitAPI_macro_query_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
Mon, Mar 10, 06:22
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Mar 12, 06:22 (1 d, 19 h)
Engine
blob
Format
Raw Data
Handle
24806969
Attached To
rPH Phabricator
ConduitAPI_macro_query_Method.php
View Options
<?php
final
class
ConduitAPI_macro_query_Method
extends
ConduitAPI_macro_Method
{
public
function
getMethodDescription
()
{
return
'Retrieve image macro information.'
;
}
public
function
defineParamTypes
()
{
return
array
(
'authorPHIDs'
=>
'optional list<phid>'
,
'phids'
=>
'optional list<phid>'
,
'ids'
=>
'optional list<id>'
,
'names'
=>
'optional list<string>'
,
'nameLike'
=>
'optional string'
,
);
}
public
function
defineReturnType
()
{
return
'list<dict>'
;
}
public
function
defineErrorTypes
()
{
return
array
(
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$query
=
new
PhabricatorMacroQuery
();
$query
->
setViewer
(
$request
->
getUser
());
$author_phids
=
$request
->
getValue
(
'authorPHIDs'
);
$phids
=
$request
->
getValue
(
'phids'
);
$ids
=
$request
->
getValue
(
'ids'
);
$name_like
=
$request
->
getValue
(
'nameLike'
);
$names
=
$request
->
getValue
(
'names'
);
if
(
$author_phids
)
{
$query
->
withAuthorPHIDs
(
$author_phids
);
}
if
(
$phids
)
{
$query
->
withPHIDs
(
$phids
);
}
if
(
$ids
)
{
$query
->
withIDs
(
$ids
);
}
if
(
$name_like
)
{
$query
->
withNameLike
(
$name_like
);
}
if
(
$names
)
{
$query
->
withNames
(
$names
);
}
$macros
=
$query
->
execute
();
if
(!
$macros
)
{
return
array
();
}
$results
=
array
();
foreach
(
$macros
as
$macro
)
{
$file
=
$macro
->
getFile
();
$results
[
$macro
->
getName
()]
=
array
(
'uri'
=>
$file
->
getBestURI
(),
'phid'
=>
$macro
->
getPHID
(),
'authorPHID'
=>
$file
->
getAuthorPHID
(),
'dateCreated'
=>
$file
->
getDateCreated
(),
);
}
return
$results
;
}
}
Event Timeline
Log In to Comment