2011-01-16 22:51:39 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2012-08-05 23:03:39 +02: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group aphront
|
|
|
|
*/
|
|
|
|
abstract class AphrontController {
|
|
|
|
|
|
|
|
private $request;
|
2012-08-05 23:03:39 +02:00
|
|
|
private $currentApplication;
|
2011-01-16 22:51:39 +01:00
|
|
|
|
2011-01-26 22:21:12 +01:00
|
|
|
public function willBeginExecution() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
public function willProcessRequest(array $uri_data) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-05 23:12:43 +02:00
|
|
|
public function didProcessRequest($response) {
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
abstract public function processRequest();
|
|
|
|
|
|
|
|
final public function __construct(AphrontRequest $request) {
|
|
|
|
$this->request = $request;
|
|
|
|
}
|
|
|
|
|
|
|
|
final public function getRequest() {
|
|
|
|
return $this->request;
|
|
|
|
}
|
|
|
|
|
2011-02-28 04:47:22 +01:00
|
|
|
final public function delegateToController(AphrontController $controller) {
|
|
|
|
return $controller->processRequest();
|
|
|
|
}
|
|
|
|
|
2012-08-05 23:03:39 +02:00
|
|
|
|
|
|
|
final public function setCurrentApplication(
|
|
|
|
PhabricatorApplication $current_application) {
|
|
|
|
|
|
|
|
$this->currentApplication = $current_application;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
final public function getCurrentApplication() {
|
|
|
|
return $this->currentApplication;
|
|
|
|
}
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
}
|