mirror of
https://github.com/trympet/nextcloud-artifacts-action.git
synced 2025-04-24 20:16:08 +02:00
206 lines
8.0 KiB
TypeScript
206 lines
8.0 KiB
TypeScript
import * as fsSync from 'fs'
|
|
import * as path from 'path'
|
|
import * as core from '@actions/core';
|
|
import * as os from 'os';
|
|
import * as archiver from 'archiver';
|
|
import { URL } from 'url';
|
|
import fetch, { HeadersInit } from 'node-fetch';
|
|
import { Inputs } from '../Inputs';
|
|
import btoa from 'btoa';
|
|
import { v4 as uuidv4 } from 'uuid';
|
|
import * as webdav from 'webdav'
|
|
import { AuthType } from 'webdav';
|
|
|
|
const fs = fsSync.promises;
|
|
|
|
interface FileSpec {
|
|
absolutePath: string,
|
|
uploadPath: string
|
|
}
|
|
|
|
export class NextcloudClient {
|
|
private guid: string;
|
|
private headers: HeadersInit;
|
|
private davClient;
|
|
|
|
public constructor(
|
|
private endpoint: string,
|
|
private artifact: string,
|
|
private rootDirectory: string) {
|
|
this.guid = uuidv4();
|
|
this.headers = { 'Authorization': 'Basic ' + btoa(`${Inputs.Username}:${Inputs.Password}`) };
|
|
this.davClient = webdav.createClient(`${this.endpoint}/remote.php/dav/files/${Inputs.Username}`, {
|
|
username: Inputs.Username,
|
|
password: Inputs.Password,
|
|
});
|
|
}
|
|
|
|
public async uploadFiles(files: string[]) {
|
|
core.info("Preparing upload...");
|
|
const spec = this.uploadSpec(files);
|
|
core.info("Zipping files...");
|
|
var zip = await this.zipFiles(spec);
|
|
|
|
core.info("Uploading to Nextcloud...");
|
|
const path = await this.upload(zip);
|
|
core.info(`File path: ${path}`);
|
|
core.info("Sharing file...");
|
|
await this.shareFile(path);
|
|
}
|
|
|
|
private uploadSpec(files: string[]): FileSpec[] {
|
|
const specifications = [];
|
|
if (!fsSync.existsSync(this.rootDirectory)) {
|
|
throw new Error(`this.rootDirectory ${this.rootDirectory} does not exist`);
|
|
}
|
|
if (!fsSync.lstatSync(this.rootDirectory).isDirectory()) {
|
|
throw new Error(`this.rootDirectory ${this.rootDirectory} is not a valid directory`);
|
|
}
|
|
// Normalize and resolve, this allows for either absolute or relative paths to be used
|
|
let root = path.normalize(this.rootDirectory);
|
|
root = path.resolve(root);
|
|
/*
|
|
Example to demonstrate behavior
|
|
|
|
Input:
|
|
artifactName: my-artifact
|
|
rootDirectory: '/home/user/files/plz-upload'
|
|
artifactFiles: [
|
|
'/home/user/files/plz-upload/file1.txt',
|
|
'/home/user/files/plz-upload/file2.txt',
|
|
'/home/user/files/plz-upload/dir/file3.txt'
|
|
]
|
|
|
|
Output:
|
|
specifications: [
|
|
['/home/user/files/plz-upload/file1.txt', 'my-artifact/file1.txt'],
|
|
['/home/user/files/plz-upload/file1.txt', 'my-artifact/file2.txt'],
|
|
['/home/user/files/plz-upload/file1.txt', 'my-artifact/dir/file3.txt']
|
|
]
|
|
*/
|
|
for (let file of files) {
|
|
if (!fsSync.existsSync(file)) {
|
|
throw new Error(`File ${file} does not exist`);
|
|
}
|
|
if (!fsSync.lstatSync(file).isDirectory()) {
|
|
// Normalize and resolve, this allows for either absolute or relative paths to be used
|
|
file = path.normalize(file);
|
|
file = path.resolve(file);
|
|
if (!file.startsWith(root)) {
|
|
throw new Error(`The rootDirectory: ${root} is not a parent directory of the file: ${file}`);
|
|
}
|
|
// Check for forbidden characters in file paths that will be rejected during upload
|
|
const uploadPath = file.replace(root, '');
|
|
/*
|
|
uploadFilePath denotes where the file will be uploaded in the file container on the server. During a run, if multiple artifacts are uploaded, they will all
|
|
be saved in the same container. The artifact name is used as the root directory in the container to separate and distinguish uploaded artifacts
|
|
|
|
path.join handles all the following cases and would return 'artifact-name/file-to-upload.txt
|
|
join('artifact-name/', 'file-to-upload.txt')
|
|
join('artifact-name/', '/file-to-upload.txt')
|
|
join('artifact-name', 'file-to-upload.txt')
|
|
join('artifact-name', '/file-to-upload.txt')
|
|
*/
|
|
specifications.push({
|
|
absolutePath: file,
|
|
uploadPath: path.join(this.artifact, uploadPath)
|
|
});
|
|
}
|
|
else {
|
|
// Directories are rejected by the server during upload
|
|
core.debug(`Removing ${file} from rawSearchResults because it is a directory`);
|
|
}
|
|
}
|
|
return specifications;
|
|
}
|
|
|
|
|
|
private async zipFiles(specs: FileSpec[]): Promise<string> {
|
|
const tempArtifactDir = path.join(os.tmpdir(), this.guid);
|
|
const artifactPath = path.join(tempArtifactDir, `artifact-${this.artifact}`);
|
|
await fs.mkdir(path.join(artifactPath, this.artifact), { recursive: true });
|
|
const copies = [];
|
|
for (let spec of specs) {
|
|
const dstpath = path.join(artifactPath, spec.uploadPath);
|
|
const dstDir = path.dirname(dstpath);
|
|
if (!fsSync.existsSync(dstDir)) {
|
|
await fs.mkdir(dstDir, { recursive: true });
|
|
}
|
|
|
|
copies.push(fs.copyFile(spec.absolutePath, dstpath));
|
|
}
|
|
|
|
await Promise.all(copies);
|
|
core.info(`files: ${await fs.readdir(path.join(artifactPath, this.artifact))}`);
|
|
|
|
const archivePath = path.join(artifactPath, `${this.artifact}.zip`);
|
|
await this.zip(path.join(artifactPath, this.artifact), archivePath);
|
|
core.info(`archive stat: ${(await fs.stat(archivePath)).size}`);
|
|
|
|
return archivePath;
|
|
}
|
|
|
|
private async zip(dirpath: string, destpath: string) {
|
|
const archive = archiver.create('zip', { zlib: { level: 9 } });
|
|
const stream = archive.directory(dirpath, false)
|
|
.pipe(fsSync.createWriteStream(destpath));
|
|
|
|
await archive.finalize();
|
|
|
|
return await new Promise<void>((resolve, reject) => {
|
|
stream.on('error', e => reject(e))
|
|
.on('close', () => resolve());
|
|
})
|
|
}
|
|
|
|
private async upload(file: string) {
|
|
const remoteFileDir = `/artifacts/${this.guid}`;
|
|
core.info("Checking directory...");
|
|
if (!(await this.davClient.exists(remoteFileDir))) {
|
|
core.info("Creating directory...");
|
|
await this.davClient.createDirectory(remoteFileDir, { recursive: true });
|
|
}
|
|
|
|
const remoteFilePath = `${remoteFileDir}/${this.artifact}.zip`;
|
|
core.info(`Transferring file... (${file})`);
|
|
|
|
const remoteStream = this.davClient.createWriteStream(remoteFilePath);
|
|
const remoteStreamPromise = new Promise<void>((resolve, reject) => {
|
|
remoteStream.on('error', () => reject("Failed to upload file"))
|
|
.on('pipe', () => core.info("pipe"))
|
|
.on('finish', () => resolve());
|
|
});
|
|
|
|
const fileStream = fsSync.createReadStream(file);
|
|
const fileStreamPromise = new Promise<void>((resolve, reject) => {
|
|
fileStream.on('error', () => reject("Failed to read file"))
|
|
.on('pipe', () => core.info("pipe"))
|
|
.on('end', () => resolve());
|
|
});
|
|
|
|
fileStream.pipe(remoteStream);
|
|
|
|
await Promise.all([remoteStreamPromise, fileStreamPromise]);
|
|
|
|
core.info("finish");
|
|
return remoteFilePath;
|
|
}
|
|
|
|
private async shareFile(remoteFilePath: string) {
|
|
const url = this.endpoint + `/ocs/v2.php/apps/files_sharing/api/v1/shares`;
|
|
const body = {
|
|
path: remoteFilePath,
|
|
shareType: 3,
|
|
publicUpload: "false",
|
|
permissions: 1,
|
|
};
|
|
|
|
const res = await fetch(url, {
|
|
method: 'PUT',
|
|
headers: this.headers,
|
|
body: JSON.stringify(body),
|
|
});
|
|
res.status
|
|
core.info(await res.text())
|
|
}
|
|
} |