Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93215389
PhragmentPatchController.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
Wed, Nov 27, 02:15
Size
2 KB
Mime Type
text/x-php
Expires
Fri, Nov 29, 02:15 (2 d)
Engine
blob
Format
Raw Data
Handle
22597231
Attached To
rPH Phabricator
PhragmentPatchController.php
View Options
<?php
final
class
PhragmentPatchController
extends
PhragmentController
{
private
$aid
;
private
$bid
;
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
willProcessRequest
(
array
$data
)
{
$this
->
aid
=
idx
(
$data
,
'aid'
,
0
);
$this
->
bid
=
idx
(
$data
,
'bid'
,
0
);
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
// If "aid" is "x", then it means the user wants to generate
// a patch of an empty file to the version specified by "bid".
$ids
=
array
(
$this
->
aid
,
$this
->
bid
);
if
(
$this
->
aid
===
'x'
)
{
$ids
=
array
(
$this
->
bid
);
}
$versions
=
id
(
new
PhragmentFragmentVersionQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
$ids
)
->
execute
();
$version_a
=
null
;
if
(
$this
->
aid
!==
'x'
)
{
$version_a
=
idx
(
$versions
,
$this
->
aid
,
null
);
if
(
$version_a
===
null
)
{
return
new
Aphront404Response
();
}
}
$version_b
=
idx
(
$versions
,
$this
->
bid
,
null
);
if
(
$version_b
===
null
)
{
return
new
Aphront404Response
();
}
$file_phids
=
array
();
if
(
$version_a
!==
null
)
{
$file_phids
[]
=
$version_a
->
getFilePHID
();
}
$file_phids
[]
=
$version_b
->
getFilePHID
();
$files
=
id
(
new
PhabricatorFileQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
$file_phids
)
->
execute
();
$files
=
mpull
(
$files
,
null
,
'getPHID'
);
$file_a
=
null
;
if
(
$version_a
!=
null
)
{
$file_a
=
idx
(
$files
,
$version_a
->
getFilePHID
(),
null
);
}
$file_b
=
idx
(
$files
,
$version_b
->
getFilePHID
(),
null
);
$patch
=
PhragmentPatchUtil
::
calculatePatch
(
$file_a
,
$file_b
);
if
(
$patch
===
null
)
{
// There are no differences between the two files, so we output
// an empty patch.
$patch
=
''
;
}
$a_sequence
=
'x'
;
if
(
$version_a
!==
null
)
{
$a_sequence
=
$version_a
->
getSequence
();
}
$name
=
$version_b
->
getFragment
()->
getName
().
'.'
.
$a_sequence
.
'.'
.
$version_b
->
getSequence
().
'.patch'
;
$return
=
$version_b
->
getURI
();
if
(
$request
->
getExists
(
'return'
))
{
$return
=
$request
->
getStr
(
'return'
);
}
$result
=
PhabricatorFile
::
buildFromFileDataOrHash
(
$patch
,
array
(
'name'
=>
$name
,
'mime-type'
=>
'text/plain'
,
'ttl'
=>
time
()
+
60
*
60
*
24
,
));
$unguarded
=
AphrontWriteGuard
::
beginScopedUnguardedWrites
();
$result
->
attachToObject
(
$version_b
->
getFragmentPHID
());
unset
(
$unguarded
);
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
$result
->
getDownloadURI
(
$return
));
}
}
Event Timeline
Log In to Comment