2011-01-16 22:51:39 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2012-03-07 00:52:22 +01:00
|
|
|
* Copyright 2012 Facebook, Inc.
|
2011-01-16 22:51:39 +01:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2012-08-06 21:46:51 +02:00
|
|
|
* @task routing URI Routing
|
2011-01-16 22:51:39 +01:00
|
|
|
* @group aphront
|
|
|
|
*/
|
|
|
|
abstract class AphrontApplicationConfiguration {
|
|
|
|
|
|
|
|
private $request;
|
|
|
|
private $host;
|
|
|
|
private $path;
|
2011-02-02 22:48:52 +01:00
|
|
|
private $console;
|
2011-01-16 22:51:39 +01:00
|
|
|
|
|
|
|
abstract public function getApplicationName();
|
|
|
|
abstract public function getURIMap();
|
|
|
|
abstract public function buildRequest();
|
2011-01-30 01:16:09 +01:00
|
|
|
abstract public function build404Controller();
|
2011-04-04 19:29:46 +02:00
|
|
|
abstract public function buildRedirectController($uri);
|
2011-01-16 22:51:39 +01:00
|
|
|
|
|
|
|
final public function setRequest(AphrontRequest $request) {
|
|
|
|
$this->request = $request;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
final public function getRequest() {
|
|
|
|
return $this->request;
|
|
|
|
}
|
|
|
|
|
2011-02-02 22:48:52 +01:00
|
|
|
final public function getConsole() {
|
|
|
|
return $this->console;
|
|
|
|
}
|
2011-02-05 21:20:18 +01:00
|
|
|
|
2011-02-05 20:45:13 +01:00
|
|
|
final public function setConsole($console) {
|
|
|
|
$this->console = $console;
|
2012-04-03 03:35:09 +02:00
|
|
|
return $this;
|
2011-02-05 20:45:13 +01:00
|
|
|
}
|
2011-02-02 22:48:52 +01:00
|
|
|
|
2012-08-06 21:46:51 +02:00
|
|
|
final public function setHost($host) {
|
|
|
|
$this->host = $host;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
final public function getHost() {
|
|
|
|
return $this->host;
|
|
|
|
}
|
|
|
|
|
|
|
|
final public function setPath($path) {
|
|
|
|
$this->path = $path;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
final public function getPath() {
|
|
|
|
return $this->path;
|
|
|
|
}
|
|
|
|
|
2012-08-31 03:48:27 +02:00
|
|
|
public function willBuildRequest() {
|
2012-08-06 21:46:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hook for synchronizing account information from OAuth workflows.
|
|
|
|
*
|
|
|
|
* @task hook
|
|
|
|
*/
|
|
|
|
public function willAuthenticateUserWithOAuth(
|
|
|
|
PhabricatorUser $user,
|
|
|
|
PhabricatorUserOAuthInfo $oauth_info,
|
|
|
|
PhabricatorOAuthProvider $provider) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* -( URI Routing )-------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Using builtin and application routes, build the appropriate
|
|
|
|
* @{class:AphrontController} class for the request. To route a request, we
|
2012-10-01 02:10:27 +02:00
|
|
|
* first test if the HTTP_HOST is configured as a valid Phabricator URI. If
|
|
|
|
* it isn't, we do a special check to see if it's a custom domain for a blog
|
|
|
|
* in the Phame application and if that fails we error. Otherwise, we test
|
|
|
|
* the URI against all builtin routes from @{method:getURIMap}, then against
|
|
|
|
* all application routes from installed @{class:PhabricatorApplication}s.
|
2012-08-06 21:46:51 +02:00
|
|
|
*
|
|
|
|
* If we match a route, we construct the controller it points at, build it,
|
|
|
|
* and return it.
|
|
|
|
*
|
|
|
|
* If we fail to match a route, but the current path is missing a trailing
|
|
|
|
* "/", we try routing the same path with a trailing "/" and do a redirect
|
|
|
|
* if that has a valid route. The idea is to canoncalize URIs for consistency,
|
|
|
|
* but avoid breaking noncanonical URIs that we can easily salvage.
|
|
|
|
*
|
|
|
|
* NOTE: We only redirect on GET. On POST, we'd drop parameters and most
|
|
|
|
* likely mutate the request implicitly, and a bad POST usually indicates a
|
|
|
|
* programming error rather than a sloppy typist.
|
|
|
|
*
|
|
|
|
* If the failing path already has a trailing "/", or we can't route the
|
|
|
|
* version with a "/", we call @{method:build404Controller}, which build a
|
|
|
|
* fallback @{class:AphrontController}.
|
|
|
|
*
|
|
|
|
* @return pair<AphrontController,dict> Controller and dictionary of request
|
|
|
|
* parameters.
|
|
|
|
* @task routing
|
|
|
|
*/
|
2011-01-16 22:51:39 +01:00
|
|
|
final public function buildController() {
|
|
|
|
$request = $this->getRequest();
|
2012-08-05 23:03:39 +02:00
|
|
|
|
2012-09-04 18:56:30 +02:00
|
|
|
if (PhabricatorEnv::getEnvConfig('security.require-https')) {
|
|
|
|
if (!$request->isHTTPS()) {
|
|
|
|
$uri = $request->getRequestURI();
|
|
|
|
$uri->setDomain($request->getHost());
|
|
|
|
$uri->setProtocol('https');
|
|
|
|
return $this->buildRedirectController($uri);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-01 02:10:27 +02:00
|
|
|
$path = $request->getPath();
|
|
|
|
$host = $request->getHost();
|
|
|
|
$base_uri = PhabricatorEnv::getEnvConfig('phabricator.base-uri');
|
|
|
|
$prod_uri = PhabricatorEnv::getEnvConfig('phabricator.production-uri');
|
|
|
|
$file_uri = PhabricatorEnv::getEnvConfig('security.alternate-file-domain');
|
|
|
|
if ($host != id(new PhutilURI($base_uri))->getDomain() &&
|
|
|
|
$host != id(new PhutilURI($prod_uri))->getDomain() &&
|
|
|
|
$host != id(new PhutilURI($file_uri))->getDomain()) {
|
|
|
|
$blogs = id(new PhameBlogQuery())->withDomain($host)->execute();
|
|
|
|
$blog = reset($blogs);
|
|
|
|
if (!$blog) {
|
|
|
|
if ($prod_uri) {
|
|
|
|
$prod_str = ' or '.$prod_uri;
|
|
|
|
} else {
|
|
|
|
$prod_str = '';
|
|
|
|
}
|
|
|
|
throw new Exception(
|
|
|
|
'Specified domain '.$host.' is not configured for Phabricator '.
|
|
|
|
'requests. Please use '.$base_uri.$prod_str.' to visit this instance.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2 basic cases
|
|
|
|
// -- looking at a list of blog posts, path is nothing or '/'
|
|
|
|
// -- looking at an actual blog post, path is like /btrahan/post_title
|
|
|
|
if (!$path || $path == '/') {
|
|
|
|
$path = $blog->getViewURI();
|
|
|
|
} else {
|
|
|
|
$path = '/phame/posts/'.trim($path, '/').'/';
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO - now we need to tell Celerity to render static resources with
|
|
|
|
// full URIs like secure.phabricator.org/rsrc/blahblah
|
|
|
|
}
|
|
|
|
|
2012-08-06 21:46:51 +02:00
|
|
|
list($controller, $uri_data) = $this->buildControllerForPath($path);
|
|
|
|
if (!$controller) {
|
|
|
|
if (!preg_match('@/$@', $path)) {
|
|
|
|
// If we failed to match anything but don't have a trailing slash, try
|
|
|
|
// to add a trailing slash and issue a redirect if that resolves.
|
|
|
|
list($controller, $uri_data) = $this->buildControllerForPath($path.'/');
|
|
|
|
|
|
|
|
// NOTE: For POST, just 404 instead of redirecting, since the redirect
|
|
|
|
// will be a GET without parameters.
|
|
|
|
|
|
|
|
if ($controller && !$request->isHTTPPost()) {
|
|
|
|
$uri = $request->getRequestURI()->setPath($path.'/');
|
|
|
|
return $this->buildRedirectController($uri);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $this->build404Controller();
|
|
|
|
}
|
|
|
|
|
|
|
|
return array($controller, $uri_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Map a specific path to the corresponding controller. For a description
|
|
|
|
* of routing, see @{method:buildController}.
|
|
|
|
*
|
|
|
|
* @return pair<AphrontController,dict> Controller and dictionary of request
|
|
|
|
* parameters.
|
|
|
|
* @task routing
|
|
|
|
*/
|
2012-08-10 07:11:50 +02:00
|
|
|
final public function buildControllerForPath($path) {
|
2012-08-05 23:03:39 +02:00
|
|
|
$maps = array();
|
|
|
|
$maps[] = array(null, $this->getURIMap());
|
|
|
|
|
|
|
|
$applications = PhabricatorApplication::getAllInstalledApplications();
|
|
|
|
foreach ($applications as $application) {
|
|
|
|
$maps[] = array($application, $application->getRoutes());
|
|
|
|
}
|
|
|
|
|
|
|
|
$current_application = null;
|
2012-08-06 21:46:51 +02:00
|
|
|
$controller_class = null;
|
2012-08-05 23:03:39 +02:00
|
|
|
foreach ($maps as $map_info) {
|
|
|
|
list($application, $map) = $map_info;
|
|
|
|
|
|
|
|
$mapper = new AphrontURIMapper($map);
|
|
|
|
list($controller_class, $uri_data) = $mapper->mapPath($path);
|
|
|
|
|
|
|
|
if ($controller_class) {
|
|
|
|
if ($application) {
|
|
|
|
$current_application = $application;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-01-16 22:51:39 +01:00
|
|
|
|
2011-01-30 01:16:09 +01:00
|
|
|
if (!$controller_class) {
|
2012-08-06 21:46:51 +02:00
|
|
|
return array(null, null);
|
2011-01-30 01:16:09 +01:00
|
|
|
}
|
|
|
|
|
2012-08-06 21:46:51 +02:00
|
|
|
$request = $this->getRequest();
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
$controller = newv($controller_class, array($request));
|
2012-08-05 23:03:39 +02:00
|
|
|
if ($current_application) {
|
|
|
|
$controller->setCurrentApplication($current_application);
|
|
|
|
}
|
2011-01-16 22:51:39 +01:00
|
|
|
|
|
|
|
return array($controller, $uri_data);
|
|
|
|
}
|
|
|
|
}
|