Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1507452
PhragmentPatchController.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
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
(
$viewer
,
$version_b
->
getFragmentPHID
());
unset
(
$unguarded
);
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
$result
->
getDownloadURI
(
$return
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jul 13, 3:29 PM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
351207
Default Alt Text
PhragmentPatchController.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment