Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F455749
PassphraseCredentialTransaction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
PassphraseCredentialTransaction.php
View Options
<?php
final
class
PassphraseCredentialTransaction
extends
PhabricatorApplicationTransaction
{
const
TYPE_NAME
=
'passphrase:name'
;
const
TYPE_DESCRIPTION
=
'passphrase:description'
;
const
TYPE_USERNAME
=
'passphrase:username'
;
const
TYPE_SECRET_ID
=
'passphrase:secretID'
;
const
TYPE_DESTROY
=
'passphrase:destroy'
;
const
TYPE_LOOKEDATSECRET
=
'passphrase:lookedAtSecret'
;
const
TYPE_LOCK
=
'passphrase:lock'
;
const
TYPE_CONDUIT
=
'passphrase:conduit'
;
public
function
getApplicationName
()
{
return
'passphrase'
;
}
public
function
getApplicationTransactionType
()
{
return
PassphraseCredentialPHIDType
::
TYPECONST
;
}
public
function
getApplicationTransactionCommentObject
()
{
return
null
;
}
public
function
shouldHide
()
{
$old
=
$this
->
getOldValue
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_DESCRIPTION
:
return
(
$old
===
null
);
case
self
::
TYPE_LOCK
:
return
(
$old
===
null
);
case
self
::
TYPE_USERNAME
:
return
!
strlen
(
$old
);
case
self
::
TYPE_LOOKEDATSECRET
:
return
false
;
}
return
parent
::
shouldHide
();
}
public
function
getTitle
()
{
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
$author_phid
=
$this
->
getAuthorPHID
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_NAME
:
if
(
$old
===
null
)
{
return
pht
(
'%s created this credential.'
,
$this
->
renderHandleLink
(
$author_phid
));
}
else
{
return
pht
(
'%s renamed this credential from "%s" to "%s".'
,
$this
->
renderHandleLink
(
$author_phid
),
$old
,
$new
);
}
break
;
case
self
::
TYPE_DESCRIPTION
:
return
pht
(
'%s updated the description for this credential.'
,
$this
->
renderHandleLink
(
$author_phid
));
case
self
::
TYPE_USERNAME
:
if
(
strlen
(
$old
))
{
return
pht
(
'%s changed the username for this credential from "%s" to "%s".'
,
$this
->
renderHandleLink
(
$author_phid
),
$old
,
$new
);
}
else
{
return
pht
(
'%s set the username for this credential to "%s".'
,
$this
->
renderHandleLink
(
$author_phid
),
$new
);
}
break
;
case
self
::
TYPE_SECRET_ID
:
return
pht
(
'%s updated the secret for this credential.'
,
$this
->
renderHandleLink
(
$author_phid
));
case
self
::
TYPE_DESTROY
:
return
pht
(
'%s destroyed this credential.'
,
$this
->
renderHandleLink
(
$author_phid
));
case
self
::
TYPE_LOOKEDATSECRET
:
return
pht
(
'%s examined the secret plaintext for this credential.'
,
$this
->
renderHandleLink
(
$author_phid
));
case
self
::
TYPE_LOCK
:
return
pht
(
'%s locked this credential.'
,
$this
->
renderHandleLink
(
$author_phid
));
case
self
::
TYPE_CONDUIT
:
if
(
$old
)
{
return
pht
(
'%s disallowed Conduit API access to this credential.'
,
$this
->
renderHandleLink
(
$author_phid
));
}
else
{
return
pht
(
'%s allowed Conduit API access to this credential.'
,
$this
->
renderHandleLink
(
$author_phid
));
}
break
;
}
return
parent
::
getTitle
();
}
public
function
hasChangeDetails
()
{
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_DESCRIPTION
:
return
true
;
}
return
parent
::
hasChangeDetails
();
}
public
function
renderChangeDetails
(
PhabricatorUser
$viewer
)
{
return
$this
->
renderTextCorpusChangeDetails
(
$viewer
,
json_encode
(
$this
->
getOldValue
()),
json_encode
(
$this
->
getNewValue
()));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 7:14 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
69982
Default Alt Text
PassphraseCredentialTransaction.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment