Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102194824
PhabricatorMailManagementResendWorkflow.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, Feb 18, 03:30
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Feb 20, 03:30 (2 d)
Engine
blob
Format
Raw Data
Handle
24304099
Attached To
rPH Phabricator
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
(
PhabricatorMetaMTAMail
::
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
()));
}
}
}
Event Timeline
Log In to Comment