@@ -787,7 +787,6 @@ function _putObject(params, callback) {
787
787
headers [ 'Content-Type' ] = params [ 'ContentType' ] ;
788
788
headers [ 'Expect' ] = params [ 'Expect' ] ;
789
789
headers [ 'Expires' ] = params [ 'Expires' ] ;
790
- // headers['x-cos-content-sha1'] = params['ContentSha1'];
791
790
headers [ 'x-cos-acl' ] = params [ 'ACL' ] ;
792
791
headers [ 'x-cos-grant-read' ] = params [ 'GrantRead' ] ;
793
792
headers [ 'x-cos-grant-write' ] = params [ 'GrantWrite' ] ;
@@ -1113,7 +1112,6 @@ function putObjectCopy(params, callback) {
1113
1112
headers [ 'Content-Type' ] = params [ 'ContentType' ] ;
1114
1113
headers [ 'Expect' ] = params [ 'Expect' ] ;
1115
1114
headers [ 'Expires' ] = params [ 'Expires' ] ;
1116
- // headers['x-cos-content-sha1'] = params['ContentSha1'];
1117
1115
1118
1116
for ( var key in params ) {
1119
1117
if ( key . indexOf ( 'x-cos-meta-' ) > - 1 ) {
@@ -1281,7 +1279,6 @@ function multipartUpload(params, callback) {
1281
1279
1282
1280
headers [ 'Content-Length' ] = params [ 'ContentLength' ] ;
1283
1281
headers [ 'Expect' ] = params [ 'Expect' ] ;
1284
- // headers['x-cos-content-sha1'] = params['ContentSha1'];
1285
1282
1286
1283
var PartNumber = params [ 'PartNumber' ] ;
1287
1284
var UploadId = params [ 'UploadId' ] ;
@@ -1558,7 +1555,11 @@ function getUrl(params) {
1558
1555
var appId = params . appId ;
1559
1556
var protocol = util . isBrowser && location . protocol === 'https:' ? 'https:' : 'http:' ;
1560
1557
if ( ! domain ) {
1561
- domain = '{{Bucket}}-{{AppId}}.cos.{{Region}}.myqcloud.com' ;
1558
+ if ( [ 'cn-south' , 'cn-south-2' , 'cn-north' , 'cn-east' , 'cn-southwest' , 'sg' ] . indexOf ( region ) > - 1 ) {
1559
+ domain = '{{Bucket}}-{{AppId}}.{{Region}}.myqcloud.com' ;
1560
+ } else {
1561
+ domain = '{{Bucket}}-{{AppId}}.cos.{{Region}}.myqcloud.com' ;
1562
+ }
1562
1563
}
1563
1564
domain = domain . replace ( / \{ \{ A p p I d \} \} / ig, appId )
1564
1565
. replace ( / \{ \{ B u c k e t \} \} / ig, bucket )
@@ -1573,7 +1574,7 @@ function getUrl(params) {
1573
1574
var url = domain ;
1574
1575
1575
1576
if ( object ) {
1576
- url += '/' + encodeURIComponent ( object ) ;
1577
+ url += '/' + encodeURIComponent ( object ) . replace ( / % 2 F / g , '/' ) ;
1577
1578
}
1578
1579
1579
1580
if ( action ) {
0 commit comments