Initial commit
This commit is contained in:
+44
@@ -0,0 +1,44 @@
|
||||
/*! firebase-admin v10.0.1 */
|
||||
/*!
|
||||
* Copyright 2020 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.
|
||||
*/
|
||||
/**
|
||||
* Cloud Storage for Firebase.
|
||||
*
|
||||
* @packageDocumentation
|
||||
*/
|
||||
import { App } from '../app';
|
||||
import { Storage } from './storage';
|
||||
export { Storage } from './storage';
|
||||
/**
|
||||
* Gets the {@link Storage} service for the default app or a given app.
|
||||
*
|
||||
* `getStorage()` can be called with no arguments to access the default
|
||||
* app's `Storage` service or as `getStorage(app)` to access the
|
||||
* `Storage` service associated with a specific app.
|
||||
*
|
||||
* @example
|
||||
* ```javascript
|
||||
* // Get the Storage service for the default app
|
||||
* const defaultStorage = getStorage();
|
||||
* ```
|
||||
*
|
||||
* @example
|
||||
* ```javascript
|
||||
* // Get the Storage service for a given app
|
||||
* const otherStorage = getStorage(otherApp);
|
||||
* ```
|
||||
*/
|
||||
export declare function getStorage(app?: App): Storage;
|
||||
+55
@@ -0,0 +1,55 @@
|
||||
/*! firebase-admin v10.0.1 */
|
||||
"use strict";
|
||||
/*!
|
||||
* Copyright 2020 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 });
|
||||
exports.getStorage = void 0;
|
||||
/**
|
||||
* Cloud Storage for Firebase.
|
||||
*
|
||||
* @packageDocumentation
|
||||
*/
|
||||
var app_1 = require("../app");
|
||||
var storage_1 = require("./storage");
|
||||
var storage_2 = require("./storage");
|
||||
Object.defineProperty(exports, "Storage", { enumerable: true, get: function () { return storage_2.Storage; } });
|
||||
/**
|
||||
* Gets the {@link Storage} service for the default app or a given app.
|
||||
*
|
||||
* `getStorage()` can be called with no arguments to access the default
|
||||
* app's `Storage` service or as `getStorage(app)` to access the
|
||||
* `Storage` service associated with a specific app.
|
||||
*
|
||||
* @example
|
||||
* ```javascript
|
||||
* // Get the Storage service for the default app
|
||||
* const defaultStorage = getStorage();
|
||||
* ```
|
||||
*
|
||||
* @example
|
||||
* ```javascript
|
||||
* // Get the Storage service for a given app
|
||||
* const otherStorage = getStorage(otherApp);
|
||||
* ```
|
||||
*/
|
||||
function getStorage(app) {
|
||||
if (typeof app === 'undefined') {
|
||||
app = app_1.getApp();
|
||||
}
|
||||
var firebaseApp = app;
|
||||
return firebaseApp.getOrInitService('storage', function (app) { return new storage_1.Storage(app); });
|
||||
}
|
||||
exports.getStorage = getStorage;
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
/*! firebase-admin v10.0.1 */
|
||||
/*!
|
||||
* Copyright 2021 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.
|
||||
*/
|
||||
import { App } from '../app';
|
||||
import { Storage as TStorage } from './storage';
|
||||
/**
|
||||
* Gets the {@link firebase-admin.storage#Storage} service for the
|
||||
* default app or a given app.
|
||||
*
|
||||
* `admin.storage()` can be called with no arguments to access the default
|
||||
* app's `Storage` service or as `admin.storage(app)` to access the
|
||||
* `Storage` service associated with a specific app.
|
||||
*
|
||||
* @example
|
||||
* ```javascript
|
||||
* // Get the Storage service for the default app
|
||||
* var defaultStorage = admin.storage();
|
||||
* ```
|
||||
*
|
||||
* @example
|
||||
* ```javascript
|
||||
* // Get the Storage service for a given app
|
||||
* var otherStorage = admin.storage(otherApp);
|
||||
* ```
|
||||
*/
|
||||
export declare function storage(app?: App): storage.Storage;
|
||||
export declare namespace storage {
|
||||
/**
|
||||
* Type alias to {@link firebase-admin.storage#Storage}.
|
||||
*/
|
||||
type Storage = TStorage;
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
/*! firebase-admin v10.0.1 */
|
||||
"use strict";
|
||||
/*!
|
||||
* Copyright 2021 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 });
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
/*! firebase-admin v10.0.1 */
|
||||
/*!
|
||||
* @license
|
||||
* Copyright 2017 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.
|
||||
*/
|
||||
import { App } from '../app';
|
||||
import { Bucket } from '@google-cloud/storage';
|
||||
/**
|
||||
* The default `Storage` service if no
|
||||
* app is provided or the `Storage` service associated with the provided
|
||||
* app.
|
||||
*/
|
||||
export declare class Storage {
|
||||
private readonly appInternal;
|
||||
private readonly storageClient;
|
||||
/**
|
||||
* Gets a reference to a Cloud Storage bucket.
|
||||
*
|
||||
* @param name - Optional name of the bucket to be retrieved. If name is not specified,
|
||||
* retrieves a reference to the default bucket.
|
||||
* @returns A {@link https://cloud.google.com/nodejs/docs/reference/storage/latest/Bucket | Bucket}
|
||||
* instance as defined in the `@google-cloud/storage` package.
|
||||
*/
|
||||
bucket(name?: string): Bucket;
|
||||
/**
|
||||
* Optional app whose `Storage` service to
|
||||
* return. If not provided, the default `Storage` service will be returned.
|
||||
*/
|
||||
get app(): App;
|
||||
}
|
||||
+126
@@ -0,0 +1,126 @@
|
||||
/*! firebase-admin v10.0.1 */
|
||||
"use strict";
|
||||
/*!
|
||||
* @license
|
||||
* Copyright 2017 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 });
|
||||
exports.Storage = void 0;
|
||||
var error_1 = require("../utils/error");
|
||||
var credential_internal_1 = require("../app/credential-internal");
|
||||
var utils = require("../utils/index");
|
||||
var validator = require("../utils/validator");
|
||||
/**
|
||||
* The default `Storage` service if no
|
||||
* app is provided or the `Storage` service associated with the provided
|
||||
* app.
|
||||
*/
|
||||
var Storage = /** @class */ (function () {
|
||||
/**
|
||||
* @param app - The app for this Storage service.
|
||||
* @constructor
|
||||
* @internal
|
||||
*/
|
||||
function Storage(app) {
|
||||
if (!validator.isNonNullObject(app) || !('options' in app)) {
|
||||
throw new error_1.FirebaseError({
|
||||
code: 'storage/invalid-argument',
|
||||
message: 'First argument passed to admin.storage() must be a valid Firebase app instance.',
|
||||
});
|
||||
}
|
||||
if (!process.env.STORAGE_EMULATOR_HOST && process.env.FIREBASE_STORAGE_EMULATOR_HOST) {
|
||||
var firebaseStorageEmulatorHost = process.env.FIREBASE_STORAGE_EMULATOR_HOST;
|
||||
if (firebaseStorageEmulatorHost.match(/https?:\/\//)) {
|
||||
throw new error_1.FirebaseError({
|
||||
code: 'storage/invalid-emulator-host',
|
||||
message: 'FIREBASE_STORAGE_EMULATOR_HOST should not contain a protocol (http or https).',
|
||||
});
|
||||
}
|
||||
process.env.STORAGE_EMULATOR_HOST = "http://" + process.env.FIREBASE_STORAGE_EMULATOR_HOST;
|
||||
}
|
||||
var storage;
|
||||
try {
|
||||
storage = require('@google-cloud/storage').Storage;
|
||||
}
|
||||
catch (err) {
|
||||
throw new error_1.FirebaseError({
|
||||
code: 'storage/missing-dependencies',
|
||||
message: 'Failed to import the Cloud Storage client library for Node.js. '
|
||||
+ 'Make sure to install the "@google-cloud/storage" npm package. '
|
||||
+ ("Original error: " + err),
|
||||
});
|
||||
}
|
||||
var projectId = utils.getExplicitProjectId(app);
|
||||
var credential = app.options.credential;
|
||||
if (credential instanceof credential_internal_1.ServiceAccountCredential) {
|
||||
this.storageClient = new storage({
|
||||
// When the SDK is initialized with ServiceAccountCredentials an explicit projectId is
|
||||
// guaranteed to be available.
|
||||
projectId: projectId,
|
||||
credentials: {
|
||||
private_key: credential.privateKey,
|
||||
client_email: credential.clientEmail,
|
||||
},
|
||||
});
|
||||
}
|
||||
else if (credential_internal_1.isApplicationDefault(app.options.credential)) {
|
||||
// Try to use the Google application default credentials.
|
||||
this.storageClient = new storage();
|
||||
}
|
||||
else {
|
||||
throw new error_1.FirebaseError({
|
||||
code: 'storage/invalid-credential',
|
||||
message: 'Failed to initialize Google Cloud Storage client with the available credential. ' +
|
||||
'Must initialize the SDK with a certificate credential or application default credentials ' +
|
||||
'to use Cloud Storage API.',
|
||||
});
|
||||
}
|
||||
this.appInternal = app;
|
||||
}
|
||||
/**
|
||||
* Gets a reference to a Cloud Storage bucket.
|
||||
*
|
||||
* @param name - Optional name of the bucket to be retrieved. If name is not specified,
|
||||
* retrieves a reference to the default bucket.
|
||||
* @returns A {@link https://cloud.google.com/nodejs/docs/reference/storage/latest/Bucket | Bucket}
|
||||
* instance as defined in the `@google-cloud/storage` package.
|
||||
*/
|
||||
Storage.prototype.bucket = function (name) {
|
||||
var bucketName = (typeof name !== 'undefined')
|
||||
? name : this.appInternal.options.storageBucket;
|
||||
if (validator.isNonEmptyString(bucketName)) {
|
||||
return this.storageClient.bucket(bucketName);
|
||||
}
|
||||
throw new error_1.FirebaseError({
|
||||
code: 'storage/invalid-argument',
|
||||
message: 'Bucket name not specified or invalid. Specify a valid bucket name via the ' +
|
||||
'storageBucket option when initializing the app, or specify the bucket name ' +
|
||||
'explicitly when calling the getBucket() method.',
|
||||
});
|
||||
};
|
||||
Object.defineProperty(Storage.prototype, "app", {
|
||||
/**
|
||||
* Optional app whose `Storage` service to
|
||||
* return. If not provided, the default `Storage` service will be returned.
|
||||
*/
|
||||
get: function () {
|
||||
return this.appInternal;
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
return Storage;
|
||||
}());
|
||||
exports.Storage = Storage;
|
||||
Reference in New Issue
Block a user