Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F549814
PhabricatorMetaMTAEmailHeraldAction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorMetaMTAEmailHeraldAction.php
View Options
<?php
abstract
class
PhabricatorMetaMTAEmailHeraldAction
extends
HeraldAction
{
const
DO_SEND
=
'do.send'
;
const
DO_FORCE
=
'do.force'
;
public
function
getRequiredAdapterStates
()
{
return
array
(
HeraldMailableState
::
STATECONST
,
);
}
public
function
supportsObject
(
$object
)
{
return
self
::
isMailGeneratingObject
(
$object
);
}
public
static
function
isMailGeneratingObject
(
$object
)
{
// NOTE: This implementation lacks generality, but there's no great way to
// figure out if something generates email right now.
if
(
$object
instanceof
DifferentialDiff
)
{
return
false
;
}
if
(
$object
instanceof
PhabricatorMetaMTAMail
)
{
return
false
;
}
return
true
;
}
public
function
getActionGroupKey
()
{
return
HeraldNotifyActionGroup
::
ACTIONGROUPKEY
;
}
protected
function
applyEmail
(
array
$phids
,
$force
)
{
$adapter
=
$this
->
getAdapter
();
$allowed_types
=
array
(
PhabricatorPeopleUserPHIDType
::
TYPECONST
,
PhabricatorProjectProjectPHIDType
::
TYPECONST
,
);
// There's no stateful behavior for this action: we always just send an
// email.
$current
=
array
();
$targets
=
$this
->
loadStandardTargets
(
$phids
,
$allowed_types
,
$current
);
if
(!
$targets
)
{
return
;
}
$phids
=
array_fuse
(
array_keys
(
$targets
));
foreach
(
$phids
as
$phid
)
{
$adapter
->
addEmailPHID
(
$phid
,
$force
);
}
if
(
$force
)
{
$this
->
logEffect
(
self
::
DO_FORCE
,
$phids
);
}
else
{
$this
->
logEffect
(
self
::
DO_SEND
,
$phids
);
}
}
protected
function
getActionEffectMap
()
{
return
array
(
self
::
DO_SEND
=>
array
(
'icon'
=>
'fa-envelope'
,
'color'
=>
'green'
,
'name'
=>
pht
(
'Sent Mail'
),
),
self
::
DO_FORCE
=>
array
(
'icon'
=>
'fa-envelope'
,
'color'
=>
'blue'
,
'name'
=>
pht
(
'Forced Mail'
),
),
);
}
protected
function
renderActionEffectDescription
(
$type
,
$data
)
{
switch
(
$type
)
{
case
self
::
DO_SEND
:
return
pht
(
'Queued email to be delivered to %s target(s): %s.'
,
phutil_count
(
$data
),
$this
->
renderHandleList
(
$data
));
case
self
::
DO_FORCE
:
return
pht
(
'Queued email to be delivered to %s target(s), ignoring their '
.
'notification preferences: %s.'
,
phutil_count
(
$data
),
$this
->
renderHandleList
(
$data
));
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 2:19 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
102979
Default Alt Text
PhabricatorMetaMTAEmailHeraldAction.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment