Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93637285
PhabricatorSubscribersQuery.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
Sat, Nov 30, 08:27
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Dec 2, 08:27 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22653192
Attached To
rPH Phabricator
PhabricatorSubscribersQuery.php
View Options
<?php
final
class
PhabricatorSubscribersQuery
extends
PhabricatorQuery
{
private
$objectPHIDs
;
private
$subscriberPHIDs
;
public
static
function
loadSubscribersForPHID
(
$phid
)
{
if
(!
$phid
)
{
return
array
();
}
$subscribers
=
id
(
new
PhabricatorSubscribersQuery
())
->
withObjectPHIDs
(
array
(
$phid
))
->
execute
();
return
$subscribers
[
$phid
];
}
public
function
withObjectPHIDs
(
array
$object_phids
)
{
$this
->
objectPHIDs
=
$object_phids
;
return
$this
;
}
public
function
withSubscriberPHIDs
(
array
$subscriber_phids
)
{
$this
->
subscriberPHIDs
=
$subscriber_phids
;
return
$this
;
}
public
function
execute
()
{
$query
=
new
PhabricatorEdgeQuery
();
$edge_type
=
PhabricatorObjectHasSubscriberEdgeType
::
EDGECONST
;
$query
->
withSourcePHIDs
(
$this
->
objectPHIDs
);
$query
->
withEdgeTypes
(
array
(
$edge_type
));
if
(
$this
->
subscriberPHIDs
)
{
$query
->
withDestinationPHIDs
(
$this
->
subscriberPHIDs
);
}
$edges
=
$query
->
execute
();
$results
=
array_fill_keys
(
$this
->
objectPHIDs
,
array
());
foreach
(
$edges
as
$src
=>
$edge_types
)
{
foreach
(
$edge_types
[
$edge_type
]
as
$dst
=>
$data
)
{
$results
[
$src
][]
=
$dst
;
}
}
return
$results
;
}
}
Event Timeline
Log In to Comment