Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100866461
PhabricatorPlatformSite.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
Mon, Feb 3, 10:31
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Feb 5, 10:31 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
24047469
Attached To
rPH Phabricator
PhabricatorPlatformSite.php
View Options
<?php
final
class
PhabricatorPlatformSite
extends
PhabricatorSite
{
public
function
getDescription
()
{
return
pht
(
'Serves the core platform and applications.'
);
}
public
function
getPriority
()
{
return
1000
;
}
public
function
newSiteForRequest
(
AphrontRequest
$request
)
{
// If no base URI has been configured yet, match this site so the user
// can follow setup instructions.
$base_uri
=
PhabricatorEnv
::
getEnvConfig
(
'phabricator.base-uri'
);
if
(!
strlen
(
$base_uri
))
{
return
new
PhabricatorPlatformSite
();
}
$uris
=
array
();
$uris
[]
=
$base_uri
;
$uris
[]
=
PhabricatorEnv
::
getEnvConfig
(
'phabricator.production-uri'
);
$allowed
=
PhabricatorEnv
::
getEnvConfig
(
'phabricator.allowed-uris'
);
if
(
$allowed
)
{
foreach
(
$allowed
as
$uri
)
{
$uris
[]
=
$uri
;
}
}
$host
=
$request
->
getHost
();
if
(
$this
->
isHostMatch
(
$host
,
$uris
))
{
return
new
PhabricatorPlatformSite
();
}
return
null
;
}
public
function
getRoutingMaps
()
{
$applications
=
PhabricatorApplication
::
getAllInstalledApplications
();
$maps
=
array
();
foreach
(
$applications
as
$application
)
{
$maps
[]
=
$this
->
newRoutingMap
()
->
setApplication
(
$application
)
->
setRoutes
(
$application
->
getRoutes
());
}
return
$maps
;
}
}
Event Timeline
Log In to Comment