Page MenuHomePhorge

HeraldWebhookStatusTransaction.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

HeraldWebhookStatusTransaction.php

<?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() {
return pht(
'%s changed hook status from %s to %s.',
$this->renderAuthor(),
$this->renderOldValue(),
$this->renderNewValue());
}
public function getTitleForFeed() {
return pht(
'%s changed %s from %s to %s.',
$this->renderAuthor(),
$this->renderObject(),
$this->renderOldValue(),
$this->renderNewValue());
}
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;
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, May 14, 5:22 AM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
131080
Default Alt Text
HeraldWebhookStatusTransaction.php (1 KB)

Event Timeline