Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91608664
AlmanacNamespaceNameTransaction.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, Nov 12, 16:27
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Nov 14, 16:27 (2 d)
Engine
blob
Format
Raw Data
Handle
22292412
Attached To
rPH Phabricator
AlmanacNamespaceNameTransaction.php
View Options
<?php
final
class
AlmanacNamespaceNameTransaction
extends
AlmanacNamespaceTransactionType
{
const
TRANSACTIONTYPE
=
'almanac:namespace:name'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getName
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setName
(
$value
);
}
public
function
getTitle
()
{
return
pht
(
'%s renamed this namespace 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
(
'Namespace 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
AlmanacNamespaceQuery
())
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
())
->
withNames
(
array
(
$name
))
->
executeOne
();
if
(
$other
&&
(
$other
->
getID
()
!=
$object
->
getID
()))
{
$errors
[]
=
$this
->
newInvalidError
(
pht
(
'The namespace name "%s" is already in use by another '
.
'namespace. Each namespace must have a unique name.'
,
$name
),
$xaction
);
continue
;
}
$namespace
=
AlmanacNamespace
::
loadRestrictedNamespace
(
$this
->
getActor
(),
$name
);
if
(
$namespace
)
{
$errors
[]
=
$this
->
newInvalidError
(
pht
(
'You do not have permission to create Almanac namespaces '
.
'within the "%s" namespace.'
,
$namespace
->
getName
()),
$xaction
);
continue
;
}
}
return
$errors
;
}
}
Event Timeline
Log In to Comment