@xuda.io/drive_module 1.1.671 → 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 +22 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1973,7 +1973,14 @@ exports.search_drive_files = async function (req) {
|
|
|
1973
1973
|
var opt = {
|
|
1974
1974
|
selector,
|
|
1975
1975
|
limit,
|
|
1976
|
-
fields: [
|
|
1976
|
+
fields: [
|
|
1977
|
+
"originalname",
|
|
1978
|
+
"date_created",
|
|
1979
|
+
"server_file_name",
|
|
1980
|
+
"is_folder",
|
|
1981
|
+
"file_ext",
|
|
1982
|
+
"mime",
|
|
1983
|
+
],
|
|
1977
1984
|
};
|
|
1978
1985
|
|
|
1979
1986
|
const alias_results = (docs) => {
|
|
@@ -2444,4 +2451,18 @@ exports.update_drive_file_tags = async function (req, job_id, headers) {
|
|
|
2444
2451
|
}
|
|
2445
2452
|
};
|
|
2446
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
|
+
|
|
2447
2468
|
setTimeout(function () {}, 2000);
|