@xuda.io/drive_module 1.1.672 → 1.1.673
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +14 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2451,4 +2451,18 @@ exports.update_drive_file_tags = async function (req, job_id, headers) {
|
|
|
2451
2451
|
}
|
|
2452
2452
|
};
|
|
2453
2453
|
|
|
2454
|
+
const get_file_url = function (drive_type, file_name) {
|
|
2455
|
+
let file_url = `https://${
|
|
2456
|
+
process.env.XUDA_HOSTNAME
|
|
2457
|
+
}/${drive_type}-drive/${ref}${
|
|
2458
|
+
file_name.substr(0, 1) !== "/" ? "/" : ""
|
|
2459
|
+
}${file_name}`;
|
|
2460
|
+
if (["workspace"].includes(drive_type)) {
|
|
2461
|
+
file_url = `https://${process.env.XUDA_HOSTNAME}/workspace-drive${
|
|
2462
|
+
file_name.substr(0, 1) !== "/" ? "/" : ""
|
|
2463
|
+
}${file_name}`;
|
|
2464
|
+
}
|
|
2465
|
+
return file_url;
|
|
2466
|
+
};
|
|
2467
|
+
|
|
2454
2468
|
setTimeout(function () {}, 2000);
|