Skip to content

Commit 9336144

Browse files
committed
fix:CIHost兼容处理
1 parent 9737bac commit 9336144

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

dist/cos-js-sdk-v5.js

+11-5
Original file line numberDiff line numberDiff line change
@@ -742,10 +742,8 @@ var isNode = function () {
742742
};
743743

744744
var isCIHost = function (url) {
745-
if (url && url.split('?')[0].match(/(.ci.|ci.|.ci)/g)) {
746-
return true;
747-
}
748-
return false;
745+
return (/^https?:\/\/([^/]+\.)?ci\.[^/]+/.test(url)
746+
);
749747
};
750748

751749
var util = {
@@ -2449,8 +2447,13 @@ var COS = function (options) {
24492447
base.init(COS, task);
24502448
advance.init(COS, task);
24512449

2450+
COS.util = {
2451+
md5: util.md5,
2452+
xml2json: util.xml2json,
2453+
json2xml: util.json2xml
2454+
};
24522455
COS.getAuthorization = util.getAuth;
2453-
COS.version = '1.3.0';
2456+
COS.version = '1.3.1';
24542457

24552458
module.exports = COS;
24562459

@@ -7953,6 +7956,9 @@ function getUrl(params) {
79537956
var appId = longBucket.substr(longBucket.lastIndexOf('-') + 1);
79547957
var domain = params.domain;
79557958
var object = params.object;
7959+
if (typeof domain === 'function') {
7960+
domain = domain({ Bucket: longBucket, Region: region });
7961+
}
79567962
var protocol = params.protocol || (util.isBrowser && location.protocol === 'http:' ? 'http:' : 'https:');
79577963
if (!domain) {
79587964
if (['cn-south', 'cn-south-2', 'cn-north', 'cn-east', 'cn-southwest', 'sg'].indexOf(region) > -1) {

dist/cos-js-sdk-v5.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cos-js-sdk-v5",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "JavaScript SDK for [腾讯云对象存储](https://cloud.tencent.com/product/cos)",
55
"main": "index.js",
66
"types": "index.d.ts",

src/cos.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ COS.util = {
6969
json2xml: util.json2xml,
7070
};
7171
COS.getAuthorization = util.getAuth;
72-
COS.version = '1.3.0';
72+
COS.version = '1.3.1';
7373

7474
module.exports = COS;

src/util.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -678,14 +678,11 @@ var error = function (err, opt) {
678678
}
679679

680680
var isNode = function () {
681-
return typeof window !== 'object' && typeof process === 'object' && typeof require === 'function';
681+
return typeof window !== 'object' && typeof process === 'object' && typeof require === 'function';
682682
}
683683

684684
var isCIHost = function(url) {
685-
if (url && url.split('?')[0].match(/(.ci.|ci.|.ci)/g)) {
686-
return true;
687-
}
688-
return false;
685+
return /^https?:\/\/([^/]+\.)?ci\.[^/]+/.test(url);
689686
}
690687

691688
var util = {

0 commit comments

Comments
 (0)