Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F548297
PhabricatorMailManagementResendWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorMailManagementResendWorkflow.php
View Options
<?php
final
class
PhabricatorMailManagementResendWorkflow
extends
PhabricatorMailManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'resend'
)
->
setSynopsis
(
pht
(
'Send mail again.'
))
->
setExamples
(
'**resend** --id 1 --id 2'
)
->
setArguments
(
array
(
array
(
'name'
=>
'id'
,
'param'
=>
'id'
,
'help'
=>
pht
(
'Send mail with a given ID again.'
),
'repeat'
=>
true
,
),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$console
=
PhutilConsole
::
getConsole
();
$ids
=
$args
->
getArg
(
'id'
);
if
(!
$ids
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
"Use the '%s' flag to specify one or more messages to resend."
,
'--id'
));
}
$messages
=
id
(
new
PhabricatorMetaMTAMail
())->
loadAllWhere
(
'id IN (%Ld)'
,
$ids
);
if
(
$ids
)
{
$ids
=
array_fuse
(
$ids
);
$missing
=
array_diff_key
(
$ids
,
$messages
);
if
(
$missing
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Some specified messages do not exist: %s'
,
implode
(
', '
,
array_keys
(
$missing
))));
}
}
foreach
(
$messages
as
$message
)
{
$message
->
setStatus
(
PhabricatorMailOutboundStatus
::
STATUS_QUEUE
);
$message
->
save
();
$mailer_task
=
PhabricatorWorker
::
scheduleTask
(
'PhabricatorMetaMTAWorker'
,
$message
->
getID
(),
array
(
'priority'
=>
PhabricatorWorker
::
PRIORITY_ALERTS
,
));
$console
->
writeOut
(
"%s
\n
"
,
pht
(
'Queued message #%d for resend.'
,
$message
->
getID
()));
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 1:47 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
100195
Default Alt Text
PhabricatorMailManagementResendWorkflow.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment