Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102787491
DiffusionDiffController.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
Mon, Feb 24, 04:43
Size
3 KB
Mime Type
text/x-php
Expires
Wed, Feb 26, 04:43 (1 d, 17 h)
Engine
blob
Format
Raw Data
Handle
24402648
Attached To
rPH Phabricator
DiffusionDiffController.php
View Options
<?php
final
class
DiffusionDiffController
extends
DiffusionController
{
public
function
willProcessRequest
(
array
$data
)
{
$data
=
$data
+
array
(
'dblob'
=>
$this
->
getRequest
()->
getStr
(
'ref'
),
);
$drequest
=
DiffusionRequest
::
newFromAphrontRequestDictionary
(
$data
,
$this
->
getRequest
());
$this
->
diffusionRequest
=
$drequest
;
}
public
function
processRequest
()
{
$drequest
=
$this
->
getDiffusionRequest
();
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
if
(!
$request
->
isAjax
())
{
// This request came out of the dropdown menu, either "View Standalone"
// or "View Raw File".
$view
=
$request
->
getStr
(
'view'
);
if
(
$view
==
'r'
)
{
$uri
=
$drequest
->
generateURI
(
array
(
'action'
=>
'browse'
,
'params'
=>
array
(
'view'
=>
'raw'
,
),
));
}
else
{
$uri
=
$drequest
->
generateURI
(
array
(
'action'
=>
'change'
,
));
}
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$uri
);
}
$data
=
$this
->
callConduitWithDiffusionRequest
(
'diffusion.diffquery'
,
array
(
'commit'
=>
$drequest
->
getCommit
(),
'path'
=>
$drequest
->
getPath
()));
$drequest
->
setCommit
(
$data
[
'effectiveCommit'
]);
$raw_changes
=
ArcanistDiffChange
::
newFromConduit
(
$data
[
'changes'
]);
$diff
=
DifferentialDiff
::
newFromRawChanges
(
$raw_changes
);
$changesets
=
$diff
->
getChangesets
();
$changeset
=
reset
(
$changesets
);
if
(!
$changeset
)
{
return
new
Aphront404Response
();
}
$parser
=
new
DifferentialChangesetParser
();
$parser
->
setUser
(
$user
);
$parser
->
setChangeset
(
$changeset
);
$parser
->
setRenderingReference
(
$drequest
->
generateURI
(
array
(
'action'
=>
'rendering-ref'
)));
$pquery
=
new
DiffusionPathIDQuery
(
array
(
$changeset
->
getFilename
()));
$ids
=
$pquery
->
loadPathIDs
();
$path_id
=
$ids
[
$changeset
->
getFilename
()];
$parser
->
setLeftSideCommentMapping
(
$path_id
,
false
);
$parser
->
setRightSideCommentMapping
(
$path_id
,
true
);
$parser
->
setWhitespaceMode
(
DifferentialChangesetParser
::
WHITESPACE_SHOW_ALL
);
$inlines
=
id
(
new
PhabricatorAuditInlineComment
())->
loadAllWhere
(
'commitPHID = %s AND pathID = %d AND
(authorPHID = %s OR auditCommentID IS NOT NULL)'
,
$drequest
->
loadCommit
()->
getPHID
(),
$path_id
,
$user
->
getPHID
());
if
(
$inlines
)
{
foreach
(
$inlines
as
$inline
)
{
$parser
->
parseInlineComment
(
$inline
);
}
$phids
=
mpull
(
$inlines
,
'getAuthorPHID'
);
$handles
=
$this
->
loadViewerHandles
(
$phids
);
$parser
->
setHandles
(
$handles
);
}
$engine
=
new
PhabricatorMarkupEngine
();
$engine
->
setViewer
(
$user
);
foreach
(
$inlines
as
$inline
)
{
$engine
->
addObject
(
$inline
,
PhabricatorInlineCommentInterface
::
MARKUP_FIELD_BODY
);
}
$engine
->
process
();
$parser
->
setMarkupEngine
(
$engine
);
$spec
=
$request
->
getStr
(
'range'
);
list
(
$range_s
,
$range_e
,
$mask
)
=
DifferentialChangesetParser
::
parseRangeSpecification
(
$spec
);
$output
=
$parser
->
render
(
$range_s
,
$range_e
,
$mask
);
return
id
(
new
PhabricatorChangesetResponse
())
->
setRenderedChangeset
(
$output
);
}
}
Event Timeline
Log In to Comment