2023-07-02 16:53:53 +02:00
|
|
|
const Upload = require("nextcloud-chunk-file-upload");
|
|
|
|
const glob = require("glob");
|
|
|
|
const axios = require("axios");
|
2023-07-03 13:11:49 +02:00
|
|
|
const xml = require('xml2json');
|
2023-07-02 16:53:53 +02:00
|
|
|
|
|
|
|
// parse arguments
|
|
|
|
const serverEnv = process.env.PLUGIN_SERVER;
|
|
|
|
if (!serverEnv)
|
|
|
|
throw "Missing required arg server";
|
|
|
|
const userEnv = process.env.PLUGIN_USER;
|
|
|
|
if (!userEnv)
|
|
|
|
throw "Missing required arg user";
|
|
|
|
const tokenEnv = process.env.PLUGIN_TOKEN;
|
|
|
|
if (!tokenEnv)
|
|
|
|
throw "Missing required arg token";
|
|
|
|
const filesEnv = process.env.PLUGIN_FILES;
|
|
|
|
if (!filesEnv)
|
|
|
|
throw "Missing required arg files";
|
|
|
|
const destEnv = process.env.PLUGIN_DEST;
|
|
|
|
if (!destEnv)
|
|
|
|
throw "Missing required arg dest";
|
|
|
|
|
|
|
|
const baseDir = process.env.PLUGIN_BASEDIR || ".";
|
2023-07-02 17:45:33 +02:00
|
|
|
const chunkSizeEnv = process.env.PLUGIN_CHUNKSIZE || 10 * 1024 * 1024;
|
2023-07-16 22:47:57 +02:00
|
|
|
const quiet = process.env.PLUGIN_QUIET == "true";
|
2023-07-03 13:11:49 +02:00
|
|
|
const tags = process.env.PLUGIN_TAGS || "";
|
2023-07-16 22:47:57 +02:00
|
|
|
const flatten = process.env.PLUGIN_FLATTEN == "true";
|
2023-07-16 22:12:04 +02:00
|
|
|
const retentionBase = process.env.PLUGIN_RETENTIONBASE || "";
|
|
|
|
const retentionAmount = process.env.PLUGIN_RETENTIONAMOUNT || 0;
|
2023-07-16 22:47:57 +02:00
|
|
|
const retentionSkipTrash = process.env.PLUGIN_RETENTIONSKIPTRASH == "true";
|
2023-07-02 16:53:53 +02:00
|
|
|
|
|
|
|
upload();
|
|
|
|
|
|
|
|
async function upload() {
|
|
|
|
let basePath = `${serverEnv}/remote.php/dav`;
|
2023-07-03 13:11:49 +02:00
|
|
|
|
2023-07-16 22:12:04 +02:00
|
|
|
// delete files or directories that exceed the retention amount
|
|
|
|
if (retentionBase && retentionAmount) {
|
|
|
|
try {
|
|
|
|
let retentionPath = `${basePath}/files/${userEnv}/${retentionBase}`;
|
|
|
|
let response = await axios.request({
|
|
|
|
method: "propfind",
|
|
|
|
url: retentionPath,
|
|
|
|
auth: {
|
|
|
|
username: userEnv,
|
|
|
|
password: tokenEnv
|
|
|
|
},
|
|
|
|
// 404 means the directory doesn't exist, which is fine
|
|
|
|
validateStatus: s => s == 207 || s == 404
|
|
|
|
});
|
|
|
|
if (response.status != 404) {
|
|
|
|
let data = JSON.parse(xml.toJson(response.data));
|
|
|
|
let dirs = data["d:multistatus"]["d:response"].slice(1);
|
|
|
|
// sort directories by last modified
|
|
|
|
dirs.sort((a, b) => new Date(a["d:propstat"]["d:prop"]["d:getlastmodified"]) - new Date(b["d:propstat"]["d:prop"]["d:getlastmodified"]));
|
|
|
|
while (dirs.length > parseInt(retentionAmount)) {
|
2023-07-16 22:47:57 +02:00
|
|
|
let dir = serverEnv + dirs[0]["d:href"];
|
|
|
|
let dirName = dir.substring(retentionPath.length - retentionBase.length).replace(/\/$/, "");
|
2023-07-16 22:12:04 +02:00
|
|
|
await axios.request({
|
|
|
|
method: "delete",
|
|
|
|
url: dir,
|
|
|
|
auth: {
|
|
|
|
username: userEnv,
|
|
|
|
password: tokenEnv
|
|
|
|
}
|
|
|
|
});
|
2023-07-16 22:47:57 +02:00
|
|
|
|
|
|
|
// if we skip the trash, we actually also have to delete the item from the trash
|
|
|
|
if (retentionSkipTrash) {
|
|
|
|
let trashResponse = await axios.request({
|
|
|
|
method: "propfind",
|
|
|
|
url: `${basePath}/trashbin/${userEnv}/trash`,
|
|
|
|
auth: {
|
|
|
|
username: userEnv,
|
|
|
|
password: tokenEnv
|
|
|
|
},
|
|
|
|
data: `<?xml version="1.0"?>
|
|
|
|
<d:propfind xmlns:d="DAV:" xmlns:oc="http://owncloud.org/ns" xmlns:nc="http://nextcloud.org/ns">
|
|
|
|
<d:prop>
|
|
|
|
<nc:trashbin-original-location/>
|
|
|
|
</d:prop>
|
|
|
|
</d:propfind>`
|
|
|
|
});
|
|
|
|
let trashContent = JSON.parse(xml.toJson(trashResponse.data))["d:multistatus"]["d:response"];
|
|
|
|
let trashItem = trashContent.find(e => e["d:propstat"]["d:prop"]["nc:trashbin-original-location"] == dirName);
|
|
|
|
await axios.request({
|
|
|
|
method: "delete",
|
|
|
|
url: serverEnv + trashItem["d:href"],
|
|
|
|
auth: {
|
|
|
|
username: userEnv,
|
|
|
|
password: tokenEnv
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(`Deleted directory ${dirName} because retention amount of ${retentionAmount} was reached${retentionSkipTrash ? " (skipped trash)" : ""}`);
|
2023-07-16 22:12:04 +02:00
|
|
|
dirs.splice(0, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.log(`Failed to delete old directories (${e})`);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-03 13:11:49 +02:00
|
|
|
// find ids for the tags we want to assign later
|
|
|
|
let tagIds = new Map();
|
|
|
|
if (tags) {
|
|
|
|
if (!quiet)
|
|
|
|
console.log(`Retrieving tag ids`);
|
|
|
|
// list tags and find the ones we want: https://doc.owncloud.com/server/next/developer_manual/webdav_api/tags.html#list-tags
|
|
|
|
let response = await axios.request({
|
|
|
|
method: "propfind",
|
|
|
|
url: `${basePath}/systemtags`,
|
|
|
|
auth: {
|
|
|
|
username: userEnv,
|
|
|
|
password: tokenEnv
|
|
|
|
},
|
|
|
|
data: `<?xml version="1.0"?>
|
|
|
|
<d:propfind xmlns:d="DAV:" xmlns:oc="http://owncloud.org/ns" xmlns:nc="http://nextcloud.org/ns">
|
|
|
|
<d:prop>
|
|
|
|
<oc:display-name/>
|
|
|
|
<oc:id/>
|
|
|
|
</d:prop>
|
|
|
|
</d:propfind>`
|
|
|
|
});
|
2023-07-16 22:12:04 +02:00
|
|
|
let data = JSON.parse(xml.toJson(response.data))["d:multistatus"]["d:response"].map(e => e["d:propstat"]["d:prop"]);
|
2023-07-03 13:11:49 +02:00
|
|
|
for (let tag of tags.split(",")) {
|
|
|
|
let entry = data.find(e => e["oc:display-name"] == tag);
|
|
|
|
if (!entry) {
|
|
|
|
console.log(`Couldn't find tag with name ${tag}`);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
let tagId = entry["oc:id"];
|
|
|
|
tagIds.set(tag, tagId);
|
|
|
|
if (!quiet)
|
|
|
|
console.log(`Tag id of tag ${tag} is ${tagId}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// collect and upload files
|
|
|
|
if (!quiet)
|
|
|
|
console.log(`Uploading files`);
|
|
|
|
let upload = new Upload(basePath, userEnv, userEnv, tokenEnv);
|
2023-07-02 17:00:41 +02:00
|
|
|
for (let pattern of filesEnv.split(",")) {
|
|
|
|
let files = await glob.glob(pattern, { cwd: baseDir });
|
|
|
|
if (!files.length)
|
2023-07-02 17:45:33 +02:00
|
|
|
console.log(`No files found for pattern ${pattern}`);
|
2023-07-02 17:00:41 +02:00
|
|
|
for (let file of files) {
|
2023-07-03 23:12:02 +02:00
|
|
|
file = file.replaceAll("\\", "/");
|
|
|
|
let fileName = file.split("/").pop();
|
|
|
|
let dest = `${destEnv}/${flatten ? fileName : file}`;
|
2023-07-02 16:53:53 +02:00
|
|
|
|
2023-07-02 17:00:41 +02:00
|
|
|
// we have to explicitly create any directories that don't exist yet
|
|
|
|
// (https://github.com/shiftpi/nextcloud-chunk-file-upload/issues/22)
|
|
|
|
let currDir = "";
|
|
|
|
for (let dir of dest.split("/").slice(0, -1)) {
|
|
|
|
currDir += `${dir}/`;
|
|
|
|
try {
|
2023-07-03 13:40:43 +02:00
|
|
|
let response = await axios.request({
|
2023-07-02 17:00:41 +02:00
|
|
|
method: 'mkcol',
|
|
|
|
url: `${basePath}/files/${userEnv}/${currDir}`,
|
|
|
|
auth: {
|
|
|
|
username: userEnv,
|
|
|
|
password: tokenEnv
|
2023-07-03 13:11:49 +02:00
|
|
|
},
|
|
|
|
// 405 means the directory already exists
|
|
|
|
validateStatus: s => s == 201 || s == 405
|
2023-07-02 17:00:41 +02:00
|
|
|
});
|
2023-07-03 22:47:36 +02:00
|
|
|
if (response.status != 405) {
|
|
|
|
if (!quiet)
|
|
|
|
console.log(`Created directory ${dir}`);
|
|
|
|
|
|
|
|
// add tags to directory too
|
|
|
|
if (tagIds)
|
|
|
|
await addTags(basePath, tagIds, dir, currDir);
|
|
|
|
}
|
|
|
|
|
2023-07-02 17:00:41 +02:00
|
|
|
} catch (error) {
|
2023-07-03 22:47:36 +02:00
|
|
|
console.log(`Failed to create directory ${dir} (${error})`);
|
2023-07-03 13:11:49 +02:00
|
|
|
process.exit(1);
|
2023-07-02 17:00:41 +02:00
|
|
|
}
|
2023-07-03 22:47:36 +02:00
|
|
|
|
2023-07-02 16:53:53 +02:00
|
|
|
}
|
|
|
|
|
2023-07-02 17:00:41 +02:00
|
|
|
// use lib to upload file
|
2023-07-03 13:40:43 +02:00
|
|
|
if (!quiet)
|
2023-07-03 23:12:02 +02:00
|
|
|
console.log(`Uploading ${fileName} to ${dest}`);
|
2023-07-02 17:45:33 +02:00
|
|
|
await upload.uploadFile(`${baseDir}/${file}`, dest, parseInt(chunkSizeEnv)).then(e => {
|
2023-07-02 17:00:41 +02:00
|
|
|
if (!quiet)
|
2023-07-03 23:12:02 +02:00
|
|
|
console.log(`Uploaded ${fileName} to ${dest}`);
|
2023-07-02 17:00:41 +02:00
|
|
|
}).catch(e => {
|
2023-07-03 23:12:02 +02:00
|
|
|
console.log(`Failed to upload ${fileName} to ${dest} (${e})`);
|
2023-07-02 17:00:41 +02:00
|
|
|
process.exit(1);
|
|
|
|
});
|
2023-07-03 13:11:49 +02:00
|
|
|
|
|
|
|
// add tags
|
2023-07-03 22:47:36 +02:00
|
|
|
if (tagIds.size)
|
2023-07-03 23:12:02 +02:00
|
|
|
await addTags(basePath, tagIds, fileName, dest);
|
2023-07-03 22:47:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-07-03 13:11:49 +02:00
|
|
|
|
2023-07-03 23:12:02 +02:00
|
|
|
async function addTags(basePath, tagIds, fileName, location) {
|
2023-07-03 22:47:36 +02:00
|
|
|
try {
|
|
|
|
// get file id: https://docs.nextcloud.com/server/latest/developer_manual/client_apis/WebDAV/basic.html#requesting-properties
|
|
|
|
let response = await axios.request({
|
|
|
|
method: "propfind",
|
|
|
|
url: `${basePath}/files/${userEnv}/${location}`,
|
|
|
|
auth: {
|
|
|
|
username: userEnv,
|
|
|
|
password: tokenEnv
|
|
|
|
},
|
|
|
|
data: `<?xml version="1.0"?>
|
|
|
|
<d:propfind xmlns:d="DAV:" xmlns:oc="http://owncloud.org/ns" xmlns:nc="http://nextcloud.org/ns">
|
|
|
|
<d:prop>
|
|
|
|
<oc:fileid/>
|
|
|
|
</d:prop>
|
|
|
|
</d:propfind>`
|
|
|
|
});
|
2023-07-16 22:12:04 +02:00
|
|
|
let data = JSON.parse(xml.toJson(response.data));
|
2023-07-03 22:47:36 +02:00
|
|
|
let fileId = data["d:multistatus"]["d:response"]["d:propstat"]["d:prop"]["oc:fileid"];
|
|
|
|
if (!quiet)
|
2023-07-03 23:12:02 +02:00
|
|
|
console.log(`File id of ${fileName} is ${fileId}`);
|
2023-07-03 13:11:49 +02:00
|
|
|
|
2023-07-03 22:47:36 +02:00
|
|
|
// add tags: https://doc.owncloud.com/server/next/developer_manual/webdav_api/tags.html#assign-a-tag-to-a-file
|
|
|
|
for (let [tag, tagId] of tagIds.entries()) {
|
|
|
|
await axios.request({
|
|
|
|
method: "put",
|
|
|
|
url: `${basePath}/systemtags-relations/files/${fileId}/${tagId}`,
|
|
|
|
auth: {
|
|
|
|
username: userEnv,
|
|
|
|
password: tokenEnv
|
|
|
|
},
|
|
|
|
// 409 conflicted means the tag is already applied
|
|
|
|
validateStatus: s => s == 201 || s == 409
|
|
|
|
});
|
|
|
|
if (!quiet)
|
2023-07-03 23:12:02 +02:00
|
|
|
console.log(`Added tag ${tag} to ${fileName}`);
|
2023-07-02 17:00:41 +02:00
|
|
|
}
|
2023-07-03 22:47:36 +02:00
|
|
|
|
|
|
|
} catch (error) {
|
2023-07-03 23:12:02 +02:00
|
|
|
console.log(`Failed to assign tags ${tags} to ${fileName} (${error})`);
|
2023-07-03 22:47:36 +02:00
|
|
|
process.exit(1);
|
2023-07-02 16:53:53 +02:00
|
|
|
}
|
|
|
|
}
|