googleapis
Version:
Google APIs Client Library for Node.js
202 lines • 6.66 kB
JavaScript
;
/**
* Copyright 2015 Google Inc. All Rights Reserved.
*
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
var apirequest_1 = require("../../lib/apirequest");
// TODO: We will eventually get the `any` in here cleared out, but in the
// interim we want to turn on no-implicit-any.
// tslint:disable: no-any
// tslint:disable: class-name
// tslint:disable: variable-name
// tslint:disable: jsdoc-format
/**
* Google OAuth2 API
*
* Obtains end-user authorization grants for use with other Google APIs.
*
* @example
* const google = require('googleapis');
* const oauth2 = google.oauth2('v2');
*
* @namespace oauth2
* @type {Function}
* @version v2
* @variation v2
* @param {object=} options Options for Oauth2
*/
var Oauth2 = /** @class */ (function () {
function Oauth2(options, google) {
this.root = this;
this._options = options || {};
this.google = google;
this.getRoot.bind(this);
this.userinfo = new Resource$Userinfo(this);
}
Oauth2.prototype.getRoot = function () {
return this.root;
};
Oauth2.prototype.getCertForOpenIdConnect = function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
if (typeof params === 'function') {
callback = params;
params = {};
}
options = options || {};
var rootUrl = options.rootUrl || 'https://www.googleapis.com/';
var parameters = {
options: Object.assign({
url: (rootUrl + '/oauth2/v2/certs').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: this.getRoot()
};
if (callback) {
apirequest_1.createAPIRequest(parameters, callback);
}
else {
return apirequest_1.createAPIRequest(parameters);
}
};
Oauth2.prototype.tokeninfo = function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
if (typeof params === 'function') {
callback = params;
params = {};
}
options = options || {};
var rootUrl = options.rootUrl || 'https://www.googleapis.com/';
var parameters = {
options: Object.assign({
url: (rootUrl + '/oauth2/v2/tokeninfo')
.replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: this.getRoot()
};
if (callback) {
apirequest_1.createAPIRequest(parameters, callback);
}
else {
return apirequest_1.createAPIRequest(parameters);
}
};
return Oauth2;
}());
exports.Oauth2 = Oauth2;
var Resource$Userinfo = /** @class */ (function () {
function Resource$Userinfo(root) {
this.root = root;
this.getRoot.bind(this);
this.v2 = new Resource$Userinfo$V2(root);
}
Resource$Userinfo.prototype.getRoot = function () {
return this.root;
};
Resource$Userinfo.prototype.get = function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
if (typeof params === 'function') {
callback = params;
params = {};
}
options = options || {};
var rootUrl = options.rootUrl || 'https://www.googleapis.com/';
var parameters = {
options: Object.assign({
url: (rootUrl + '/oauth2/v2/userinfo').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: this.getRoot()
};
if (callback) {
apirequest_1.createAPIRequest(parameters, callback);
}
else {
return apirequest_1.createAPIRequest(parameters);
}
};
return Resource$Userinfo;
}());
exports.Resource$Userinfo = Resource$Userinfo;
var Resource$Userinfo$V2 = /** @class */ (function () {
function Resource$Userinfo$V2(root) {
this.root = root;
this.getRoot.bind(this);
this.me = new Resource$Userinfo$V2$Me(root);
}
Resource$Userinfo$V2.prototype.getRoot = function () {
return this.root;
};
return Resource$Userinfo$V2;
}());
exports.Resource$Userinfo$V2 = Resource$Userinfo$V2;
var Resource$Userinfo$V2$Me = /** @class */ (function () {
function Resource$Userinfo$V2$Me(root) {
this.root = root;
this.getRoot.bind(this);
}
Resource$Userinfo$V2$Me.prototype.getRoot = function () {
return this.root;
};
Resource$Userinfo$V2$Me.prototype.get = function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
if (typeof params === 'function') {
callback = params;
params = {};
}
options = options || {};
var rootUrl = options.rootUrl || 'https://www.googleapis.com/';
var parameters = {
options: Object.assign({
url: (rootUrl + '/userinfo/v2/me').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: this.getRoot()
};
if (callback) {
apirequest_1.createAPIRequest(parameters, callback);
}
else {
return apirequest_1.createAPIRequest(parameters);
}
};
return Resource$Userinfo$V2$Me;
}());
exports.Resource$Userinfo$V2$Me = Resource$Userinfo$V2$Me;
//# sourceMappingURL=v2.js.map