-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add sample for using cloud storage api.
- Loading branch information
Jerjou Cheng
committed
Aug 14, 2015
1 parent
bc52aa7
commit 81dd1f1
Showing
8 changed files
with
123 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"camelcase" : true, | ||
"indent" : 2, | ||
"strict" : true, | ||
"globalstrict" : true, | ||
"node" : true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/** | ||
* @fileoverview Sample code that grabs default credentials from the | ||
* environment, then uses it to make an api call. | ||
*/ | ||
|
||
var google = require('googleapis'); | ||
|
||
/** | ||
* Fetches a list of the buckets under the given project id. | ||
* | ||
* @param {String} projectId - the project id that owns the buckets. | ||
* @param {requestCallback} callback - a function to be called when the server | ||
* responds with the list of buckets. | ||
*/ | ||
// [START list_buckets] | ||
function listBuckets(projectId, callback) { | ||
google.auth.getApplicationDefault(function(error, authClient) { | ||
if (error) { | ||
return callback(error); | ||
} | ||
|
||
// Depending on the environment that provides the default credentials | ||
// (eg Compute Engine, App Engine), the credentials may require us to | ||
// specify the scopes we need explicitly. | ||
// Check for this case, and inject the Cloud Storage scope if required. | ||
if (authClient.createScopedRequired && | ||
authClient.createScopedRequired()) { | ||
authClient = authClient.createScoped( | ||
['https://www.googleapis.com/auth/devstorage.read_write']); | ||
} | ||
|
||
// Create the service object. | ||
var storage = google.storage('v1'); | ||
// Make the api call to list the buckets. | ||
storage.buckets.list({ | ||
auth: authClient, | ||
project: projectId | ||
}, callback); | ||
}); | ||
} | ||
// [END list_buckets] | ||
|
||
module.exports = { | ||
listBuckets: listBuckets | ||
}; | ||
|
||
/** | ||
* Callback for remote requests. | ||
* | ||
* @callback requestCallback | ||
* @param {Object} error - if there's an error with the request, this is pass | ||
* through to the callback. | ||
* @param {Object} response - the response for the request. | ||
*/ |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "nodejs-docs-samples", | ||
"version": "0.0.1", | ||
"description": "Samples used in the nodejs documentation on cloud.google.com", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "mocha --recursive" | ||
}, | ||
"author": "jerjou@google.com", | ||
"license": "Apache 2", | ||
"dependencies": { | ||
"googleapis": "~2.1.3" | ||
}, | ||
"devDependencies": { | ||
"mocha": "~2.2.5", | ||
"lodash": "~3.10.1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/GoogleCloudPlatform/python-docs-samples.git" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/** | ||
* @fileoverview Tests for the list-buckets module. | ||
*/ | ||
|
||
var assert = require("assert"); | ||
var _ = require('lodash'); | ||
|
||
var authSample = require("../../cloud-storage/authSample"); | ||
|
||
describe('listBuckets', function() { | ||
it('returns a list of buckets', function (done) { | ||
authSample.listBuckets( | ||
process.env.TEST_PROJECT_ID, | ||
function(error, success) { | ||
if (error) { | ||
done('Should not have returned an error: ' + error); | ||
} else { | ||
assert(success.items.length > 0); | ||
assert(_.find(success.items, function(item) { | ||
return item.name == process.env.TEST_BUCKET_NAME; | ||
})); | ||
done(); | ||
} | ||
}); | ||
}); | ||
}); | ||
|