1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-04 04:32:43 +01:00
phorge-phorge/src/applications/phame/xaction/PhameBlogParentSiteTransaction.php
Chad Little 21ac196306 Modernize PhameBlog with modular transactions
Summary: Moves PhameBlog over to the wonderful world of modular transactions and the riches that lay beyond...

Test Plan:
- Create Blog
- Edit Blog
- Set Header
- Delete Header
- Add picture
- Archive blog
- Set incorrect domain values
- Be irresponsible with subtitle length
- Activate blog
- Change description

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D17815
2017-05-02 15:39:56 -07:00

66 lines
1.7 KiB
PHP

<?php
final class PhameBlogParentSiteTransaction
extends PhameBlogTransactionType {
const TRANSACTIONTYPE = 'phame.blog.parent.site';
public function generateOldValue($object) {
return $object->getParentSite();
}
public function applyInternalEffects($object, $value) {
$object->setParentSite($value);
}
public function getTitle() {
$old = $this->getOldValue();
if (!strlen($old)) {
return pht(
'%s set this blog\'s parent site to %s.',
$this->renderAuthor(),
$this->renderNewValue());
} else {
return pht(
'%s updated the blog\'s parent site from %s to %s.',
$this->renderAuthor(),
$this->renderOldValue(),
$this->renderNewValue());
}
}
public function getTitleForFeed() {
$old = $this->getOldValue();
if (!strlen($old)) {
return pht(
'%s set %s blog\'s parent site to %s.',
$this->renderAuthor(),
$this->renderObject(),
$this->renderNewValue());
} else {
return pht(
'%s updated %s blog\'s parent site from %s to %s.',
$this->renderAuthor(),
$this->renderObject(),
$this->renderOldValue(),
$this->renderNewValue());
}
}
public function validateTransactions($object, array $xactions) {
$errors = array();
$max_length = $object->getColumnMaximumByteLength('parentSite');
foreach ($xactions as $xaction) {
$new_value = $xaction->getNewValue();
$new_length = strlen($new_value);
if ($new_length > $max_length) {
$errors[] = $this->newInvalidError(
pht('The parent site can be no longer than %s characters.',
new PhutilNumber($max_length)));
}
}
return $errors;
}
}