Merge pull request #402 from ben-burwood/dasel
This commit is contained in:
commit
a4e20aa62a
5 changed files with 65 additions and 0 deletions
|
|
@ -47,6 +47,7 @@ FROM base AS release
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y \
|
||||||
assimp-utils \
|
assimp-utils \
|
||||||
calibre \
|
calibre \
|
||||||
|
dasel \
|
||||||
dcraw \
|
dcraw \
|
||||||
dvisvgm \
|
dvisvgm \
|
||||||
ffmpeg \
|
ffmpeg \
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,7 @@ A self-hosted online file converter. Supports over a thousand different formats.
|
||||||
| [FFmpeg](https://ffmpeg.org/) | Video | ~472 | ~199 |
|
| [FFmpeg](https://ffmpeg.org/) | Video | ~472 | ~199 |
|
||||||
| [Potrace](https://potrace.sourceforge.net/) | Raster to vector | 4 | 11 |
|
| [Potrace](https://potrace.sourceforge.net/) | Raster to vector | 4 | 11 |
|
||||||
| [VTracer](https://github.com/visioncortex/vtracer) | Raster to vector | 8 | 1 |
|
| [VTracer](https://github.com/visioncortex/vtracer) | Raster to vector | 8 | 1 |
|
||||||
|
| [Dasel](https://github.com/TomWright/dasel) | Data Files | 5 | 4 |
|
||||||
|
|
||||||
<!-- many ffmpeg fileformats are duplicates -->
|
<!-- many ffmpeg fileformats are duplicates -->
|
||||||
|
|
||||||
|
|
|
||||||
48
src/converters/dasel.ts
Normal file
48
src/converters/dasel.ts
Normal file
|
|
@ -0,0 +1,48 @@
|
||||||
|
import fs from "fs";
|
||||||
|
import { execFile as execFileOriginal } from "node:child_process";
|
||||||
|
import { ExecFileFn } from "./types";
|
||||||
|
|
||||||
|
export const properties = {
|
||||||
|
from: {
|
||||||
|
document: ["yaml", "toml", "json", "xml", "csv"],
|
||||||
|
},
|
||||||
|
to: {
|
||||||
|
document: ["yaml", "toml", "json", "csv"],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export async function convert(
|
||||||
|
filePath: string,
|
||||||
|
fileType: string,
|
||||||
|
convertTo: string,
|
||||||
|
targetPath: string,
|
||||||
|
options?: unknown,
|
||||||
|
execFile: ExecFileFn = execFileOriginal, // to make it mockable
|
||||||
|
): Promise<string> {
|
||||||
|
const args: string[] = [];
|
||||||
|
|
||||||
|
args.push("--file", filePath);
|
||||||
|
args.push("--read", fileType);
|
||||||
|
args.push("--write", convertTo);
|
||||||
|
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
execFile("dasel", args, (error, stdout, stderr) => {
|
||||||
|
if (error) {
|
||||||
|
reject(`error: ${error}`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stderr) {
|
||||||
|
console.error(`stderr: ${stderr}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
fs.writeFile(targetPath, stdout, (err: NodeJS.ErrnoException | null) => {
|
||||||
|
if (err) {
|
||||||
|
reject(`Failed to write output: ${err}`);
|
||||||
|
} else {
|
||||||
|
resolve("Done");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
@ -4,6 +4,7 @@ import { MAX_CONVERT_PROCESS } from "../helpers/env";
|
||||||
import { normalizeFiletype, normalizeOutputFiletype } from "../helpers/normalizeFiletype";
|
import { normalizeFiletype, normalizeOutputFiletype } from "../helpers/normalizeFiletype";
|
||||||
import { convert as convertassimp, properties as propertiesassimp } from "./assimp";
|
import { convert as convertassimp, properties as propertiesassimp } from "./assimp";
|
||||||
import { convert as convertCalibre, properties as propertiesCalibre } from "./calibre";
|
import { convert as convertCalibre, properties as propertiesCalibre } from "./calibre";
|
||||||
|
import { convert as convertDasel, properties as propertiesDasel } from "./dasel";
|
||||||
import { convert as convertDvisvgm, properties as propertiesDvisvgm } from "./dvisvgm";
|
import { convert as convertDvisvgm, properties as propertiesDvisvgm } from "./dvisvgm";
|
||||||
import { convert as convertFFmpeg, properties as propertiesFFmpeg } from "./ffmpeg";
|
import { convert as convertFFmpeg, properties as propertiesFFmpeg } from "./ffmpeg";
|
||||||
import {
|
import {
|
||||||
|
|
@ -82,6 +83,10 @@ const properties: Record<
|
||||||
properties: propertiesCalibre,
|
properties: propertiesCalibre,
|
||||||
converter: convertCalibre,
|
converter: convertCalibre,
|
||||||
},
|
},
|
||||||
|
dasel: {
|
||||||
|
properties: propertiesDasel,
|
||||||
|
converter: convertDasel,
|
||||||
|
},
|
||||||
libreoffice: {
|
libreoffice: {
|
||||||
properties: propertiesLibreOffice,
|
properties: propertiesLibreOffice,
|
||||||
converter: convertLibreOffice,
|
converter: convertLibreOffice,
|
||||||
|
|
|
||||||
|
|
@ -84,6 +84,16 @@ if (process.env.NODE_ENV === "production") {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
exec("dasel --version", (error, stdout) => {
|
||||||
|
if (error) {
|
||||||
|
console.error("dasel is not installed.");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stdout) {
|
||||||
|
console.log(stdout.split("\n")[0]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
exec("xelatex -version", (error, stdout) => {
|
exec("xelatex -version", (error, stdout) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
console.error("Tex Live with XeTeX is not installed.");
|
console.error("Tex Live with XeTeX is not installed.");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue