-
Notifications
You must be signed in to change notification settings - Fork 592
/
file.js
1096 lines (965 loc) · 32 KB
/
file.js
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*!
* Copyright 2014 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.
*/
/*!
* @module storage/file
*/
'use strict';
var bufferEqual = require('buffer-equal');
var ConfigStore = require('configstore');
var crc = require('fast-crc32c');
var crypto = require('crypto');
var duplexify = require('duplexify');
var fs = require('fs');
var once = require('once');
var request = require('request');
var streamEvents = require('stream-events');
var through = require('through2');
/**
* @type {module:storage/acl}
* @private
*/
var Acl = require('./acl.js');
/**
* @type {module:common/util}
* @private
*/
var util = require('../common/util.js');
/**
* @const {string}
* @private
*/
var STORAGE_UPLOAD_BASE_URL = 'https://www.googleapis.com/upload/storage/v1/b';
/*! Developer Documentation
*
* @param {module:storage/bucket} bucket - The Bucket instance this file is
* attached to.
* @param {string} name - The name of the remote file.
* @param {object=} metadata - Metadata to set on the object. This is useful
* when you are creating a file for the first time, to prevent making an
* extra call to `setMetadata`.
*/
/**
* A File object is created from your Bucket object using
* {module:storage/bucket#file}.
*
* @alias module:storage/file
* @constructor
*/
function File(bucket, name, metadata) {
if (!name) {
throw Error('A file name must be specified.');
}
this.bucket = bucket;
this.makeReq_ = bucket.makeReq_.bind(bucket);
this.metadata = metadata || {};
Object.defineProperty(this, 'name', {
enumerable: true,
value: name
});
/**
* Google Cloud Storage uses access control lists (ACLs) to manage object and
* bucket access. ACLs are the mechanism you use to share objects with other
* users and allow other users to access your buckets and objects.
*
* An ACL consists of one or more entries, where each entry grants permissions
* to a scope. Permissions define the actions that can be performed against an
* object or bucket (for example, `READ` or `WRITE`); the scope defines who
* the permission applies to (for example, a specific user or group of users).
*
* For more detailed information, see
* [About Access Control Lists](http://goo.gl/6qBBPO).
*
* The `acl` object on a File instance provides methods to get you a list of
* the ACLs defined on your bucket, as well as set, update, and delete them.
*
* @mixes module:storage/acl
*
* @example
* //-
* // Make a file publicly readable.
* //-
* myFile.acl.add({
* scope: 'allUsers',
* permission: storage.acl.READER_ROLE
* }, function(err, aclObject) {});
*/
this.acl = new Acl({
makeReq: this.makeReq_,
pathPrefix: '/o/' + encodeURIComponent(this.name) + '/acl'
});
}
/**
* Copy this file to another file. By default, this will copy the file to the
* same bucket, but you can choose to copy it to another Bucket by providing
* either a Bucket or File object.
*
* @throws {Error} If the destination file is not provided.
*
* @param {string|{module:storage/bucket}|{module:storage/file}} destination -
* Destination file.
* @param {function=} callback - The callback function.
*
* @example
* //-
* // You can pass in a variety of types for the destination.
* //
* // For all of the below examples, assume we are working with the following
* // Bucket and File objects.
* //-
* var bucket = storage.bucket('my-bucket');
* var file = bucket.file('my-image.png');
*
* //-
* // If you pass in a string for the destination, the file is copied to its
* // current bucket, under the new name provided.
* //-
* file.copy('my-image-copy.png', function(err, copiedFile) {
* // `my-bucket` now contains:
* // - "my-image.png"
* // - "my-image-copy.png"
*
* // `copiedFile` is an instance of a File object that refers to your new
* // file.
* });
*
* //-
* // If you pass in a Bucket object, the file will be copied to that bucket
* // using the same name.
* //-
* var anotherBucket = storage.bucket('another-bucket');
* file.copy(anotherBucket, function(err, copiedFile) {
* // `my-bucket` still contains:
* // - "my-image.png"
* //
* // `another-bucket` now contains:
* // - "my-image.png"
*
* // `copiedFile` is an instance of a File object that refers to your new
* // file.
* });
*
* //-
* // If you pass in a File object, you have complete control over the new
* // bucket and filename.
* //-
* var anotherFile = anotherBucket.file('my-awesome-image.png');
* file.copy(anotherFile, function(err, copiedFile) {
* // `my-bucket` still contains:
* // - "my-image.png"
* //
* // `another-bucket` now contains:
* // - "my-awesome-image.png"
*
* // Note:
* // The `copiedFile` parameter is equal to `anotherFile`.
* });
*/
File.prototype.copy = function(destination, callback) {
var noDestinationError = new Error('Destination file should have a name.');
if (!destination) {
throw noDestinationError;
}
callback = callback || util.noop;
var destBucket;
var destName;
var newFile;
if (util.is(destination, 'string')) {
destBucket = this.bucket;
destName = destination;
}
if (destination.constructor && destination.constructor.name === 'Bucket') {
destBucket = destination;
destName = this.name;
}
if (destination instanceof File) {
destBucket = destination.bucket;
destName = destination.name;
newFile = destination;
}
if (!destName) {
throw noDestinationError;
}
var path = util.format('/o/{srcName}/copyTo/b/{destBucket}/o/{destName}', {
srcName: encodeURIComponent(this.name),
destBucket: destBucket.name,
destName: encodeURIComponent(destName)
});
this.makeReq_('POST', path, null, {}, function(err) {
if (err) {
callback(err);
return;
}
callback(null, newFile || destBucket.file(destName));
});
};
/**
* Create a readable stream to read the contents of the remote file. It can be
* piped to a writable stream or listened to for 'data' events to read a file's
* contents.
*
* In the unlikely event there is a mismatch between what you downloaded and the
* version in your Bucket, your error handler will receive an error with code
* "CONTENT_DOWNLOAD_MISMATCH". If you receive this error, the best recourse is
* to try downloading the file again.
*
* @param {object=} options - Configuration object.
* @param {string|boolean} options.validation - Possible values: `"md5"`,
* `"crc32c"`, or `false`. By default, data integrity is validated with an
* MD5 checksum for maximum reliability, falling back to CRC32c when an MD5
* hash wasn't returned from the API. CRC32c will provide better performance
* with less reliability. You may also choose to skip validation completely,
* however this is **not recommended**.
* @param {number} options.start - A byte offset to begin the file's download
* from. Default is 0. NOTE: Byte ranges are inclusive; that is,
* `options.start = 0` and `options.end = 999` represent the first 1000
* bytes in a file or object. NOTE: when specifying a byte range, data
* integrity is not available.
* @param {number} options.end - A byte offset to stop reading the file at.
* NOTE: Byte ranges are inclusive; that is, `options.start = 0` and
* `options.end = 999` represent the first 1000 bytes in a file or object.
* NOTE: when specifying a byte range, data integrity is not available.
*
* @example
* //-
* // <h4>Downloading a File</h4>
* //
* // The example below demonstrates how we can reference a remote file, then
* // pipe its contents to a local file. This is effectively creating a local
* // backup of your remote data.
* //-
* var fs = require('fs');
* var image = myBucket.file('image.png');
*
* image.createReadStream()
* .pipe(fs.createWriteStream('/Users/stephen/Photos/image.png'))
* .on('error', function(err) {});
*
* //-
* // To limit the downloaded data to only a byte range, pass an options object.
* //-
* var logFile = myBucket.file('access_log');
* logFile.createReadStream({
* start: 10000,
* end: 20000
* })
* .pipe(fs.createWriteStream('/Users/stephen/logfile.txt'))
* .on('error', function(err) {});
*/
File.prototype.createReadStream = function(options) {
options = options || {};
var that = this;
var rangeRequest =
util.is(options.start, 'number') || util.is(options.end, 'number');
var throughStream = streamEvents(through());
var validations = ['crc32c', 'md5'];
var validation;
if (util.is(options.validation, 'string')) {
options.validation = options.validation.toLowerCase();
if (validations.indexOf(options.validation) > -1) {
validation = options.validation;
} else {
validation = 'all';
}
}
if (util.is(options.validation, 'undefined')) {
validation = 'all';
}
if (rangeRequest) {
validation = false;
}
var crc32c = validation === 'crc32c' || validation === 'all';
var md5 = validation === 'md5' || validation === 'all';
if (this.metadata.mediaLink) {
createAuthorizedReq(this.metadata.mediaLink);
} else {
this.getMetadata(function(err, metadata) {
if (err) {
throughStream.emit('error', err);
throughStream.end();
return;
}
createAuthorizedReq(metadata.mediaLink);
});
}
return throughStream;
// Authenticate the request, then pipe the remote API request to the stream
// returned to the user.
function createAuthorizedReq(uri) {
var reqOpts = {
uri: uri
};
if (rangeRequest) {
var start = util.is(options.start, 'number') ? options.start : '0';
var end = util.is(options.end, 'number') ? options.end : '';
reqOpts.headers = {
Range: 'bytes=' + start + '-' + end
};
}
that.bucket.storage.makeAuthorizedRequest_(reqOpts, {
onAuthorized: function(err, authorizedReqOpts) {
if (err) {
throughStream.emit('error', err);
throughStream.end();
return;
}
// For data integrity, hash the contents of the stream as we receive it
// from the server.
var localCrc32cHash;
var localMd5Hash = crypto.createHash('md5');
request(authorizedReqOpts)
.on('error', function(err) {
throughStream.emit('error', err);
throughStream.end();
})
.on('data', function(chunk) {
if (crc32c) {
localCrc32cHash = crc.calculate(chunk, localCrc32cHash);
}
if (md5) {
localMd5Hash.update(chunk);
}
})
.on('complete', function(res) {
if (rangeRequest) {
// Range requests can't receive data integrity checks.
throughStream.emit('complete', res);
throughStream.end();
return;
}
var failed = false;
var crcFail = true;
var md5Fail = true;
var hashes = {};
res.headers['x-goog-hash'].split(',').forEach(function(hash) {
var hashType = hash.split('=')[0];
hashes[hashType] = hash.substr(hash.indexOf('=') + 1);
});
var remoteMd5 = hashes.md5;
var remoteCrc = hashes.crc32c && hashes.crc32c.substr(4);
if (crc32c) {
crcFail =
new Buffer([localCrc32cHash]).toString('base64') !== remoteCrc;
failed = crcFail;
}
if (md5) {
md5Fail = localMd5Hash.digest('base64') !== remoteMd5;
failed = md5Fail;
}
if (validation === 'all') {
failed = remoteMd5 ? md5Fail : crcFail;
}
if (failed) {
var error = new Error([
'The downloaded data did not match the data from the server.',
'To be sure the content is the same, you should download the',
'file again.'
].join(' '));
error.code = 'CONTENT_DOWNLOAD_MISMATCH';
throughStream.emit('error', error);
} else {
throughStream.emit('complete', res);
}
throughStream.end();
})
.pipe(throughStream);
}
});
}
};
/**
* Create a writable stream to overwrite the contents of the file in your
* bucket.
*
* A File object can also be used to create files for the first time.
*
* @param {object=} options - Configuration object.
* @param {object=} options.metadata - Set the metadata for this file.
* @param {boolean=} options.resumable - Force a resumable upload. NOTE: When
* working with streams, the file format and size is unknown until it's
* completely consumed. Because of this, it's best for you to be explicit
* for what makes sense given your input. Read more about resumable uploads
* [here](http://goo.gl/1JWqCF).
* @param {string|boolean} options.validation - Possible values: `"md5"`,
* `"crc32c"`, or `false`. By default, data integrity is validated with an
* MD5 checksum for maximum reliability. CRC32c will provide better
* performance with less reliability. You may also choose to skip validation
* completely, however this is **not recommended**.
*
* @example
* //-
* // <h4>Uploading a File</h4>
* //
* // Now, consider a case where we want to upload a file to your bucket. You
* // have the option of using {module:storage/bucket#upload}, but that is just
* // a convenience method which will do the following.
* //-
* var fs = require('fs');
* var image = myBucket.file('image.png');
*
* fs.createReadStream('/Users/stephen/Photos/birthday-at-the-zoo/panda.jpg')
* .pipe(image.createWriteStream())
* .on('error', function(err) {});
*
* //-
* // <h4>Uploading a File with Metadata</h4>
* //
* // One last case you may run into is when you want to upload a file to your
* // bucket and set its metadata at the same time. Like above, you can use
* // {module:storage/bucket#upload} to do this, which is just a wrapper around
* // the following.
* //-
* var fs = require('fs');
* var image = myBucket.file('image.png');
*
* fs.createReadStream('/Users/stephen/Photos/birthday-at-the-zoo/panda.jpg')
* .pipe(image.createWriteStream({
* metadata: contentType: 'image/jpeg'
* }))
* .on('error', function(err) {});
*/
File.prototype.createWriteStream = function(options) {
options = options || {};
var that = this;
var metadata = options.metadata || {};
var validations = ['crc32c', 'md5'];
var validation;
if (util.is(options.validation, 'string')) {
options.validation = options.validation.toLowerCase();
if (validations.indexOf(options.validation) > -1) {
validation = options.validation;
} else {
validation = 'all';
}
}
if (util.is(options.validation, 'undefined')) {
validation = 'all';
}
var crc32c = validation === 'crc32c' || validation === 'all';
var md5 = validation === 'md5' || validation === 'all';
// Collect data as it comes in to store in a hash. This is compared to the
// checksum value on the returned metadata from the API.
var localCrc32cHash;
var localMd5Hash = crypto.createHash('md5');
var dup = streamEvents(duplexify());
var throughStream = through(function(chunk, enc, next) {
if (crc32c) {
localCrc32cHash = crc.calculate(chunk, localCrc32cHash);
}
if (md5) {
localMd5Hash.update(chunk);
}
this.push(chunk);
next();
});
throughStream
.on('end', function() {
if (crc32c) {
localCrc32cHash = new Buffer([localCrc32cHash]).toString('base64');
}
if (md5) {
localMd5Hash = localMd5Hash.digest('base64');
}
})
.pipe(dup)
// Wait until we've received data to determine what upload technique to use.
.once('writing', function() {
if (util.is(options.resumable, 'boolean') && !options.resumable) {
that.startSimpleUpload_(dup, metadata);
} else {
that.startResumableUpload_(dup, metadata);
}
})
// Catch any errors from the writable stream and patch them upstream.
.on('error', function(err) {
throughStream.emit('error', err);
throughStream.end();
})
// Compare our hashed version vs the completed upload's version.
.on('complete', function(metadata) {
var failed = false;
// We must remove the first four bytes from the returned checksum.
// http://stackoverflow.com/questions/25096737/
// base64-encoding-of-crc32c-long-value
if (validation === 'all') {
if (metadata.md5Hash) {
failed = localMd5Hash !== metadata.md5Hash;
} else if (metadata.crc32c) {
failed = localCrc32cHash !== metadata.crc32c.substr(4);
}
} else if (md5) {
failed = localMd5Hash !== metadata.md5Hash;
} else if (crc32c) {
failed = localCrc32cHash !== metadata.crc32c.substr(4);
}
if (failed) {
that.delete(function(err) {
var code;
var message;
if (err) {
code = 'FILE_NO_UPLOAD_DELETE';
message = [
'The uploaded data did not match the data from the server. As a',
'precaution, we attempted to delete the file, but it was not',
'successful. To be sure the content is the same, you should try',
'removing the file manually, then uploading the file again.',
'\n\nThe delete attempt failed with this message:',
'\n\n ' + err.message
].join(' ');
} else {
code = 'FILE_NO_UPLOAD';
message = [
'The uploaded data did not match the data from the server. As a',
'precaution, the file has been deleted. To be sure the content',
'is the same, you should try uploading the file again.'
].join(' ');
}
var error = new Error(message);
error.code = code;
error.errors = [err];
throughStream.emit('error', error);
});
} else {
throughStream.emit('complete', metadata);
}
throughStream.end();
});
return throughStream;
};
/**
* Delete the file.
*
* @param {function=} callback - The callback function.
*
* @example
* file.delete(function(err) {});
*/
File.prototype.delete = function(callback) {
callback = callback || util.noop;
var path = '/o/' + encodeURIComponent(this.name);
this.makeReq_('DELETE', path, null, true, function(err) {
if (err) {
callback(err);
return;
}
callback();
}.bind(this));
};
/**
* Convenience method to download a file into memory or to a local destination.
*
* @param {object=} options - Optional configuration. The arguments match those
* passed to {module:storage/file#createReadStream}.
* @param {string} options.destination - Local file path to write the file's
* contents to.
* @param {function} callback - The callback function.
*
* @example
* //-
* // Download a file into memory. The contents will be available as the second
* // argument in the demonstration below, `contents`.
* //-
* file.download(function(err, contents) {});
*
* //-
* // Download a file to a local destination.
* //-
* file.download({
* destination: '/Users/stephen/Desktop/file-backup.txt'
* }, function(err) {});
*/
File.prototype.download = function(options, callback) {
if (util.is(options, 'function')) {
callback = options;
options = {};
}
callback = once(callback);
var destination = options.destination;
delete options.destination;
var fileStream = this.createReadStream(options);
if (destination) {
fileStream
.on('error', callback)
.pipe(fs.createWriteStream(destination))
.on('error', callback)
.on('finish', callback);
} else {
var fileContents = new Buffer('');
fileStream
.on('error', callback)
.on('data', function(chunk) {
fileContents = Buffer.concat([fileContents, chunk]);
})
.on('complete', function() {
callback(null, fileContents);
});
}
};
/**
* Get the file's metadata.
*
* @param {function=} callback - The callback function.
*
* @example
* file.getMetadata(function(err, metadata) {});
*/
File.prototype.getMetadata = function(callback) {
callback = callback || util.noop;
var path = '/o/' + encodeURIComponent(this.name);
this.makeReq_('GET', path, null, true, function(err, resp) {
if (err) {
callback(err);
return;
}
this.metadata = resp;
callback(null, this.metadata);
}.bind(this));
};
/**
* Get a signed URL to allow limited time access to the file.
*
* *[Reference](http://goo.gl/LcqhjU).*
*
* @throws {Error} if an expiration timestamp from the past is given.
*
* @param {object} options - Configuration object.
* @param {string} options.action - "read", "write", or "delete"
* @param {string=} options.contentMd5 - The MD5 digest value in base64. If you
* provide this, the client must provide this HTTP header with this same
* value in its request.
* @param {string=} options.contentType - If you provide this value, the client
* must provide this HTTP header set to the same value.
* @param {number} options.expires - Timestamp (seconds since epoch) when this
* link will expire.
* @param {string=} options.extensionHeaders - If these headers are used, the
* server will check to make sure that the client provides matching values.
*
* @example
* file.getSignedUrl({
* action: 'read',
* expires: Math.round(Date.now() / 1000) + (60 * 60 * 24 * 14) // 2 weeks.
* }, function(err, url) {});
*/
File.prototype.getSignedUrl = function(options, callback) {
if (options.expires < Math.floor(Date.now() / 1000)) {
throw new Error('An expiration date cannot be in the past.');
}
options.action = {
read: 'GET',
write: 'PUT',
delete: 'DELETE'
}[options.action];
var name = encodeURIComponent(this.name);
options.resource = '/' + this.bucket.name + '/' + name;
var makeAuthorizedRequest_ = this.bucket.storage.makeAuthorizedRequest_;
makeAuthorizedRequest_.getCredentials(function(err, credentials) {
if (err) {
callback(err);
return;
}
var sign = crypto.createSign('RSA-SHA256');
sign.update([
options.action,
(options.contentMd5 || ''),
(options.contentType || ''),
options.expires,
(options.extensionHeaders || '') + options.resource
].join('\n'));
var signature = sign.sign(credentials.private_key, 'base64');
callback(null, [
'http://storage.googleapis.com' + options.resource,
'?GoogleAccessId=' + credentials.client_email,
'&Expires=' + options.expires,
'&Signature=' + encodeURIComponent(signature)
].join(''));
});
};
/**
* Set the file's metadata.
*
* @param {object} metadata - The metadata you wish to set.
* @param {function=} callback - The callback function.
*
* @example
* file.setMetadata({
* contentType: 'application/x-font-ttf',
* metadata: {
* my: 'custom',
* properties: 'go here'
* }
* }, function(err, metadata) {});
*/
File.prototype.setMetadata = function(metadata, callback) {
var that = this;
var path = '/o/' + encodeURIComponent(this.name);
callback = callback || util.noop;
this.makeReq_('PATCH', path, null, metadata, function(err, resp) {
if (err) {
callback(err);
return;
}
that.metadata = resp;
callback(null, that.metadata);
});
};
/**
* `startResumableUpload_` uses the Resumable Upload API: http://goo.gl/jb0e9D.
*
* The process involves these steps:
*
* 1. POST the file's metadata. We get a resumable upload URI back, then cache
* it with ConfigStore.
* 2. PUT data to that URI with a Content-Range header noting what position
* the data is beginning from. We also cache, at most, the first 16 bytes
* of the data being uploaded.
* 3. Delete the ConfigStore cache after the upload completes.
*
* If the initial upload operation is interrupted, the next time the user
* uploads the file, these steps occur:
*
* 1. Detect the presence of a cached URI in ConfigStore.
* 2. Make an empty PUT request to that URI to get the last byte written to
* the remote file.
* 3. PUT data to the URI starting from the first byte after the last byte
* returned from the call above.
*
* If the user tries to upload entirely different data to the remote file:
*
* 1. -- same as above --
* 2. -- same as above --
* 3. -- same as above --
* 4. Compare the first chunk of the new data with the chunk in cache. If it's
* different, start a new resumable upload (Step 1 of the first example).
*
* @param {Duplexify} stream - Duplexify stream of data to pipe to the file.
* @param {object=} metadata - Optional metadata to set on the file.
*
* @private
*/
File.prototype.startResumableUpload_ = function(stream, metadata) {
metadata = metadata || {};
var that = this;
var configStore = new ConfigStore('gcloud-node');
var config = configStore.get(that.name);
var makeAuthorizedRequest = that.bucket.storage.makeAuthorizedRequest_;
var numBytesWritten;
var resumableUri;
var RETRY_LIMIT = 5;
var retries = 0;
// This is used to hold all data coming in from the user's readable stream. If
// we need to abort a resumable upload to start a new one, this will hold the
// data until we're ready again.
var bufferStream = through();
if (config && config.uri) {
resumableUri = config.uri;
resumeUpload();
} else {
startUpload();
}
// Begin a new resumable upload. Send the metadata and cache the URI returned.
function startUpload() {
var headers = {};
if (metadata.contentType) {
headers['X-Upload-Content-Type'] = metadata.contentType;
}
makeAuthorizedRequest({
method: 'POST',
uri: util.format('{base}/{bucket}/o', {
base: STORAGE_UPLOAD_BASE_URL,
bucket: that.bucket.name
}),
qs: {
name: that.name,
uploadType: 'resumable'
},
headers: headers,
json: metadata
}, function(err, res, body) {
if (err) {
handleError(err);
return;
}
numBytesWritten = -1;
resumableUri = body.headers.location;
configStore.set(that.name, {
uri: resumableUri
});
resumeUpload();
});
}
// Given a byte offset, create an authorized request to the resumable URI. If
// resuming an upload, we first determine the last byte written, then create
// the authorized request.
function resumeUpload() {
if (util.is(numBytesWritten, 'number')) {
createUploadRequest(numBytesWritten);
} else {
getNumBytesWritten(createUploadRequest);
}
function createUploadRequest(offset) {
makeAuthorizedRequest({
method: 'PUT',
uri: resumableUri
}, {
onAuthorized: function(err, reqOpts) {
if (err) {
handleError(err);
return;
}
sendFile(reqOpts, offset + 1);
}
});
}
}
// Given an authorized request and a byte offset, begin sending data to the
// resumable URI from where the upload last left off.
function sendFile(reqOpts, offset) {
reqOpts.headers['Content-Range'] = 'bytes ' + offset + '-*/*';
var bytesWritten = 0;
var offsetStream = through(function(chunk, enc, next) {
// Determine if this is the same content uploaded previously. We do this
// by caching a slice of the first chunk, then comparing it with the first
// byte of incoming data.
if (bytesWritten === 0) {
var cachedFirstChunk = configStore.get(that.name).firstChunk;
var firstChunk = chunk.slice(0, 16);
if (!cachedFirstChunk) {
// This is a new upload. Cache the first chunk.
configStore.set(that.name, {
uri: reqOpts.uri,
firstChunk: firstChunk
});
} else {
// This is a continuation of an upload. Make sure the first bytes are
// the same.
cachedFirstChunk = new Buffer(cachedFirstChunk);
firstChunk = new Buffer(firstChunk);
if (!bufferEqual(cachedFirstChunk, firstChunk)) {
// The data being uploaded now is different than the original data.
// Give the chunk back to the stream and create a new upload stream.
bufferStream.unshift(chunk);
bufferStream.unpipe(this);
configStore.del(that.name);
startUpload();
return;
}
}
}
var length = chunk.length;
if (util.is(chunk, 'string')) {
length = Buffer.byteLength(chunk, enc);
}
if (bytesWritten < offset) {
chunk = chunk.slice(offset - bytesWritten);
}
bytesWritten += length;
// Only push data to the request stream from the byte after the one we
// left off on.
if (bytesWritten > offset) {
this.push(chunk);
}
next();
});
var writeStream = request(reqOpts);
writeStream.callback = util.noop;
writeStream.on('complete', function(res) {
util.handleResp(null, res, res.body, function(err, data) {
if (err) {
handleError(err);
return;
}
that.metadata = data;
stream.emit('complete', that.metadata);