Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101587559
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
Tue, Feb 11, 20:05
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Feb 13, 20:05 (2 d)
Engine
blob
Format
Raw Data
Handle
24191835
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
=
PhabricatorEdgeConfig
::
TYPE_OBJECT_HAS_SUBSCRIBER
;
$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