googleapis.js
3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
"use strict";
// Copyright 2012-2016, Google, Inc.
// 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 });
const apis = require("./apis");
const googleapis_common_1 = require("googleapis-common");
exports.AuthPlus = googleapis_common_1.AuthPlus;
class GoogleApis extends apis.GeneratedAPIs {
/**
* GoogleApis constructor.
*
* @example
* const GoogleApis = require('googleapis').GoogleApis;
* const google = new GoogleApis();
*
* @class GoogleApis
* @param {Object} [options] Configuration options.
*/
constructor(options) {
super();
this._discovery = new googleapis_common_1.Discovery({ debug: false, includePrivate: false });
this.auth = new googleapis_common_1.AuthPlus();
this._options = {};
this.options(options);
}
/**
* Obtain a Map of supported APIs, along with included API versions.
*/
getSupportedAPIs() {
const apiMap = {};
Object.keys(apis.APIS).forEach(a => {
apiMap[a] = Object.keys(apis.APIS[a]);
});
return apiMap;
}
/**
* Set options.
*
* @param {Object} [options] Configuration options.
*/
options(options) {
this._options = options || {};
}
/**
* Add APIs endpoints to googleapis object
* E.g. googleapis.drive and googleapis.datastore
*
* @name GoogleApis#addAPIs
* @method
* @param {Object} apis Apis to be added to this GoogleApis instance.
* @private
*/
addAPIs(apisToAdd) {
for (const apiName in apisToAdd) {
if (apisToAdd.hasOwnProperty(apiName)) {
// tslint:disable-next-line: no-any
this[apiName] = apisToAdd[apiName].bind(this);
}
}
}
discover(url, callback) {
if (callback) {
this.discoverAsync(url)
.then(() => callback())
.catch(callback);
}
else {
return this.discoverAsync(url);
}
}
async discoverAsync(url) {
const allApis = await this._discovery.discoverAllAPIs(url);
this.addAPIs(allApis);
}
/**
* Dynamically generate an Endpoint object from a discovery doc.
*
* @param path Url or file path to discover doc for a single API.
* @param Options to configure the Endpoint object generated from the
* discovery doc.
* @returns A promise that resolves with the configured endpoint.
*/
async discoverAPI(apiPath, options = {}) {
const endpointCreator = await this._discovery.discoverAPI(apiPath);
const ep = endpointCreator(options, this);
ep.google = this; // for drive.google.transporter
return Object.freeze(ep);
}
}
exports.GoogleApis = GoogleApis;
//# sourceMappingURL=googleapis.js.map