mirror of
https://github.com/Ellpeck/WoodpeckerPlugins.git
synced 2024-11-22 02:23:29 +01:00
allow flattening directory structure
This commit is contained in:
parent
71ea8ddf31
commit
cce6a44078
2 changed files with 20 additions and 13 deletions
|
@ -17,15 +17,19 @@ steps:
|
||||||
upload:
|
upload:
|
||||||
image: ellpeck/woodpecker-nextcloud-upload
|
image: ellpeck/woodpecker-nextcloud-upload
|
||||||
settings:
|
settings:
|
||||||
|
# required settings
|
||||||
server: https://cloud.ellpeck.de # the server to use
|
server: https://cloud.ellpeck.de # the server to use
|
||||||
user: EllBot # the user
|
user: EllBot # the user
|
||||||
token: access-token # the access token, or password if 2FA is disabled
|
token: access-token # the access token, or password if 2FA is disabled
|
||||||
files: # the file(s), uses glob patterns
|
files: # the file(s), uses glob patterns
|
||||||
- "**/*.md"
|
- "**/*.md"
|
||||||
dest: Uploads/CoolMarkdownFiles # the destination directory
|
dest: Uploads/CoolMarkdownFiles # the destination directory
|
||||||
basedir: "." # optional, local base directory for files, defaults to .
|
|
||||||
chunksize: # optional, chunk size in bytes, defaults to 10485760, or 10 MiB
|
# optional settings
|
||||||
quiet: false # optional, whether to reduce output
|
basedir: "." # local base directory for files, defaults to .
|
||||||
tags: # optional, a set of tags to apply to uploaded files, tag is expected to already exist
|
chunksize: # chunk size in bytes, defaults to 10485760, or 10 MiB
|
||||||
|
quiet: false # whether to reduce output
|
||||||
|
tags: # a set of tags to apply to uploaded files, tag is expected to already exist
|
||||||
- mytag
|
- mytag
|
||||||
|
flatten: false # whether to flatten directories, causing all files to be placed directly in dest
|
||||||
```
|
```
|
||||||
|
|
|
@ -24,6 +24,7 @@ const baseDir = process.env.PLUGIN_BASEDIR || ".";
|
||||||
const chunkSizeEnv = process.env.PLUGIN_CHUNKSIZE || 10 * 1024 * 1024;
|
const chunkSizeEnv = process.env.PLUGIN_CHUNKSIZE || 10 * 1024 * 1024;
|
||||||
const quiet = process.env.PLUGIN_QUIET || false;
|
const quiet = process.env.PLUGIN_QUIET || false;
|
||||||
const tags = process.env.PLUGIN_TAGS || "";
|
const tags = process.env.PLUGIN_TAGS || "";
|
||||||
|
const flatten = process.env.PLUGIN_FLATTEN || false;
|
||||||
|
|
||||||
upload();
|
upload();
|
||||||
|
|
||||||
|
@ -74,7 +75,9 @@ async function upload() {
|
||||||
if (!files.length)
|
if (!files.length)
|
||||||
console.log(`No files found for pattern ${pattern}`);
|
console.log(`No files found for pattern ${pattern}`);
|
||||||
for (let file of files) {
|
for (let file of files) {
|
||||||
let dest = `${destEnv}/${file}`;
|
file = file.replaceAll("\\", "/");
|
||||||
|
let fileName = file.split("/").pop();
|
||||||
|
let dest = `${destEnv}/${flatten ? fileName : file}`;
|
||||||
|
|
||||||
// we have to explicitly create any directories that don't exist yet
|
// we have to explicitly create any directories that don't exist yet
|
||||||
// (https://github.com/shiftpi/nextcloud-chunk-file-upload/issues/22)
|
// (https://github.com/shiftpi/nextcloud-chunk-file-upload/issues/22)
|
||||||
|
@ -110,23 +113,23 @@ async function upload() {
|
||||||
|
|
||||||
// use lib to upload file
|
// use lib to upload file
|
||||||
if (!quiet)
|
if (!quiet)
|
||||||
console.log(`Uploading ${file} to ${dest}`);
|
console.log(`Uploading ${fileName} to ${dest}`);
|
||||||
await upload.uploadFile(`${baseDir}/${file}`, dest, parseInt(chunkSizeEnv)).then(e => {
|
await upload.uploadFile(`${baseDir}/${file}`, dest, parseInt(chunkSizeEnv)).then(e => {
|
||||||
if (!quiet)
|
if (!quiet)
|
||||||
console.log(`Uploaded ${file} to ${dest}`);
|
console.log(`Uploaded ${fileName} to ${dest}`);
|
||||||
}).catch(e => {
|
}).catch(e => {
|
||||||
console.log(`Failed to upload file ${file} to ${dest} (${e})`);
|
console.log(`Failed to upload ${fileName} to ${dest} (${e})`);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
// add tags
|
// add tags
|
||||||
if (tagIds.size)
|
if (tagIds.size)
|
||||||
await addTags(basePath, tagIds, file, dest);
|
await addTags(basePath, tagIds, fileName, dest);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function addTags(basePath, tagIds, file, location) {
|
async function addTags(basePath, tagIds, fileName, location) {
|
||||||
try {
|
try {
|
||||||
// get file id: https://docs.nextcloud.com/server/latest/developer_manual/client_apis/WebDAV/basic.html#requesting-properties
|
// get file id: https://docs.nextcloud.com/server/latest/developer_manual/client_apis/WebDAV/basic.html#requesting-properties
|
||||||
let response = await axios.request({
|
let response = await axios.request({
|
||||||
|
@ -146,7 +149,7 @@ async function addTags(basePath, tagIds, file, location) {
|
||||||
var data = JSON.parse(xml.toJson(response.data));
|
var data = JSON.parse(xml.toJson(response.data));
|
||||||
let fileId = data["d:multistatus"]["d:response"]["d:propstat"]["d:prop"]["oc:fileid"];
|
let fileId = data["d:multistatus"]["d:response"]["d:propstat"]["d:prop"]["oc:fileid"];
|
||||||
if (!quiet)
|
if (!quiet)
|
||||||
console.log(`File id of ${file} is ${fileId}`);
|
console.log(`File id of ${fileName} is ${fileId}`);
|
||||||
|
|
||||||
// add tags: https://doc.owncloud.com/server/next/developer_manual/webdav_api/tags.html#assign-a-tag-to-a-file
|
// 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()) {
|
for (let [tag, tagId] of tagIds.entries()) {
|
||||||
|
@ -161,11 +164,11 @@ async function addTags(basePath, tagIds, file, location) {
|
||||||
validateStatus: s => s == 201 || s == 409
|
validateStatus: s => s == 201 || s == 409
|
||||||
});
|
});
|
||||||
if (!quiet)
|
if (!quiet)
|
||||||
console.log(`Added tag ${tag} to ${file}`);
|
console.log(`Added tag ${tag} to ${fileName}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log(`Failed to assign tags ${tags} to ${file} (${error})`);
|
console.log(`Failed to assign tags ${tags} to ${fileName} (${error})`);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue