2011-01-25 20:57:47 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2012-02-14 23:51:51 +01:00
|
|
|
* Copyright 2012 Facebook, Inc.
|
2011-01-25 20:57:47 +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
|
|
|
|
*/
|
2012-02-14 23:51:51 +01:00
|
|
|
final class AphrontAjaxResponse extends AphrontResponse {
|
2011-01-25 20:57:47 +01:00
|
|
|
|
|
|
|
private $content;
|
|
|
|
private $error;
|
|
|
|
|
|
|
|
public function setContent($content) {
|
|
|
|
$this->content = $content;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function buildResponseString() {
|
|
|
|
$response = CelerityAPI::getStaticResourceResponse();
|
2012-02-14 23:51:51 +01:00
|
|
|
$object = $response->buildAjaxResponse(
|
2011-01-25 20:57:47 +01:00
|
|
|
$this->content,
|
|
|
|
$this->error);
|
2012-02-14 23:51:51 +01:00
|
|
|
|
OAuth - Phabricator OAuth server and Phabricator client for new Phabricator OAuth Server
Summary:
adds a Phabricator OAuth server, which has three big commands:
- auth - allows $user to authorize a given client or application. if $user has already authorized, it hands an authoization code back to $redirect_uri
- token - given a valid authorization code, this command returns an authorization token
- whoami - Conduit.whoami, all nice and purdy relative to the oauth server.
Also has a "test" handler, which I used to create some test data. T850 will
delete this as it adds the ability to create this data in the Phabricator
product.
This diff also adds the corresponding client in Phabricator for the Phabricator
OAuth Server. (Note that clients are known as "providers" in the Phabricator
codebase but client makes more sense relative to the server nomenclature)
Also, related to make this work well
- clean up the diagnostics page by variabilizing the provider-specific
information and extending the provider classes as appropriate.
- augment Conduit.whoami for more full-featured OAuth support, at least where
the Phabricator client is concerned
What's missing here... See T844, T848, T849, T850, and T852.
Test Plan:
- created a dummy client via the test handler. setup development.conf to have
have proper variables for this dummy client. went through authorization and
de-authorization flows
- viewed the diagnostics page for all known oauth providers and saw
provider-specific debugging information
Reviewers: epriestley
CC: aran, epriestley
Maniphest Tasks: T44, T797
Differential Revision: https://secure.phabricator.com/D1595
2012-02-04 01:21:40 +01:00
|
|
|
$response_json = $this->encodeJSONForHTTPResponse($object);
|
|
|
|
return $this->addJSONShield($response_json, $use_javelin_shield = true);
|
2011-01-25 20:57:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeaders() {
|
2011-09-14 01:38:28 +02:00
|
|
|
$headers = array(
|
2011-01-25 20:57:47 +01:00
|
|
|
array('Content-Type', 'text/plain; charset=UTF-8'),
|
|
|
|
);
|
2011-09-14 01:38:28 +02:00
|
|
|
$headers = array_merge(parent::getHeaders(), $headers);
|
|
|
|
return $headers;
|
2011-01-25 20:57:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|