Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120429676
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
Fri, Jul 4, 07:57
Size
939 B
Mime Type
text/x-php
Expires
Sun, Jul 6, 07:57 (2 d)
Engine
blob
Format
Raw Data
Handle
27187641
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