Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102240458
AlmanacNetworkNameTransaction.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
Tue, Feb 18, 15:44
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Feb 20, 15:44 (2 d)
Engine
blob
Format
Raw Data
Handle
24313911
Attached To
rPH Phabricator
AlmanacNetworkNameTransaction.php
View Options
<?php
final
class
AlmanacNetworkNameTransaction
extends
AlmanacNetworkTransactionType
{
const
TRANSACTIONTYPE
=
'almanac:network:name'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getName
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setName
(
$value
);
}
public
function
getTitle
()
{
return
pht
(
'%s renamed this network from %s to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderOldValue
(),
$this
->
renderNewValue
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s renamed %s from %s to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
(),
$this
->
renderOldValue
(),
$this
->
renderNewValue
());
}
public
function
validateTransactions
(
$object
,
array
$xactions
)
{
$errors
=
array
();
if
(
$this
->
isEmptyTextTransaction
(
$object
->
getName
(),
$xactions
))
{
$errors
[]
=
$this
->
newRequiredError
(
pht
(
'Network name is required.'
));
}
foreach
(
$xactions
as
$xaction
)
{
$name
=
$xaction
->
getNewValue
();
$message
=
null
;
try
{
AlmanacNames
::
validateName
(
$name
);
}
catch
(
Exception
$ex
)
{
$message
=
$ex
->
getMessage
();
}
if
(
$message
!==
null
)
{
$errors
[]
=
$this
->
newInvalidError
(
$message
,
$xaction
);
continue
;
}
if
(
$name
===
$object
->
getName
())
{
continue
;
}
$other
=
id
(
new
AlmanacNetworkQuery
())
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
())
->
withNames
(
array
(
$name
))
->
executeOne
();
if
(
$other
&&
(
$other
->
getID
()
!=
$object
->
getID
()))
{
$errors
[]
=
$this
->
newInvalidError
(
pht
(
'Almanac networks must have unique names.'
),
$xaction
);
continue
;
}
}
return
$errors
;
}
}
Event Timeline
Log In to Comment