Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122383472
PholioInlineThumbController.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, Jul 17, 13:14
Size
1007 B
Mime Type
text/x-php
Expires
Sat, Jul 19, 13:14 (2 d)
Engine
blob
Format
Raw Data
Handle
27475913
Attached To
rPH Phabricator
PholioInlineThumbController.php
View Options
<?php
/**
* @group pholio
*/
final
class
PholioInlineThumbController
extends
PholioController
{
private
$imageid
;
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
willProcessRequest
(
array
$data
)
{
$this
->
imageid
=
idx
(
$data
,
'imageid'
);
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$image
=
id
(
new
PholioImage
())->
load
(
$this
->
imageid
);
if
(
$image
==
null
)
{
return
new
Aphront404Response
();
}
$mock
=
id
(
new
PholioMockQuery
())
->
setViewer
(
$user
)
->
withIDs
(
array
(
$image
->
getMockID
()))
->
executeOne
();
if
(!
$mock
)
{
return
new
Aphront404Response
();
}
$file
=
id
(
new
PhabricatorFileQuery
())
->
setViewer
(
$user
)
->
witHPHIDs
(
array
(
$image
->
getFilePHID
()))
->
executeOne
();
if
(!
$file
)
{
return
new
Aphront404Response
();
}
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$file
->
getThumb60x45URI
());
}
}
Event Timeline
Log In to Comment