Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96578862
DifferentialDoorkeeperRevisionFeedStoryPublisher.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, Dec 28, 11:13
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Dec 30, 11:13 (2 d)
Engine
blob
Format
Raw Data
Handle
23210792
Attached To
rPH Phabricator
DifferentialDoorkeeperRevisionFeedStoryPublisher.php
View Options
<?php
final
class
DifferentialDoorkeeperRevisionFeedStoryPublisher
extends
DoorkeeperFeedStoryPublisher
{
public
function
canPublishStory
(
PhabricatorFeedStory
$story
,
$object
)
{
return
(
$object
instanceof
DifferentialRevision
);
}
public
function
isStoryAboutObjectCreation
(
$object
)
{
$story
=
$this
->
getFeedStory
();
$action
=
$story
->
getStoryData
()->
getValue
(
'action'
);
return
(
$action
==
DifferentialAction
::
ACTION_CREATE
);
}
public
function
isStoryAboutObjectClosure
(
$object
)
{
$story
=
$this
->
getFeedStory
();
$action
=
$story
->
getStoryData
()->
getValue
(
'action'
);
return
(
$action
==
DifferentialAction
::
ACTION_CLOSE
)
||
(
$action
==
DifferentialAction
::
ACTION_ABANDON
);
}
public
function
willPublishStory
(
$object
)
{
return
id
(
new
DifferentialRevisionQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withIDs
(
array
(
$object
->
getID
()))
->
needReviewers
(
true
)
->
executeOne
();
}
public
function
getOwnerPHID
(
$object
)
{
return
$object
->
getAuthorPHID
();
}
public
function
getActiveUserPHIDs
(
$object
)
{
if
(
$object
->
isNeedsReview
())
{
return
$object
->
getReviewerPHIDs
();
}
else
{
return
array
();
}
}
public
function
getPassiveUserPHIDs
(
$object
)
{
if
(
$object
->
isNeedsReview
())
{
return
array
();
}
else
{
return
$object
->
getReviewerPHIDs
();
}
}
public
function
getCCUserPHIDs
(
$object
)
{
return
PhabricatorSubscribersQuery
::
loadSubscribersForPHID
(
$object
->
getPHID
());
}
public
function
getObjectTitle
(
$object
)
{
$id
=
$object
->
getID
();
$title
=
$object
->
getTitle
();
return
"D{$id}: {$title}"
;
}
public
function
getObjectURI
(
$object
)
{
return
PhabricatorEnv
::
getProductionURI
(
'/D'
.
$object
->
getID
());
}
public
function
getObjectDescription
(
$object
)
{
return
$object
->
getSummary
();
}
public
function
isObjectClosed
(
$object
)
{
return
$object
->
isClosed
();
}
public
function
getResponsibilityTitle
(
$object
)
{
$prefix
=
$this
->
getTitlePrefix
(
$object
);
return
pht
(
'%s Review Request'
,
$prefix
);
}
private
function
getTitlePrefix
(
DifferentialRevision
$revision
)
{
$prefix_key
=
'metamta.differential.subject-prefix'
;
return
PhabricatorEnv
::
getEnvConfig
(
$prefix_key
);
}
}
Event Timeline
Log In to Comment