Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98582045
ManiphestStatusEmailCommand.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, Jan 14, 13:54
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Jan 16, 13:54 (2 d)
Engine
blob
Format
Raw Data
Handle
23597794
Attached To
rPH Phabricator
ManiphestStatusEmailCommand.php
View Options
<?php
final
class
ManiphestStatusEmailCommand
extends
ManiphestEmailCommand
{
public
function
getCommand
()
{
return
'status'
;
}
public
function
getCommandSyntax
()
{
return
'**!status** //status//'
;
}
public
function
getCommandSummary
()
{
return
pht
(
'Change the status of a task.'
);
}
public
function
getCommandDescription
()
{
$names
=
ManiphestTaskStatus
::
getTaskStatusMap
();
$keywords
=
ManiphestTaskStatus
::
getTaskStatusKeywordsMap
();
$table
=
array
();
$table
[]
=
'| '
.
pht
(
'Status'
).
' | '
.
pht
(
'Keywords'
);
$table
[]
=
'|---|---|'
;
foreach
(
$keywords
as
$status
=>
$words
)
{
if
(
ManiphestTaskStatus
::
isDisabledStatus
(
$status
))
{
continue
;
}
$words
=
implode
(
', '
,
$words
);
$table
[]
=
'| '
.
$names
[
$status
].
' | '
.
$words
;
}
$table
=
implode
(
"
\n
"
,
$table
);
return
pht
(
"To change the status of a task, specify the desired status, like "
.
"`%s`. This table shows the configured names for statuses.
\n\n
%s
\n\n
"
.
"If you specify an invalid status, the command is ignored. This "
.
"command has no effect if you do not specify a status."
,
'!status invalid'
,
$table
);
}
public
function
buildTransactions
(
PhabricatorUser
$viewer
,
PhabricatorApplicationTransactionInterface
$object
,
PhabricatorMetaMTAReceivedMail
$mail
,
$command
,
array
$argv
)
{
$xactions
=
array
();
$target
=
phutil_utf8_strtolower
(
head
(
$argv
));
$status
=
null
;
$keywords
=
ManiphestTaskStatus
::
getTaskStatusKeywordsMap
();
foreach
(
$keywords
as
$key
=>
$words
)
{
foreach
(
$words
as
$word
)
{
if
(
$word
==
$target
)
{
$status
=
$key
;
break
;
}
}
}
if
(
$status
===
null
)
{
return
array
();
}
if
(
ManiphestTaskStatus
::
isDisabledStatus
(
$status
))
{
return
array
();
}
$xactions
[]
=
$object
->
getApplicationTransactionTemplate
()
->
setTransactionType
(
ManiphestTransaction
::
TYPE_STATUS
)
->
setNewValue
(
$status
);
return
$xactions
;
}
}
Event Timeline
Log In to Comment