2016-05-19 18:54:36 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorAuthSSHKeyTransaction
|
|
|
|
extends PhabricatorApplicationTransaction {
|
|
|
|
|
|
|
|
const TYPE_NAME = 'sshkey.name';
|
|
|
|
const TYPE_KEY = 'sshkey.key';
|
|
|
|
const TYPE_DEACTIVATE = 'sshkey.deactivate';
|
|
|
|
|
|
|
|
public function getApplicationName() {
|
|
|
|
return 'auth';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getApplicationTransactionType() {
|
|
|
|
return PhabricatorAuthSSHKeyPHIDType::TYPECONST;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getApplicationTransactionCommentObject() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTitle() {
|
|
|
|
$author_phid = $this->getAuthorPHID();
|
|
|
|
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
|
|
|
|
switch ($this->getTransactionType()) {
|
2016-05-19 19:34:38 +02:00
|
|
|
case PhabricatorTransactions::TYPE_CREATE:
|
|
|
|
return pht(
|
|
|
|
'%s created this key.',
|
|
|
|
$this->renderHandleLink($author_phid));
|
2016-05-19 18:54:36 +02:00
|
|
|
case self::TYPE_NAME:
|
|
|
|
return pht(
|
|
|
|
'%s renamed this key from "%s" to "%s".',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
$old,
|
|
|
|
$new);
|
|
|
|
case self::TYPE_KEY:
|
|
|
|
return pht(
|
|
|
|
'%s updated the public key material for this SSH key.',
|
|
|
|
$this->renderHandleLink($author_phid));
|
|
|
|
case self::TYPE_DEACTIVATE:
|
|
|
|
if ($new) {
|
|
|
|
return pht(
|
2018-01-20 18:08:30 +01:00
|
|
|
'%s revoked this key.',
|
2016-05-19 18:54:36 +02:00
|
|
|
$this->renderHandleLink($author_phid));
|
|
|
|
} else {
|
|
|
|
return pht(
|
2018-01-20 18:08:30 +01:00
|
|
|
'%s reinstated this key.',
|
2016-05-19 18:54:36 +02:00
|
|
|
$this->renderHandleLink($author_phid));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|