Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F35253403
CelerityResourceController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
2 KB
Subscribers
None
CelerityResourceController.php
View Options
<?php
abstract
class
CelerityResourceController
extends
PhabricatorController
{
abstract
protected
function
getRootDirectory
();
protected
function
buildResourceTransformer
()
{
return
null
;
}
public
function
shouldRequireLogin
()
{
return
false
;
}
public
function
shouldRequireEnabledUser
()
{
return
false
;
}
private
function
getDiskPath
(
$to_resource
=
null
)
{
return
$this
->
getRootDirectory
().
$to_resource
;
}
protected
function
serveResource
(
$path
,
$package_hash
=
null
)
{
// Sanity checking to keep this from exposing anything sensitive, since it
// ultimately boils down to disk reads.
if
(
preg_match
(
'@(//|
\.\.
)@'
,
$path
))
{
return
new
Aphront400Response
();
}
$type
=
CelerityResourceTransformer
::
getResourceType
(
$path
);
$type_map
=
$this
->
getSupportedResourceTypes
();
if
(
empty
(
$type_map
[
$type
]))
{
throw
new
Exception
(
"Only static resources may be served."
);
}
if
(
AphrontRequest
::
getHTTPHeader
(
'If-Modified-Since'
)
&&
!
PhabricatorEnv
::
getEnvConfig
(
'phabricator.developer-mode'
))
{
// Return a "304 Not Modified". We don't care about the value of this
// field since we never change what resource is served by a given URI.
return
$this
->
makeResponseCacheable
(
new
Aphront304Response
());
}
if
(
$package_hash
)
{
$map
=
CelerityResourceMap
::
getInstance
();
$paths
=
$map
->
resolvePackage
(
$package_hash
);
if
(!
$paths
)
{
return
new
Aphront404Response
();
}
try
{
$data
=
array
();
foreach
(
$paths
as
$package_path
)
{
$disk_path
=
$this
->
getDiskPath
(
$package_path
);
$data
[]
=
Filesystem
::
readFile
(
$disk_path
);
}
$data
=
implode
(
"
\n\n
"
,
$data
);
}
catch
(
Exception
$ex
)
{
return
new
Aphront404Response
();
}
}
else
{
try
{
$disk_path
=
$this
->
getDiskPath
(
$path
);
$data
=
Filesystem
::
readFile
(
$disk_path
);
}
catch
(
Exception
$ex
)
{
return
new
Aphront404Response
();
}
}
$xformer
=
$this
->
buildResourceTransformer
();
if
(
$xformer
)
{
$data
=
$xformer
->
transformResource
(
$path
,
$data
);
}
$response
=
new
AphrontFileResponse
();
$response
->
setContent
(
$data
);
$response
->
setMimeType
(
$type_map
[
$type
]);
return
$this
->
makeResponseCacheable
(
$response
);
}
protected
function
getSupportedResourceTypes
()
{
return
array
(
'css'
=>
'text/css; charset=utf-8'
,
'js'
=>
'text/javascript; charset=utf-8'
,
'png'
=>
'image/png'
,
'gif'
=>
'image/gif'
,
'jpg'
=>
'image/jpg'
,
'swf'
=>
'application/x-shockwave-flash'
,
);
}
private
function
makeResponseCacheable
(
AphrontResponse
$response
)
{
$response
->
setCacheDurationInSeconds
(
60
*
60
*
24
*
30
);
$response
->
setLastModified
(
time
());
return
$response
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Feb 4, 4:16 PM (1 d, 16 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
7a/71/f67659568383e312765fc3efd897
Attached To
rPHAB Phabricator
Event Timeline
Log In to Comment