Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105889101
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, Mar 20, 14:20
Size
982 B
Mime Type
text/x-php
Expires
Sat, Mar 22, 14:20 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25063532
Attached To
rPH Phabricator
PholioInlineThumbController.php
View Options
<?php
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