Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93520598
PassphraseCredentialUsernameTransaction.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
Fri, Nov 29, 10:19
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Dec 1, 10:19 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22655191
Attached To
rPH Phabricator
PassphraseCredentialUsernameTransaction.php
View Options
<?php
final
class
PassphraseCredentialUsernameTransaction
extends
PassphraseCredentialTransactionType
{
const
TRANSACTIONTYPE
=
'passphrase:username'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getUsername
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setUsername
(
$value
);
}
public
function
getTitle
()
{
return
pht
(
'%s set the username for this credential to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderNewValue
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s set the username for credential %s to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
(),
$this
->
renderNewValue
());
}
public
function
validateTransactions
(
$object
,
array
$xactions
)
{
$errors
=
array
();
$credential_type
=
$object
->
getImplementation
();
if
(
$credential_type
->
shouldRequireUsername
())
{
if
(
$this
->
isEmptyTextTransaction
(
$object
->
getUsername
(),
$xactions
))
{
$errors
[]
=
$this
->
newRequiredError
(
pht
(
'This credential must have a username.'
));
}
}
$max_length
=
$object
->
getColumnMaximumByteLength
(
'username'
);
foreach
(
$xactions
as
$xaction
)
{
$new_value
=
$xaction
->
getNewValue
();
$new_length
=
strlen
(
$new_value
);
if
(
$new_length
>
$max_length
)
{
$errors
[]
=
$this
->
newInvalidError
(
pht
(
'The username can be no longer than %s characters.'
,
new
PhutilNumber
(
$max_length
)));
}
}
return
$errors
;
}
}
Event Timeline
Log In to Comment