forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfiles.js
More file actions
386 lines (342 loc) · 10.8 KB
/
Copy pathfiles.js
File metadata and controls
386 lines (342 loc) · 10.8 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
// Copyright 2015-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.
'use strict';
// [START all]
// [START setup]
// By default, gcloud will authenticate using the service account file specified
// by the GOOGLE_APPLICATION_CREDENTIALS environment variable and use the
// project specified by the GCLOUD_PROJECT environment variable. See
// https://googlecloudplatform.github.io/gcloud-node/#/docs/guides/authentication
var gcloud = require('gcloud');
// Get a reference to the storage component
var storage = gcloud.storage();
// [END setup]
// [START list]
/**
* Lists files in a bucket.
*
* @param {string} name The name of the bucket.
* @param {function} cb The callback function.
*/
function listFiles (name, callback) {
if (!name) {
return callback(new Error('"name" is required!'));
}
var bucket = storage.bucket(name);
bucket.getFiles(function (err, files, apiResponse) {
if (err) {
return callback(err);
}
console.log('Found %d files!', files.length);
return callback(null, files);
});
}
// [END list]
// [START listPrefix]
/**
* Lists files in a bucket that match a certain prefix.
*
* This can be used to list all blobs in a "folder", e.g. "public/".
*
* The delimiter argument can be used to restrict the results to only the
* "files" in the given "folder". Without the delimiter, the entire tree under
* the prefix is returned. For example, given these blobs:
*
* /a/1.txt
* /a/b/2.txt
*
* If you just specify prefix = '/a', you'll get back:
*
* /a/1.txt
* /a/b/2.txt
*
* However, if you specify prefix='/a' and delimiter='/', you'll get back:
*
* /a/1.txt
*
* @param {string} name The name of the bucket.
* @param {string} prefix Filter results to objects whose names begin with this prefix.
* @param {string} [delimiter] Results will contain only objects whose names, aside from the prefix, do not contain delimiter.
* @param {function} cb The callback function.
*/
function listFilesWithPrefix (name, prefix, delimiter, callback) {
if (!name) {
return callback(new Error('"name" is required!'));
} else if (!prefix) {
return callback(new Error('"prefix" is required!'));
}
var bucket = storage.bucket(name);
var options = {
prefix: prefix
};
if (delimiter && typeof delimiter === 'string') {
options.delimiter = delimiter;
}
bucket.getFiles(options, function (err, files, apiResponse) {
if (err) {
return callback(err);
}
console.log('Found %d files!', files.length);
return callback(null, files);
});
}
// [END listPrefix]
// [START upload]
/**
* Upload a file to a bucket.
*
* @param {string} name The name of the bucket.
* @param {string} fileName The name of the file.
* @param {function} cb The callback function.
*/
function uploadFile (name, fileName, callback) {
if (!name) {
return callback(new Error('"name" is required!'));
} else if (!fileName) {
return callback(new Error('"fileName" is required!'));
}
var bucket = storage.bucket(name);
bucket.upload(fileName, function (err, file) {
if (err) {
return callback(err);
}
console.log('Uploaded file: %s', fileName);
return callback(null, file);
});
}
// [END upload]
// [START download]
/**
* Download a file from a bucket.
*
* @param {string} name The name of the bucket.
* @param {string} srcFileName The source file name.
* @param {string} destFileName The destination file name.
* @param {function} cb The callback function.
*/
function downloadFile (name, srcFileName, destFileName, callback) {
if (!name) {
return callback(new Error('"name" is required!'));
} else if (!srcFileName) {
return callback(new Error('"srcFileName" is required!'));
} else if (!destFileName) {
return callback(new Error('"destFileName" is required!'));
}
var bucket = storage.bucket(name);
var file = bucket.file(srcFileName);
var options = {
destination: destFileName
};
file.download(options, function (err) {
if (err) {
return callback(err);
}
console.log('Downloaded %s to %s', srcFileName, destFileName);
return callback(null);
});
}
// [END download]
// [START delete]
/**
* Delete a file from a bucket.
*
* @param {string} name The name of the bucket.
* @param {string} fileName The file to delete.
* @param {function} cb The callback function.
*/
function deleteFile (name, fileName, callback) {
if (!name) {
return callback(new Error('"name" is required!'));
} else if (!fileName) {
return callback(new Error('"fileName" is required!'));
}
var bucket = storage.bucket(name);
var file = bucket.file(fileName);
file.delete(function (err) {
if (err) {
return callback(err);
}
console.log('Deleted file: %s', fileName);
return callback(null);
});
}
// [END delete]
// [START metadata]
/**
* Get a file's metadata.
*
* @param {string} name The name of the bucket.
* @param {string} fileName The name of the file.
* @param {function} cb The callback function.
*/
function getMetadata (name, fileName, callback) {
if (!name) {
return callback(new Error('"name" is required!'));
} else if (!fileName) {
return callback(new Error('"fileName" is required!'));
}
var bucket = storage.bucket(name);
var file = bucket.file(fileName);
file.getMetadata(function (err, metadata) {
if (err) {
return callback(err);
}
console.log('Got metadata for file: %s', fileName);
return callback(null, metadata);
});
}
// [END metadata]
// [START public]
/**
* Make a file public.
*
* @param {string} name The name of the bucket.
* @param {string} fileName The name of the file to make public.
* @param {function} cb The callback function.
*/
function makePublic (name, fileName, callback) {
if (!name) {
return callback(new Error('"name" is required!'));
} else if (!fileName) {
return callback(new Error('"fileName" is required!'));
}
var bucket = storage.bucket(name);
var file = bucket.file(fileName);
file.makePublic(function (err, apiResponse) {
if (err) {
return callback(err);
}
console.log('Made %s public!', fileName);
return callback(null, apiResponse);
});
}
// [END public]
// [START move]
/**
* Move a file to a new location within the same bucket.
*
* @param {string} name The name of the bucket.
* @param {string} srcFileName The source file name.
* @param {string} destFileName The destination file name.
* @param {function} cb The callback function.
*/
function moveFile (name, srcFileName, destFileName, callback) {
if (!name) {
return callback(new Error('"name" is required!'));
} else if (!srcFileName) {
return callback(new Error('"srcFileName" is required!'));
} else if (!destFileName) {
return callback(new Error('"destFileName" is required!'));
}
var bucket = storage.bucket(name);
var file = bucket.file(srcFileName);
file.move(destFileName, function (err, file) {
if (err) {
return callback(err);
}
console.log('%s moved to %s', srcFileName, destFileName);
return callback(null, file);
});
}
// [END move]
// [START copy]
/**
* Copy a file to a new bucket with a new name.
*
* @param {string} name The name of the bucket.
* @param {string} srcFileName The source file name.
* @param {string} destBucketName The destination bucket name.
* @param {string} destFileName The destination file name.
* @param {function} cb The callback function.
*/
function copyFile (name, srcFileName, destBucketName, destFileName, callback) {
if (!name) {
return callback(new Error('"name" is required!'));
} else if (!srcFileName) {
return callback(new Error('"srcFileName" is required!'));
} else if (!destBucketName) {
return callback(new Error('"destBucketName" is required!'));
} else if (!destFileName) {
return callback(new Error('"destFileName" is required!'));
}
var bucket = storage.bucket(name);
var file = bucket.file(srcFileName);
var newBucket = storage.bucket(destBucketName);
var newFile = newBucket.file(destFileName);
file.move(newFile, function (err, file) {
if (err) {
return callback(err);
}
console.log('%s moved to %s in %s', srcFileName, destFileName, destBucketName);
return callback(null, file);
});
}
// [END copy]
// [START usage]
function printUsage () {
console.log('Usage: node files [COMMAND] [ARGS...]');
console.log('\nCommands:\n');
console.log('\tlist [BUCKET_NAME]');
console.log('\tlistByPrefix [BUCKET_NAME] [PREFIX] [DELIMITER]');
console.log('\tupload [BUCKET_NAME] [FILE_NAME]');
console.log('\tdownload [BUCKET_NAME] [SRC_FILE_NAME] [DEST_FILE_NAME]');
console.log('\tdelete [BUCKET_NAME] [FILE_NAME]');
console.log('\tgetMetadata [BUCKET_NAME] [FILE_NAME]');
console.log('\tmakePublic [BUCKET_NAME] [FILE_NAME]');
console.log('\tmove [BUCKET_NAME] [SRC_FILE_NAME] [DEST_FILE_NAME]');
console.log('\tcopy [BUCKET_NAME] [SRC_FILE_NAME] [DEST_BUCKET_NAME] [DEST_FILE_NAME]');
}
// [END usage]
// The command-line program
var program = {
listFiles: listFiles,
listFilesWithPrefix: listFilesWithPrefix,
uploadFile: uploadFile,
downloadFile: downloadFile,
deleteFile: deleteFile,
getMetadata: getMetadata,
makePublic: makePublic,
moveFile: moveFile,
copyFile: copyFile,
printUsage: printUsage,
// Executed when this program is run from the command-line
main: function (args, cb) {
var command = args.shift();
if (command === 'list') {
this.listFiles(args[0], cb);
} else if (command === 'listByPrefix') {
this.listFilesWithPrefix(args[0], args[1], args[2], cb);
} else if (command === 'upload') {
this.uploadFile(args[0], args[1], cb);
} else if (command === 'download') {
this.downloadFile(args[0], args[1], args[2], cb);
} else if (command === 'delete') {
this.deleteFile(args[0], args[1], cb);
} else if (command === 'getMetadata') {
this.getMetadata(args[0], args[1], cb);
} else if (command === 'makePublic') {
this.makePublic(args[0], args[1], cb);
} else if (command === 'move') {
this.moveFile(args[0], args[1], args[2], cb);
} else if (command === 'copy') {
this.copyFile(args[0], args[1], args[2], args[3], cb);
} else {
this.printUsage();
}
}
};
if (module === require.main) {
program.main(process.argv.slice(2), console.log);
}
// [END all]
module.exports = program;