2012-02-22 19:21:39 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
abstract class PhabricatorOAuthServerController
|
2014-03-18 21:30:48 +01:00
|
|
|
extends PhabricatorController {
|
2012-02-22 19:21:39 +01:00
|
|
|
|
|
|
|
public function buildStandardPageResponse($view, array $data) {
|
|
|
|
$user = $this->getRequest()->getUser();
|
|
|
|
$page = $this->buildStandardPageView();
|
2015-05-22 09:27:56 +02:00
|
|
|
$page->setApplicationName(pht('OAuth Server'));
|
2012-02-22 19:21:39 +01:00
|
|
|
$page->setBaseURI('/oauthserver/');
|
|
|
|
$page->setTitle(idx($data, 'title'));
|
|
|
|
|
|
|
|
$nav = new AphrontSideNavFilterView();
|
|
|
|
$nav->setBaseURI(new PhutilURI('/oauthserver/'));
|
2015-05-22 09:27:56 +02:00
|
|
|
$nav->addLabel(pht('Clients'));
|
|
|
|
$nav->addFilter('client/create', pht('Create Client'));
|
2012-02-22 19:21:39 +01:00
|
|
|
foreach ($this->getExtraClientFilters() as $filter) {
|
2015-05-22 09:27:56 +02:00
|
|
|
$nav->addFilter($filter['url'], $filter['label']);
|
2012-02-22 19:21:39 +01:00
|
|
|
}
|
2015-05-22 09:27:56 +02:00
|
|
|
$nav->addFilter('client', pht('My Clients'));
|
|
|
|
$nav->selectFilter($this->getFilter(), 'clientauthorization');
|
2012-02-22 19:21:39 +01:00
|
|
|
|
|
|
|
$nav->appendChild($view);
|
|
|
|
|
|
|
|
$page->appendChild($nav);
|
|
|
|
|
|
|
|
$response = new AphrontWebpageResponse();
|
|
|
|
return $response->setContent($page->render());
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getFilter() {
|
|
|
|
return 'clientauthorization';
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getExtraClientFilters() {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getHighlightPHIDs() {
|
|
|
|
$phids = array();
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$edited = $request->getStr('edited');
|
|
|
|
$new = $request->getStr('new');
|
|
|
|
if ($edited) {
|
|
|
|
$phids[$edited] = $edited;
|
|
|
|
}
|
|
|
|
if ($new) {
|
|
|
|
$phids[$new] = $new;
|
|
|
|
}
|
|
|
|
return $phids;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function buildErrorView($error_message) {
|
2015-03-01 23:45:56 +01:00
|
|
|
$error = new PHUIInfoView();
|
|
|
|
$error->setSeverity(PHUIInfoView::SEVERITY_ERROR);
|
2012-02-22 19:21:39 +01:00
|
|
|
$error->setTitle($error_message);
|
|
|
|
|
|
|
|
return $error;
|
|
|
|
}
|
|
|
|
}
|