Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98639048
PhabricatorRepositoryCallsignTransaction.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 15, 03:58
Size
2 KB
Mime Type
text/x-php
Expires
Fri, Jan 17, 03:58 (2 d)
Engine
blob
Format
Raw Data
Handle
23611431
Attached To
rPH Phabricator
PhabricatorRepositoryCallsignTransaction.php
View Options
<?php
final
class
PhabricatorRepositoryCallsignTransaction
extends
PhabricatorRepositoryTransactionType
{
const
TRANSACTIONTYPE
=
'repo:callsign'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getCallsign
();
}
public
function
generateNewValue
(
$object
,
$value
)
{
if
(
strlen
(
$value
))
{
return
$value
;
}
return
null
;
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setCallsign
(
$value
);
}
public
function
getTitle
()
{
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
if
(!
strlen
(
$old
))
{
return
pht
(
'%s set the callsign for this repository to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderNewValue
());
}
else
if
(!
strlen
(
$new
))
{
return
pht
(
'%s removed the callsign (%s) for this repository.'
,
$this
->
renderAuthor
(),
$this
->
renderOldValue
());
}
else
{
return
pht
(
'%s changed the callsign for this repository from %s to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderOldValue
(),
$this
->
renderNewValue
());
}
}
public
function
validateTransactions
(
$object
,
array
$xactions
)
{
$errors
=
array
();
foreach
(
$xactions
as
$xaction
)
{
$old
=
$xaction
->
getOldValue
();
$new
=
$xaction
->
getNewValue
();
if
(!
strlen
(
$new
))
{
continue
;
}
if
(
$new
===
$old
)
{
continue
;
}
try
{
PhabricatorRepository
::
assertValidCallsign
(
$new
);
}
catch
(
Exception
$ex
)
{
$errors
[]
=
$this
->
newInvalidError
(
$ex
->
getMessage
(),
$xaction
);
continue
;
}
$other
=
id
(
new
PhabricatorRepositoryQuery
())
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
())
->
withCallsigns
(
array
(
$new
))
->
executeOne
();
if
(
$other
&&
(
$other
->
getID
()
!==
$object
->
getID
()))
{
$errors
[]
=
$this
->
newError
(
pht
(
'Duplicate'
),
pht
(
'The selected callsign ("%s") is already in use by another '
.
'repository. Choose a unique callsign.'
,
$new
),
$xaction
);
continue
;
}
}
return
$errors
;
}
}
Event Timeline
Log In to Comment