Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120635190
DifferentialReviewRequestMail.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
Sat, Jul 5, 19:34
Size
3 KB
Mime Type
text/x-php
Expires
Mon, Jul 7, 19:34 (2 d)
Engine
blob
Format
Raw Data
Handle
27182924
Attached To
rPH Phabricator
DifferentialReviewRequestMail.php
View Options
<?php
abstract
class
DifferentialReviewRequestMail
extends
DifferentialMail
{
const
MAX_AFFECTED_FILES
=
1000
;
protected
$comments
;
private
$patch
;
public
function
setComments
(
$comments
)
{
$this
->
comments
=
$comments
;
return
$this
;
}
public
function
getComments
()
{
return
$this
->
comments
;
}
public
function
__construct
(
DifferentialRevision
$revision
,
PhabricatorObjectHandle
$actor
,
array
$changesets
)
{
assert_instances_of
(
$changesets
,
'DifferentialChangeset'
);
$this
->
setRevision
(
$revision
);
$this
->
setActorHandle
(
$actor
);
$this
->
setChangesets
(
$changesets
);
}
protected
function
prepareBody
()
{
parent
::
prepareBody
();
$inline_max_length
=
PhabricatorEnv
::
getEnvConfig
(
'metamta.differential.inline-patches'
);
if
(
$inline_max_length
)
{
$patch
=
$this
->
buildPatch
();
if
(
count
(
explode
(
"
\n
"
,
$patch
))
<=
$inline_max_length
)
{
$this
->
patch
=
$patch
;
}
}
}
protected
function
renderReviewRequestBody
()
{
$revision
=
$this
->
getRevision
();
$body
=
array
();
if
(!
$this
->
isFirstMailToRecipients
())
{
if
(
strlen
(
$this
->
getComments
()))
{
$body
[]
=
$this
->
formatText
(
$this
->
getComments
());
$body
[]
=
null
;
}
}
$phase
=
(
$this
->
isFirstMailToRecipients
()
?
DifferentialMailPhase
::
WELCOME
:
DifferentialMailPhase
::
UPDATE
);
$body
[]
=
$this
->
renderAuxFields
(
$phase
);
$changesets
=
$this
->
getChangesets
();
if
(
$changesets
)
{
$body
[]
=
'AFFECTED FILES'
;
$max
=
self
::
MAX_AFFECTED_FILES
;
foreach
(
array_values
(
$changesets
)
as
$i
=>
$changeset
)
{
if
(
$i
==
$max
)
{
$body
[]
=
' ('
.(
count
(
$changesets
)
-
$max
).
' more files)'
;
break
;
}
$body
[]
=
' '
.
$changeset
->
getFilename
();
}
$body
[]
=
null
;
}
if
(
$this
->
patch
)
{
$body
[]
=
'CHANGE DETAILS'
;
$body
[]
=
$this
->
patch
;
}
return
implode
(
"
\n
"
,
$body
);
}
protected
function
buildAttachments
()
{
$attachments
=
array
();
if
(
PhabricatorEnv
::
getEnvConfig
(
'metamta.differential.attach-patches'
))
{
$revision
=
$this
->
getRevision
();
$revision_id
=
$revision
->
getID
();
$diffs
=
$revision
->
loadDiffs
();
$diff_number
=
count
(
$diffs
);
$attachments
[]
=
new
PhabricatorMetaMTAAttachment
(
$this
->
buildPatch
(),
"D{$revision_id}.{$diff_number}.patch"
,
'text/x-patch; charset=utf-8'
);
}
return
$attachments
;
}
public
function
loadFileByPHID
(
$phid
)
{
$file
=
id
(
new
PhabricatorFile
())->
loadOneWhere
(
'phid = %s'
,
$phid
);
if
(!
$file
)
{
return
null
;
}
return
$file
->
loadFileData
();
}
private
function
buildPatch
()
{
$diff
=
new
DifferentialDiff
();
$diff
->
attachChangesets
(
$this
->
getChangesets
());
// TODO: We could batch this to improve performance.
foreach
(
$diff
->
getChangesets
()
as
$changeset
)
{
$changeset
->
attachHunks
(
$changeset
->
loadHunks
());
}
$diff_dict
=
$diff
->
getDiffDict
();
$changes
=
array
();
foreach
(
$diff_dict
[
'changes'
]
as
$changedict
)
{
$changes
[]
=
ArcanistDiffChange
::
newFromDictionary
(
$changedict
);
}
$bundle
=
ArcanistBundle
::
newFromChanges
(
$changes
);
$bundle
->
setLoadFileDataCallback
(
array
(
$this
,
'loadFileByPHID'
));
$format
=
PhabricatorEnv
::
getEnvConfig
(
'metamta.differential.patch-format'
);
switch
(
$format
)
{
case
'git'
:
return
$bundle
->
toGitPatch
();
break
;
case
'unified'
:
default
:
return
$bundle
->
toUnifiedDiff
();
break
;
}
}
protected
function
getMailTags
()
{
$tags
=
array
();
if
(
$this
->
isFirstMailToRecipients
())
{
$tags
[]
=
MetaMTANotificationType
::
TYPE_DIFFERENTIAL_REVIEW_REQUEST
;
}
else
{
$tags
[]
=
MetaMTANotificationType
::
TYPE_DIFFERENTIAL_UPDATED
;
}
return
$tags
;
}
}
Event Timeline
Log In to Comment