Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99253818
PhabricatorProjectNameTransaction.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
Wed, Jan 22, 20:04
Size
3 KB
Mime Type
text/x-php
Expires
Fri, Jan 24, 20:04 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
23753755
Attached To
rPH Phabricator
PhabricatorProjectNameTransaction.php
View Options
<?php
final
class
PhabricatorProjectNameTransaction
extends
PhabricatorProjectTransactionType
{
const
TRANSACTIONTYPE
=
'project:name'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getName
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setName
(
$value
);
if
(!
$this
->
getEditor
()->
getIsMilestone
())
{
$object
->
setPrimarySlug
(
PhabricatorSlug
::
normalizeProjectSlug
(
$value
));
}
}
public
function
applyExternalEffects
(
$object
,
$value
)
{
$old
=
$this
->
getOldValue
();
// First, add the old name as a secondary slug; this is helpful
// for renames and generally a good thing to do.
if
(!
$this
->
getEditor
()->
getIsMilestone
())
{
if
(
$old
!==
null
)
{
$this
->
getEditor
()->
addSlug
(
$object
,
$old
,
false
);
}
$this
->
getEditor
()->
addSlug
(
$object
,
$value
,
false
);
}
return
;
}
public
function
getTitle
()
{
$old
=
$this
->
getOldValue
();
if
(
$old
===
null
)
{
return
pht
(
'%s created this project.'
,
$this
->
renderAuthor
());
}
else
{
return
pht
(
'%s renamed this project from %s to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderOldValue
(),
$this
->
renderNewValue
());
}
}
public
function
getTitleForFeed
()
{
$old
=
$this
->
getOldValue
();
if
(
$old
===
null
)
{
return
pht
(
'%s created %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
else
{
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
(
'Projects must have a name.'
));
}
$max_length
=
$object
->
getColumnMaximumByteLength
(
'name'
);
foreach
(
$xactions
as
$xaction
)
{
$new_value
=
$xaction
->
getNewValue
();
$new_length
=
strlen
(
$new_value
);
if
(
$new_length
>
$max_length
)
{
$errors
[]
=
$this
->
newInvalidError
(
pht
(
'Project names must not be longer than %s character(s).'
,
new
PhutilNumber
(
$max_length
)));
}
}
if
(
$this
->
getEditor
()->
getIsMilestone
()
||
!
$xactions
)
{
return
$errors
;
}
$name
=
last
(
$xactions
)->
getNewValue
();
if
(!
PhabricatorSlug
::
isValidProjectSlug
(
$name
))
{
$errors
[]
=
$this
->
newInvalidError
(
pht
(
'Project names must contain at least one letter or number.'
));
}
$slug
=
PhabricatorSlug
::
normalizeProjectSlug
(
$name
);
$slug_used_already
=
id
(
new
PhabricatorProjectSlug
())
->
loadOneWhere
(
'slug = %s'
,
$slug
);
if
(
$slug_used_already
&&
$slug_used_already
->
getProjectPHID
()
!=
$object
->
getPHID
())
{
$errors
[]
=
$this
->
newInvalidError
(
pht
(
'Project name generates the same hashtag ("%s") as another '
.
'existing project. Choose a unique name.'
,
'#'
.
$slug
));
}
return
$errors
;
}
}
Event Timeline
Log In to Comment