Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98060145
HeraldWebhookStatusTransaction.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
Thu, Jan 9, 04:38
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jan 11, 04:38 (2 d)
Engine
blob
Format
Raw Data
Handle
23448419
Attached To
rPH Phabricator
HeraldWebhookStatusTransaction.php
View Options
<?php
final
class
HeraldWebhookStatusTransaction
extends
HeraldWebhookTransactionType
{
const
TRANSACTIONTYPE
=
'status'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getStatus
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setStatus
(
$value
);
}
public
function
getTitle
()
{
$old_value
=
$this
->
getOldValue
();
$new_value
=
$this
->
getNewValue
();
$old_status
=
HeraldWebhook
::
getDisplayNameForStatus
(
$old_value
);
$new_status
=
HeraldWebhook
::
getDisplayNameForStatus
(
$new_value
);
return
pht
(
'%s changed hook status from %s to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderValue
(
$old_status
),
$this
->
renderValue
(
$new_status
));
}
public
function
getTitleForFeed
()
{
$old_value
=
$this
->
getOldValue
();
$new_value
=
$this
->
getNewValue
();
$old_status
=
HeraldWebhook
::
getDisplayNameForStatus
(
$old_value
);
$new_status
=
HeraldWebhook
::
getDisplayNameForStatus
(
$new_value
);
return
pht
(
'%s changed %s from %s to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
(),
$this
->
renderValue
(
$old_status
),
$this
->
renderValue
(
$new_status
));
}
public
function
validateTransactions
(
$object
,
array
$xactions
)
{
$errors
=
array
();
$viewer
=
$this
->
getActor
();
$options
=
HeraldWebhook
::
getStatusDisplayNameMap
();
foreach
(
$xactions
as
$xaction
)
{
$new_value
=
$xaction
->
getNewValue
();
if
(!
isset
(
$options
[
$new_value
]))
{
$errors
[]
=
$this
->
newInvalidError
(
pht
(
'Webhook status "%s" is not valid. Valid statuses are: %s.'
,
$new_value
,
implode
(
', '
,
array_keys
(
$options
))),
$xaction
);
}
}
return
$errors
;
}
}
Event Timeline
Log In to Comment