Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98648893
PhabricatorHandleQuery.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, Jan 15, 06:26
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jan 17, 06:26 (2 d)
Engine
blob
Format
Raw Data
Handle
23595627
Attached To
rPH Phabricator
PhabricatorHandleQuery.php
View Options
<?php
final
class
PhabricatorHandleQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$phids
=
array
();
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
protected
function
loadPage
()
{
$types
=
PhabricatorPHIDType
::
getAllTypes
();
$phids
=
array_unique
(
$this
->
phids
);
if
(!
$phids
)
{
return
array
();
}
$object_query
=
id
(
new
PhabricatorObjectQuery
())
->
withPHIDs
(
$phids
)
->
setViewer
(
$this
->
getViewer
());
$objects
=
$object_query
->
execute
();
$filtered
=
$object_query
->
getPolicyFilteredPHIDs
();
$groups
=
array
();
foreach
(
$phids
as
$phid
)
{
$type
=
phid_get_type
(
$phid
);
$groups
[
$type
][]
=
$phid
;
}
$results
=
array
();
foreach
(
$groups
as
$type
=>
$phid_group
)
{
$handles
=
array
();
foreach
(
$phid_group
as
$key
=>
$phid
)
{
if
(
isset
(
$handles
[
$phid
]))
{
unset
(
$phid_group
[
$key
]);
// The input had a duplicate PHID; just skip it.
continue
;
}
$handles
[
$phid
]
=
id
(
new
PhabricatorObjectHandle
())
->
setType
(
$type
)
->
setPHID
(
$phid
);
if
(
isset
(
$objects
[
$phid
]))
{
$handles
[
$phid
]->
setComplete
(
true
);
}
else
if
(
isset
(
$filtered
[
$phid
]))
{
$handles
[
$phid
]->
setPolicyFiltered
(
true
);
}
}
if
(
isset
(
$types
[
$type
]))
{
$type_objects
=
array_select_keys
(
$objects
,
$phid_group
);
if
(
$type_objects
)
{
$have_object_phids
=
array_keys
(
$type_objects
);
$types
[
$type
]->
loadHandles
(
$this
,
array_select_keys
(
$handles
,
$have_object_phids
),
$type_objects
);
}
}
$results
+=
$handles
;
}
return
$results
;
}
public
function
getQueryApplicationClass
()
{
return
null
;
}
}
Event Timeline
Log In to Comment