Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110060665
DifferentialMail.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
Thu, Apr 24, 13:10
Size
12 KB
Mime Type
text/x-php
Expires
Sat, Apr 26, 13:10 (2 d)
Engine
blob
Format
Raw Data
Handle
25753025
Attached To
rPH Phabricator
DifferentialMail.php
View Options
<?php
abstract
class
DifferentialMail
extends
PhabricatorMail
{
protected
$to
=
array
();
protected
$cc
=
array
();
protected
$excludePHIDs
=
array
();
protected
$actorHandle
;
protected
$revision
;
protected
$comments
;
protected
$changesets
;
protected
$inlineComments
;
protected
$isFirstMailAboutRevision
;
protected
$isFirstMailToRecipients
;
protected
$heraldTranscriptURI
;
protected
$heraldRulesHeader
;
protected
$replyHandler
;
protected
$parentMessageID
;
private
$rawMail
;
public
function
getRawMail
()
{
if
(!
$this
->
rawMail
)
{
throw
new
Exception
(
"Call send() before getRawMail()!"
);
}
return
$this
->
rawMail
;
}
protected
function
renderSubject
()
{
$revision
=
$this
->
getRevision
();
$title
=
$revision
->
getTitle
();
$id
=
$revision
->
getID
();
return
"D{$id}: {$title}"
;
}
abstract
protected
function
renderVaryPrefix
();
abstract
protected
function
renderBody
();
public
function
setActorHandle
(
$actor_handle
)
{
$this
->
actorHandle
=
$actor_handle
;
return
$this
;
}
public
function
getActorHandle
()
{
return
$this
->
actorHandle
;
}
protected
function
getActorName
()
{
$handle
=
$this
->
getActorHandle
();
if
(
$handle
)
{
return
$handle
->
getName
();
}
return
'???'
;
}
public
function
setParentMessageID
(
$parent_message_id
)
{
$this
->
parentMessageID
=
$parent_message_id
;
return
$this
;
}
public
function
setXHeraldRulesHeader
(
$header
)
{
$this
->
heraldRulesHeader
=
$header
;
return
$this
;
}
public
function
send
()
{
$to_phids
=
$this
->
getToPHIDs
();
if
(!
$to_phids
)
{
throw
new
Exception
(
'No "To:" users provided!'
);
}
$cc_phids
=
$this
->
getCCPHIDs
();
$attachments
=
$this
->
buildAttachments
();
$template
=
new
PhabricatorMetaMTAMail
();
$actor_handle
=
$this
->
getActorHandle
();
$reply_handler
=
$this
->
getReplyHandler
();
if
(
$actor_handle
)
{
$template
->
setFrom
(
$actor_handle
->
getPHID
());
}
$template
->
setIsHTML
(
$this
->
shouldMarkMailAsHTML
())
->
setParentMessageID
(
$this
->
parentMessageID
)
->
setExcludeMailRecipientPHIDs
(
$this
->
getExcludeMailRecipientPHIDs
())
->
addHeader
(
'Thread-Topic'
,
$this
->
getThreadTopic
());
$template
->
setAttachments
(
$attachments
);
$template
->
setThreadID
(
$this
->
getThreadID
(),
$this
->
isFirstMailAboutRevision
());
if
(
$this
->
heraldRulesHeader
)
{
$template
->
addHeader
(
'X-Herald-Rules'
,
$this
->
heraldRulesHeader
);
}
$revision
=
$this
->
revision
;
if
(
$revision
)
{
if
(
$revision
->
getAuthorPHID
())
{
$template
->
addHeader
(
'X-Differential-Author'
,
'<'
.
$revision
->
getAuthorPHID
().
'>'
);
}
$reviewer_phids
=
$revision
->
getReviewers
();
if
(
$reviewer_phids
)
{
// Add several headers to support e-mail clients which are not able to
// create rules using regular expressions or wildcards (namely Outlook).
$template
->
addPHIDHeaders
(
'X-Differential-Reviewer'
,
$reviewer_phids
);
// Add it also as a list to allow matching of the first reviewer and
// also for backwards compatibility.
$template
->
addHeader
(
'X-Differential-Reviewers'
,
'<'
.
implode
(
'>, <'
,
$reviewer_phids
).
'>'
);
}
if
(
$cc_phids
)
{
$template
->
addPHIDHeaders
(
'X-Differential-CC'
,
$cc_phids
);
$template
->
addHeader
(
'X-Differential-CCs'
,
'<'
.
implode
(
'>, <'
,
$cc_phids
).
'>'
);
// Determine explicit CCs (those added by humans) and put them in a
// header so users can differentiate between Herald CCs and human CCs.
$relation_subscribed
=
DifferentialRevision
::
RELATION_SUBSCRIBED
;
$raw
=
$revision
->
getRawRelations
(
$relation_subscribed
);
$reason_phids
=
ipull
(
$raw
,
'reasonPHID'
);
$reason_handles
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$this
->
getActor
())
->
withPHIDs
(
$reason_phids
)
->
execute
();
$explicit_cc
=
array
();
foreach
(
$raw
as
$relation
)
{
if
(!
$relation
[
'reasonPHID'
])
{
continue
;
}
$type
=
$reason_handles
[
$relation
[
'reasonPHID'
]]->
getType
();
if
(
$type
==
PhabricatorPeoplePHIDTypeUser
::
TYPECONST
)
{
$explicit_cc
[]
=
$relation
[
'objectPHID'
];
}
}
if
(
$explicit_cc
)
{
$template
->
addPHIDHeaders
(
'X-Differential-Explicit-CC'
,
$explicit_cc
);
$template
->
addHeader
(
'X-Differential-Explicit-CCs'
,
'<'
.
implode
(
'>, <'
,
$explicit_cc
).
'>'
);
}
}
}
$template
->
setIsBulk
(
true
);
$template
->
setRelatedPHID
(
$this
->
getRevision
()->
getPHID
());
$mailtags
=
$this
->
getMailTags
();
if
(
$mailtags
)
{
$template
->
setMailTags
(
$mailtags
);
}
$phids
=
array
();
foreach
(
$to_phids
as
$phid
)
{
$phids
[
$phid
]
=
true
;
}
foreach
(
$cc_phids
as
$phid
)
{
$phids
[
$phid
]
=
true
;
}
$phids
=
array_keys
(
$phids
);
$handles
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$this
->
getActor
())
->
withPHIDs
(
$phids
)
->
execute
();
$objects
=
id
(
new
PhabricatorObjectQuery
())
->
setViewer
(
$this
->
getActor
())
->
withPHIDs
(
$phids
)
->
execute
();
$to_handles
=
array_select_keys
(
$handles
,
$to_phids
);
$cc_handles
=
array_select_keys
(
$handles
,
$cc_phids
);
$this
->
prepareBody
();
$this
->
rawMail
=
clone
$template
;
$this
->
rawMail
->
addTos
(
$to_phids
);
$this
->
rawMail
->
addCCs
(
$cc_phids
);
$mails
=
$reply_handler
->
multiplexMail
(
$template
,
$to_handles
,
$cc_handles
);
$original_translator
=
PhutilTranslator
::
getInstance
();
if
(!
PhabricatorMetaMTAMail
::
shouldMultiplexAllMail
())
{
$translation
=
PhabricatorEnv
::
newObjectFromConfig
(
'translation.provider'
);
$translator
=
id
(
new
PhutilTranslator
())
->
setLanguage
(
$translation
->
getLanguage
())
->
addTranslations
(
$translation
->
getTranslations
());
}
try
{
foreach
(
$mails
as
$mail
)
{
if
(
PhabricatorMetaMTAMail
::
shouldMultiplexAllMail
())
{
$translation
=
newv
(
$mail
->
getTranslation
(
$objects
),
array
());
$translator
=
id
(
new
PhutilTranslator
())
->
setLanguage
(
$translation
->
getLanguage
())
->
addTranslations
(
$translation
->
getTranslations
());
PhutilTranslator
::
setInstance
(
$translator
);
}
$body
=
$this
->
buildBody
().
"
\n
"
.
$reply_handler
->
getRecipientsSummary
(
$to_handles
,
$cc_handles
);
$mail
->
setSubject
(
$this
->
renderSubject
())
->
setSubjectPrefix
(
$this
->
getSubjectPrefix
())
->
setVarySubjectPrefix
(
$this
->
renderVaryPrefix
())
->
setBody
(
$body
);
$event
=
new
PhabricatorEvent
(
PhabricatorEventType
::
TYPE_DIFFERENTIAL_WILLSENDMAIL
,
array
(
'mail'
=>
$mail
,
)
);
PhutilEventEngine
::
dispatchEvent
(
$event
);
$mail
=
$event
->
getValue
(
'mail'
);
$mail
->
saveAndSend
();
}
}
catch
(
Exception
$ex
)
{
PhutilTranslator
::
setInstance
(
$original_translator
);
throw
$ex
;
}
PhutilTranslator
::
setInstance
(
$original_translator
);
return
$this
;
}
protected
function
getMailTags
()
{
return
array
();
}
protected
function
getSubjectPrefix
()
{
return
PhabricatorEnv
::
getEnvConfig
(
'metamta.differential.subject-prefix'
);
}
protected
function
shouldMarkMailAsHTML
()
{
return
false
;
}
/**
* @{method:buildBody} is called once for each e-mail recipient to allow
* translating text to his language. This method can be used to load data that
* don't need translation and use them later in @{method:buildBody}.
*
* @param
* @return
*/
protected
function
prepareBody
()
{
}
protected
function
buildBody
()
{
$main_body
=
$this
->
renderBody
();
$body
=
new
PhabricatorMetaMTAMailBody
();
$body
->
addRawSection
(
$main_body
);
$reply_handler
=
$this
->
getReplyHandler
();
$body
->
addReplySection
(
$reply_handler
->
getReplyHandlerInstructions
());
if
(
$this
->
getHeraldTranscriptURI
()
&&
$this
->
isFirstMailToRecipients
())
{
$xscript_uri
=
$this
->
getHeraldTranscriptURI
();
$body
->
addHeraldSection
(
$xscript_uri
);
}
return
$body
->
render
();
}
/**
* You can override this method in a subclass and return array of attachments
* to be sent with the email. Each attachment is an instance of
* PhabricatorMetaMTAAttachment.
*/
protected
function
buildAttachments
()
{
return
array
();
}
public
function
getReplyHandler
()
{
if
(!
$this
->
replyHandler
)
{
$this
->
replyHandler
=
self
::
newReplyHandlerForRevision
(
$this
->
getRevision
());
}
return
$this
->
replyHandler
;
}
public
static
function
newReplyHandlerForRevision
(
DifferentialRevision
$revision
)
{
$reply_handler
=
PhabricatorEnv
::
newObjectFromConfig
(
'metamta.differential.reply-handler'
);
$reply_handler
->
setMailReceiver
(
$revision
);
return
$reply_handler
;
}
protected
function
formatText
(
$text
)
{
$text
=
explode
(
"
\n
"
,
rtrim
(
$text
));
foreach
(
$text
as
&
$line
)
{
$line
=
rtrim
(
' '
.
$line
);
}
unset
(
$line
);
return
implode
(
"
\n
"
,
$text
);
}
public
function
setExcludeMailRecipientPHIDs
(
array
$exclude
)
{
$this
->
excludePHIDs
=
$exclude
;
return
$this
;
}
public
function
getExcludeMailRecipientPHIDs
()
{
return
$this
->
excludePHIDs
;
}
public
function
setToPHIDs
(
array
$to
)
{
$this
->
to
=
$to
;
return
$this
;
}
public
function
setCCPHIDs
(
array
$cc
)
{
$this
->
cc
=
$cc
;
return
$this
;
}
protected
function
getToPHIDs
()
{
return
$this
->
to
;
}
protected
function
getCCPHIDs
()
{
return
$this
->
cc
;
}
public
function
setRevision
(
$revision
)
{
$this
->
revision
=
$revision
;
return
$this
;
}
public
function
getRevision
()
{
return
$this
->
revision
;
}
protected
function
getThreadID
()
{
$phid
=
$this
->
getRevision
()->
getPHID
();
return
"differential-rev-{$phid}-req"
;
}
protected
function
getThreadTopic
()
{
$id
=
$this
->
getRevision
()->
getID
();
$title
=
$this
->
getRevision
()->
getOriginalTitle
();
return
"D{$id}: {$title}"
;
}
public
function
setComments
(
array
$comments
)
{
$this
->
comments
=
$comments
;
return
$this
;
}
public
function
getComments
()
{
return
$this
->
comments
;
}
public
function
setChangesets
(
$changesets
)
{
$this
->
changesets
=
$changesets
;
return
$this
;
}
public
function
getChangesets
()
{
return
$this
->
changesets
;
}
public
function
setInlineComments
(
array
$inline_comments
)
{
assert_instances_of
(
$inline_comments
,
'PhabricatorInlineCommentInterface'
);
$this
->
inlineComments
=
$inline_comments
;
return
$this
;
}
public
function
getInlineComments
()
{
return
$this
->
inlineComments
;
}
protected
function
renderAuxFields
(
$phase
)
{
$selector
=
DifferentialFieldSelector
::
newSelector
();
$aux_fields
=
$selector
->
sortFieldsForMail
(
$selector
->
getFieldSpecifications
());
$body
=
array
();
foreach
(
$aux_fields
as
$field
)
{
$field
->
setUser
(
$this
->
getActor
());
$field
->
setRevision
(
$this
->
getRevision
());
// TODO: Introduce and use getRequiredHandlePHIDsForMail() and load all
// handles in prepareBody().
$text
=
$field
->
renderValueForMail
(
$phase
);
if
(
$text
!==
null
)
{
$body
[]
=
$text
;
$body
[]
=
null
;
}
}
return
implode
(
"
\n
"
,
$body
);
}
public
function
setIsFirstMailToRecipients
(
$first
)
{
$this
->
isFirstMailToRecipients
=
$first
;
return
$this
;
}
public
function
isFirstMailToRecipients
()
{
return
$this
->
isFirstMailToRecipients
;
}
public
function
setIsFirstMailAboutRevision
(
$first
)
{
$this
->
isFirstMailAboutRevision
=
$first
;
return
$this
;
}
public
function
isFirstMailAboutRevision
()
{
return
$this
->
isFirstMailAboutRevision
;
}
public
function
setHeraldTranscriptURI
(
$herald_transcript_uri
)
{
$this
->
heraldTranscriptURI
=
$herald_transcript_uri
;
return
$this
;
}
public
function
getHeraldTranscriptURI
()
{
return
$this
->
heraldTranscriptURI
;
}
protected
function
renderHandleList
(
array
$handles
,
array
$phids
)
{
assert_instances_of
(
$handles
,
'PhabricatorObjectHandle'
);
$names
=
array
();
foreach
(
$phids
as
$phid
)
{
$names
[]
=
$handles
[
$phid
]->
getName
();
}
return
implode
(
', '
,
$names
);
}
}
Event Timeline
Log In to Comment