Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117003732
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, Jun 10, 19:45
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Jun 12, 19:45 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26703550
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