Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111772972
PhabricatorResourceSite.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
Sun, May 4, 23:24
Size
939 B
Mime Type
text/x-php
Expires
Tue, May 6, 23:24 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25971116
Attached To
rPH Phabricator
PhabricatorResourceSite.php
View Options
<?php
final
class
PhabricatorResourceSite
extends
PhabricatorSite
{
public
function
getDescription
()
{
return
pht
(
'Serves static resources like images, CSS and JS.'
);
}
public
function
getPriority
()
{
return
2000
;
}
public
function
newSiteForRequest
(
AphrontRequest
$request
)
{
$host
=
$request
->
getHost
();
$uri
=
PhabricatorEnv
::
getEnvConfig
(
'security.alternate-file-domain'
);
if
(!
strlen
(
$uri
))
{
return
null
;
}
if
(
$this
->
isHostMatch
(
$host
,
array
(
$uri
)))
{
return
new
PhabricatorResourceSite
();
}
// These are CDN routes, so we let them through even if the "Host" header
// doesn't match anything we recognize. The
$whitelist
=
array
(
'/res/'
,
'/file/data/'
,
'/file/xform/'
,
);
$path
=
$request
->
getPath
();
if
(
$this
->
isPathPrefixMatch
(
$path
,
$whitelist
))
{
return
new
PhabricatorResourceSite
();
}
return
null
;
}
}
Event Timeline
Log In to Comment