Compare commits
1 Commits
v0.10.0
...
feature-po
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a8f2cd4e9e |
@@ -1,20 +1,16 @@
|
|||||||
|
node_modules
|
||||||
|
Dockerfile*
|
||||||
|
docker-compose*
|
||||||
.dockerignore
|
.dockerignore
|
||||||
.editorconfig
|
|
||||||
.env
|
|
||||||
.git
|
.git
|
||||||
.gitignore
|
.gitignore
|
||||||
.idea
|
|
||||||
.vscode
|
|
||||||
CHANGELOG.md
|
|
||||||
coverage*
|
|
||||||
data
|
|
||||||
docker-compose*
|
|
||||||
Dockerfile*
|
|
||||||
eslint.config.js
|
|
||||||
helm-charts
|
|
||||||
LICENSE
|
|
||||||
Makefile
|
|
||||||
node_modules
|
|
||||||
prettier.config.js
|
|
||||||
README.md
|
README.md
|
||||||
renovate.json
|
LICENSE
|
||||||
|
.vscode
|
||||||
|
Makefile
|
||||||
|
helm-charts
|
||||||
|
.env
|
||||||
|
.editorconfig
|
||||||
|
.idea
|
||||||
|
coverage*
|
||||||
|
data
|
||||||
55
.eslintrc.cjs
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
/** @type {import("eslint").Linter.Config} */
|
||||||
|
const config = {
|
||||||
|
root: true,
|
||||||
|
parser: "@typescript-eslint/parser",
|
||||||
|
plugins: ["isaacscript", "import"],
|
||||||
|
extends: [
|
||||||
|
"plugin:@typescript-eslint/recommended-type-checked",
|
||||||
|
"plugin:@typescript-eslint/stylistic-type-checked",
|
||||||
|
"plugin:prettier/recommended",
|
||||||
|
],
|
||||||
|
parserOptions: {
|
||||||
|
ecmaVersion: "latest",
|
||||||
|
sourceType: "module",
|
||||||
|
tsconfigRootDir: __dirname,
|
||||||
|
project: [
|
||||||
|
"./tsconfig.json",
|
||||||
|
"./cli/tsconfig.eslint.json", // separate eslint config for the CLI since we want to lint and typecheck differently due to template files
|
||||||
|
"./upgrade/tsconfig.json",
|
||||||
|
"./www/tsconfig.json",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
overrides: [
|
||||||
|
// Template files don't have reliable type information
|
||||||
|
{
|
||||||
|
files: ["./cli/template/**/*.{ts,tsx}"],
|
||||||
|
extends: ["plugin:@typescript-eslint/disable-type-checked"],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
rules: {
|
||||||
|
// These off/not-configured-the-way-we-want lint rules we like & opt into
|
||||||
|
"@typescript-eslint/no-explicit-any": "error",
|
||||||
|
"@typescript-eslint/no-unused-vars": [
|
||||||
|
"error",
|
||||||
|
{ argsIgnorePattern: "^_", destructuredArrayIgnorePattern: "^_" },
|
||||||
|
],
|
||||||
|
"@typescript-eslint/consistent-type-imports": [
|
||||||
|
"error",
|
||||||
|
{ prefer: "type-imports", fixStyle: "inline-type-imports" },
|
||||||
|
],
|
||||||
|
"import/consistent-type-specifier-style": ["error", "prefer-inline"],
|
||||||
|
|
||||||
|
// For educational purposes we format our comments/jsdoc nicely
|
||||||
|
"isaacscript/complete-sentences-jsdoc": "warn",
|
||||||
|
"isaacscript/format-jsdoc-comments": "warn",
|
||||||
|
|
||||||
|
// These lint rules don't make sense for us but are enabled in the preset configs
|
||||||
|
"@typescript-eslint/no-confusing-void-expression": "off",
|
||||||
|
"@typescript-eslint/restrict-template-expressions": "off",
|
||||||
|
|
||||||
|
// This rule doesn't seem to be working properly
|
||||||
|
"@typescript-eslint/prefer-nullish-coalescing": "off",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = config;
|
||||||
23
.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# To get started with Dependabot version updates, you'll need to specify which
|
||||||
|
# package ecosystems to update and where the package manifests are located.
|
||||||
|
# Please see the documentation for all configuration options:
|
||||||
|
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||||
|
|
||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
# Maintain dependencies for npm
|
||||||
|
- package-ecosystem: "npm" # See documentation for possible values
|
||||||
|
versioning-strategy: increase
|
||||||
|
directory: "/" # Location of package manifests
|
||||||
|
schedule:
|
||||||
|
interval: "daily"
|
||||||
|
# Maintain dependencies for GitHub Actions
|
||||||
|
- package-ecosystem: "github-actions"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "daily"
|
||||||
|
# Maintain dependencies for Docker
|
||||||
|
- package-ecosystem: "docker"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "daily"
|
||||||
28
.github/workflows/bun-dependabot.yml
vendored
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
name: 'Dependabot: Update bun.lockb'
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- "package.json"
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-bun-lockb:
|
||||||
|
name: "Update bun.lockb"
|
||||||
|
if: github.actor == 'dependabot[bot]'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: oven-sh/setup-bun@v1
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
ref: ${{ github.event.pull_request.head.ref }}
|
||||||
|
- run: |
|
||||||
|
bun install
|
||||||
|
git add bun.lockb
|
||||||
|
git config --global user.name 'dependabot[bot]'
|
||||||
|
git config --global user.email 'dependabot[bot]@users.noreply.github.com'
|
||||||
|
git commit --amend --no-edit
|
||||||
|
git push --force
|
||||||
148
.github/workflows/docker-publish.yml
vendored
@@ -1,80 +1,68 @@
|
|||||||
name: Docker
|
name: Docker
|
||||||
|
|
||||||
# This workflow uses actions that are not certified by GitHub.
|
# This workflow uses actions that are not certified by GitHub.
|
||||||
# They are provided by a third-party and are governed by
|
# They are provided by a third-party and are governed by
|
||||||
# separate terms of service, privacy policy, and support
|
# separate terms of service, privacy policy, and support
|
||||||
# documentation.
|
# documentation.
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "main" ]
|
branches: [ "main" ]
|
||||||
# Publish semver tags as releases.
|
# Publish semver tags as releases.
|
||||||
tags: [ 'v*.*.*' ]
|
tags: [ 'v*.*.*' ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "main" ]
|
branches: [ "main" ]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# Use docker.io for Docker Hub if empty
|
# Use docker.io for Docker Hub if empty
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
# github.repository as <account>/<repo>
|
# github.repository as <account>/<repo>
|
||||||
IMAGE_NAME: ${{ github.repository }}
|
IMAGE_NAME: ${{ github.repository }}
|
||||||
DOCKERHUB_USERNAME: c4illin
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
jobs:
|
build:
|
||||||
build:
|
runs-on: ubuntu-latest
|
||||||
runs-on: ubuntu-latest
|
permissions:
|
||||||
permissions:
|
contents: read
|
||||||
contents: read
|
packages: write
|
||||||
packages: write
|
|
||||||
|
steps:
|
||||||
steps:
|
- name: Checkout repository
|
||||||
- name: Checkout repository
|
uses: actions/checkout@v4
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
# Workaround: https://github.com/docker/build-push-action/issues/461
|
||||||
# Workaround: https://github.com/docker/build-push-action/issues/461
|
- name: Setup Docker buildx
|
||||||
- name: Setup Docker buildx
|
uses: docker/setup-buildx-action@v3
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
|
# Login against a Docker registry except on PR
|
||||||
# Login against a Docker registry except on PR
|
# https://github.com/docker/login-action
|
||||||
# https://github.com/docker/login-action
|
- name: Log into registry ${{ env.REGISTRY }}
|
||||||
- name: Log into registry ${{ env.REGISTRY }}
|
if: github.event_name != 'pull_request'
|
||||||
if: github.event_name != 'pull_request'
|
uses: docker/login-action@v3
|
||||||
uses: docker/login-action@v3
|
with:
|
||||||
with:
|
registry: ${{ env.REGISTRY }}
|
||||||
registry: ${{ env.REGISTRY }}
|
username: ${{ github.actor }}
|
||||||
username: ${{ github.actor }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
# Extract metadata (tags, labels) for Docker
|
||||||
- name: Login to Docker Hub
|
# https://github.com/docker/metadata-action
|
||||||
if: github.event_name != 'pull_request'
|
- name: Extract Docker metadata
|
||||||
uses: docker/login-action@v3
|
id: meta
|
||||||
with:
|
uses: docker/metadata-action@v5
|
||||||
username: ${{ env.DOCKERHUB_USERNAME }}
|
with:
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
|
|
||||||
# Extract metadata (tags, labels) for Docker
|
# Build and push Docker image with Buildx (don't push on PR)
|
||||||
# https://github.com/docker/metadata-action
|
# https://github.com/docker/build-push-action
|
||||||
- name: Extract Docker metadata
|
- name: Build and push Docker image
|
||||||
id: meta
|
id: build-and-push
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
images: |
|
context: .
|
||||||
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
${{ env.IMAGE_NAME }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
# Build and push Docker image with Buildx (don't push on PR)
|
cache-from: type=gha
|
||||||
# https://github.com/docker/build-push-action
|
cache-to: type=gha,mode=max
|
||||||
- name: Build and push Docker image
|
|
||||||
id: build-and-push
|
|
||||||
uses: docker/build-push-action@v6
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
platforms: linux/amd64,linux/arm64
|
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
|
||||||
cache-from: type=gha
|
|
||||||
cache-to: type=gha,mode=max
|
|
||||||
|
|
||||||
|
|||||||
27
.github/workflows/dockerhub-description.yml
vendored
@@ -1,27 +0,0 @@
|
|||||||
name: Update Docker Hub Description
|
|
||||||
|
|
||||||
env:
|
|
||||||
IMAGE_NAME: ${{ github.repository }}
|
|
||||||
DOCKERHUB_USERNAME: c4illin
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
paths:
|
|
||||||
- README.md
|
|
||||||
- .github/workflows/dockerhub-description.yml
|
|
||||||
jobs:
|
|
||||||
dockerHubDescription:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Docker Hub Description
|
|
||||||
uses: peter-evans/dockerhub-description@v4
|
|
||||||
with:
|
|
||||||
username: ${{ env.DOCKERHUB_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
||||||
repository: ${{ env.IMAGE_NAME }}
|
|
||||||
short-description: ${{ github.event.repository.description }}
|
|
||||||
enable-url-completion: true
|
|
||||||
25
.github/workflows/release-please.yml
vendored
@@ -1,25 +0,0 @@
|
|||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
pull-requests: write
|
|
||||||
|
|
||||||
name: release-please
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
release-please:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: googleapis/release-please-action@v4
|
|
||||||
with:
|
|
||||||
# this assumes that you have created a personal access token
|
|
||||||
# (PAT) and configured it as a GitHub action secret named
|
|
||||||
# `MY_RELEASE_PLEASE_TOKEN` (this secret name is not important).
|
|
||||||
token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
|
|
||||||
# token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
# this is a built-in strategy in release-please, see "Action Inputs"
|
|
||||||
# for more options
|
|
||||||
release-type: node
|
|
||||||
21
.github/workflows/remove-docker-tag.yml
vendored
@@ -1,21 +0,0 @@
|
|||||||
name: Remove Docker Tag
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
remove-docker-tag:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
|
|
||||||
# (required)
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Remove Docker Tag
|
|
||||||
uses: ArchieAtkinson/remove-dockertag-action@v0.0
|
|
||||||
with:
|
|
||||||
tag_name: master
|
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
4
.gitignore
vendored
@@ -46,6 +46,4 @@ package-lock.json
|
|||||||
/output
|
/output
|
||||||
/db
|
/db
|
||||||
/data
|
/data
|
||||||
/Bruno
|
/Bruno
|
||||||
/tsconfig.tsbuildinfo
|
|
||||||
/public/generated.css
|
|
||||||
4
.vscode/settings.json
vendored
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"typescript.tsdk": "node_modules/typescript/lib",
|
|
||||||
"typescript.enablePromptUseWorkspaceTsdk": true
|
|
||||||
}
|
|
||||||
177
CHANGELOG.md
@@ -1,177 +0,0 @@
|
|||||||
# Changelog
|
|
||||||
|
|
||||||
## [0.10.0](https://github.com/C4illin/ConvertX/compare/v0.9.0...v0.10.0) (2025-01-18)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* add calibre ([03d3edf](https://github.com/C4illin/ConvertX/commit/03d3edfff65c252dd4b8922fc98257c089c1ff74)), closes [#191](https://github.com/C4illin/ConvertX/issues/191)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* add FFMPEG_ARGS env variable ([f537c81](https://github.com/C4illin/ConvertX/commit/f537c81db7815df8017f834e3162291197e1c40f)), closes [#190](https://github.com/C4illin/ConvertX/issues/190)
|
|
||||||
* add qt6-qtbase-private-dev from community repo ([95dbc9f](https://github.com/C4illin/ConvertX/commit/95dbc9f678bec7e6e2c03587e1473fb8ff708ea3))
|
|
||||||
* skip account setup when ALLOW_UNAUTHENTICATED is true ([538c5b6](https://github.com/C4illin/ConvertX/commit/538c5b60c9e27a8184740305475245da79bae143))
|
|
||||||
|
|
||||||
## [0.9.0](https://github.com/C4illin/ConvertX/compare/v0.8.1...v0.9.0) (2024-11-21)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* add inkscape for vector images ([f3740e9](https://github.com/C4illin/ConvertX/commit/f3740e9ded100b8500f3613517960248bbd3c210))
|
|
||||||
* Allow to chose webroot ([36cb6cc](https://github.com/C4illin/ConvertX/commit/36cb6cc589d80d0a87fa8dbe605db71a9a2570f9)), closes [#180](https://github.com/C4illin/ConvertX/issues/180)
|
|
||||||
* disable convert when uploading ([58e220e](https://github.com/C4illin/ConvertX/commit/58e220e82d7f9c163d6ea4dc31092c08a3e254f4)), closes [#177](https://github.com/C4illin/ConvertX/issues/177)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* treat unknown as m4a ([1a442d6](https://github.com/C4illin/ConvertX/commit/1a442d6e69606afef63b1e7df36aa83d111fa23d)), closes [#178](https://github.com/C4illin/ConvertX/issues/178)
|
|
||||||
* wait for both upload and selection ([4c05fd7](https://github.com/C4illin/ConvertX/commit/4c05fd72bbbf91ee02327f6fcbf749b78272376b)), closes [#177](https://github.com/C4illin/ConvertX/issues/177)
|
|
||||||
|
|
||||||
## [0.8.1](https://github.com/C4illin/ConvertX/compare/v0.8.0...v0.8.1) (2024-10-05)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* disable convert button when input is empty ([78844d7](https://github.com/C4illin/ConvertX/commit/78844d7bd55990789ed07c81e49043e688cbe656)), closes [#151](https://github.com/C4illin/ConvertX/issues/151)
|
|
||||||
* resize to fit for ico ([b4e53db](https://github.com/C4illin/ConvertX/commit/b4e53dbb8e70b3a95b44e5b756759d16117a87e1)), closes [#157](https://github.com/C4illin/ConvertX/issues/157)
|
|
||||||
* treat jfif as jpeg ([339b79f](https://github.com/C4illin/ConvertX/commit/339b79f786131deb93f0d5683e03178fdcab1ef5)), closes [#163](https://github.com/C4illin/ConvertX/issues/163)
|
|
||||||
|
|
||||||
## [0.8.0](https://github.com/C4illin/ConvertX/compare/v0.7.0...v0.8.0) (2024-09-30)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* add light theme, fixes [#156](https://github.com/C4illin/ConvertX/issues/156) ([72636c5](https://github.com/C4illin/ConvertX/commit/72636c5059ebf09c8fece2e268293650b2f8ccf6))
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* add support for usd for assimp, [#144](https://github.com/C4illin/ConvertX/issues/144) ([2057167](https://github.com/C4illin/ConvertX/commit/20571675766209ad1251f07e687d29a6791afc8b))
|
|
||||||
* cleanup formats and add opus, fixes [#159](https://github.com/C4illin/ConvertX/issues/159) ([ae1dfaf](https://github.com/C4illin/ConvertX/commit/ae1dfafc9d9116a57b08c2f7fc326990e00824b0))
|
|
||||||
* support .awb and clean up, fixes [#153](https://github.com/C4illin/ConvertX/issues/153), [#92](https://github.com/C4illin/ConvertX/issues/92) ([1c9e67f](https://github.com/C4illin/ConvertX/commit/1c9e67fc3201e0e5dee91e8981adf34daaabf33a))
|
|
||||||
|
|
||||||
## [0.7.0](https://github.com/C4illin/ConvertX/compare/v0.6.0...v0.7.0) (2024-09-26)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* Add support for 3d assets through assimp converter ([63a4328](https://github.com/C4illin/ConvertX/commit/63a4328d4a1e01df3e0ec4a877bad8c8ffe71129))
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* wrong layout on search with few options ([8817389](https://github.com/C4illin/ConvertX/commit/88173891ba2d69da46eda46f3f598a9b54f26f96))
|
|
||||||
|
|
||||||
## [0.6.0](https://github.com/C4illin/ConvertX/compare/v0.5.0...v0.6.0) (2024-09-25)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* ui remake with tailwind ([22f823c](https://github.com/C4illin/ConvertX/commit/22f823c535b20382981f86a13616b830a1f3392f))
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* rename css file to force update cache, fixes [#141](https://github.com/C4illin/ConvertX/issues/141) ([47139a5](https://github.com/C4illin/ConvertX/commit/47139a550bd3d847da288c61bf8f88953b79c673))
|
|
||||||
|
|
||||||
## [0.5.0](https://github.com/C4illin/ConvertX/compare/v0.4.1...v0.5.0) (2024-09-20)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* add option to customize how often files are automatically deleted ([317c932](https://github.com/C4illin/ConvertX/commit/317c932c2a26280bf37ed3d3bf9b879413590f5a))
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* improve file name replacement logic ([60ba7c9](https://github.com/C4illin/ConvertX/commit/60ba7c93fbdc961f3569882fade7cc13dee7a7a5))
|
|
||||||
|
|
||||||
## [0.4.1](https://github.com/C4illin/ConvertX/compare/v0.4.0...v0.4.1) (2024-09-15)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* allow non lowercase true and false values, fixes [#122](https://github.com/C4illin/ConvertX/issues/122) ([bef1710](https://github.com/C4illin/ConvertX/commit/bef1710e3376baa7e25c107ded20a40d18b8c6b0))
|
|
||||||
|
|
||||||
## [0.4.0](https://github.com/C4illin/ConvertX/compare/v0.3.3...v0.4.0) (2024-08-26)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* add option for unauthenticated file conversions [#114](https://github.com/C4illin/ConvertX/issues/114) ([f0d0e43](https://github.com/C4illin/ConvertX/commit/f0d0e4392983c3e4c530304ea88e023fda9bcac0))
|
|
||||||
* add resvg converter ([d5eeef9](https://github.com/C4illin/ConvertX/commit/d5eeef9f6884b2bb878508bed97ea9ceaa662995))
|
|
||||||
* add robots.txt ([6597c1d](https://github.com/C4illin/ConvertX/commit/6597c1d7caeb4dfb6bc47b442e4dfc9840ad12b7))
|
|
||||||
* Add search bar for formats ([53fff59](https://github.com/C4illin/ConvertX/commit/53fff594fc4d69306abcb2a5cad890fcd0953a58))
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* keep unauthenticated user logged in if allowed [#114](https://github.com/C4illin/ConvertX/issues/114) ([bc4ad49](https://github.com/C4illin/ConvertX/commit/bc4ad492852fad8cb832a0c03485cccdd7f7b117))
|
|
||||||
* pdf support in vips ([8ca4f15](https://github.com/C4illin/ConvertX/commit/8ca4f1587df7f358893941c656d78d75f04dac93))
|
|
||||||
* Slow click on conversion popup does not work ([4d9c4d6](https://github.com/C4illin/ConvertX/commit/4d9c4d64aa0266f3928935ada68d91ac81f638aa))
|
|
||||||
|
|
||||||
## [0.3.3](https://github.com/C4illin/ConvertX/compare/v0.3.2...v0.3.3) (2024-07-30)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* downgrade @elysiajs/html dependency to version 1.0.2 ([c714ade](https://github.com/C4illin/ConvertX/commit/c714ade3e23865ba6cfaf76c9e7259df1cda222c))
|
|
||||||
|
|
||||||
## [0.3.2](https://github.com/C4illin/ConvertX/compare/v0.3.1...v0.3.2) (2024-07-09)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* increase max request body to support large uploads ([3ae2db5](https://github.com/C4illin/ConvertX/commit/3ae2db5d9b36fe3dcd4372ddcd32aa573ea59aa6)), closes [#64](https://github.com/C4illin/ConvertX/issues/64)
|
|
||||||
|
|
||||||
## [0.3.1](https://github.com/C4illin/ConvertX/compare/v0.3.0...v0.3.1) (2024-06-27)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* release releases ([4d4c13a](https://github.com/C4illin/ConvertX/commit/4d4c13a8d85ec7c9209ad41cdbea7d4380b0edbf))
|
|
||||||
|
|
||||||
## [0.3.0](https://github.com/C4illin/ConvertX/compare/v0.2.0...v0.3.0) (2024-06-27)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* add version number to log ([4dcb796](https://github.com/C4illin/ConvertX/commit/4dcb796e1bd27badc078d0638076cd9f1e81c4a4)), closes [#44](https://github.com/C4illin/ConvertX/issues/44)
|
|
||||||
* change to xelatex ([fae2ba9](https://github.com/C4illin/ConvertX/commit/fae2ba9c54461dccdccd1bfb5e76398540d11d0b))
|
|
||||||
* print version of installed converters to log ([801cf28](https://github.com/C4illin/ConvertX/commit/801cf28d1e5edac9353b0b16be75a4fb48470b8a))
|
|
||||||
|
|
||||||
## [0.2.0](https://github.com/C4illin/ConvertX/compare/v0.1.2...v0.2.0) (2024-06-20)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* add libjxl for jpegxl conversion ([ff680cb](https://github.com/C4illin/ConvertX/commit/ff680cb29534a25c3148a90fd064bb86c71fb482))
|
|
||||||
* change from debian to alpine ([1316957](https://github.com/C4illin/ConvertX/commit/13169574f0134ae236f8d41287bb73930b575e82)), closes [#34](https://github.com/C4illin/ConvertX/issues/34)
|
|
||||||
|
|
||||||
## [0.1.2](https://github.com/C4illin/ConvertX/compare/v0.1.1...v0.1.2) (2024-06-10)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* fix incorrect redirect ([25df58b](https://github.com/C4illin/ConvertX/commit/25df58ba82321aaa6617811a6995cb96c2a00a40)), closes [#23](https://github.com/C4illin/ConvertX/issues/23)
|
|
||||||
|
|
||||||
## [0.1.1](https://github.com/C4illin/ConvertX/compare/v0.1.0...v0.1.1) (2024-05-30)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* :bug: make sure all redirects are 302 ([9970fd3](https://github.com/C4illin/ConvertX/commit/9970fd3f89190af96f8762edc3817d1e03082b3a)), closes [#12](https://github.com/C4illin/ConvertX/issues/12)
|
|
||||||
|
|
||||||
## 0.1.0 (2024-05-30)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* remove file from file list in index.html ([787ff97](https://github.com/C4illin/ConvertX/commit/787ff9741ecbbf4fb4c02b43bd22a214a173fd7b))
|
|
||||||
|
|
||||||
|
|
||||||
### Miscellaneous Chores
|
|
||||||
|
|
||||||
* release 0.1.0 ([54d9aec](https://github.com/C4illin/ConvertX/commit/54d9aecbf949689b12aa7e5e8e9be7b9032f4431))
|
|
||||||
46
Dockerfile
@@ -1,5 +1,4 @@
|
|||||||
FROM oven/bun:1.1.45-alpine AS base
|
FROM oven/bun:1-debian as base
|
||||||
LABEL org.opencontainers.image.source="https://github.com/C4illin/ConvertX"
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# install dependencies into temp directory
|
# install dependencies into temp directory
|
||||||
@@ -14,22 +13,16 @@ RUN mkdir -p /temp/prod
|
|||||||
COPY package.json bun.lockb /temp/prod/
|
COPY package.json bun.lockb /temp/prod/
|
||||||
RUN cd /temp/prod && bun install --frozen-lockfile --production
|
RUN cd /temp/prod && bun install --frozen-lockfile --production
|
||||||
|
|
||||||
FROM base AS builder
|
|
||||||
RUN apk --no-cache add curl gcc
|
|
||||||
ENV PATH=/root/.cargo/bin:$PATH
|
|
||||||
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
||||||
RUN cargo install resvg
|
|
||||||
|
|
||||||
# copy node_modules from temp directory
|
# copy node_modules from temp directory
|
||||||
# then copy all (non-ignored) project files into the image
|
# then copy all (non-ignored) project files into the image
|
||||||
FROM base AS prerelease
|
# FROM base AS prerelease
|
||||||
COPY --from=install /temp/dev/node_modules node_modules
|
# COPY --from=install /temp/dev/node_modules node_modules
|
||||||
COPY . .
|
# COPY . .
|
||||||
|
|
||||||
# # [optional] tests & build
|
# # [optional] tests & build
|
||||||
ENV NODE_ENV=production
|
# ENV NODE_ENV=production
|
||||||
# RUN bun test
|
# RUN bun test
|
||||||
RUN bun run build
|
# RUN bun run build
|
||||||
|
|
||||||
# copy production dependencies and source code into final image
|
# copy production dependencies and source code into final image
|
||||||
FROM base AS release
|
FROM base AS release
|
||||||
@@ -38,36 +31,21 @@ LABEL description="ConvertX: self-hosted online file converter supporting 700+ f
|
|||||||
LABEL repo="https://github.com/C4illin/ConvertX"
|
LABEL repo="https://github.com/C4illin/ConvertX"
|
||||||
|
|
||||||
# install additional dependencies
|
# install additional dependencies
|
||||||
RUN apk --no-cache add \
|
RUN rm -rf /var/lib/apt/lists/partial && apt-get update -o Acquire::CompressionTypes::Order::=gz \
|
||||||
|
&& apt-get install -y \
|
||||||
pandoc \
|
pandoc \
|
||||||
texlive \
|
texlive-latex-recommended \
|
||||||
texlive-xetex \
|
texlive-fonts-recommended \
|
||||||
texmf-dist-latexextra \
|
texlive-latex-extra \
|
||||||
ffmpeg \
|
ffmpeg \
|
||||||
graphicsmagick \
|
graphicsmagick \
|
||||||
ghostscript \
|
ghostscript \
|
||||||
vips-tools \
|
libvips-tools
|
||||||
vips-poppler \
|
|
||||||
vips-jxl \
|
|
||||||
libjxl-tools \
|
|
||||||
assimp \
|
|
||||||
inkscape \
|
|
||||||
poppler-utils
|
|
||||||
|
|
||||||
RUN apk --no-cache add qt6-qtbase-private-dev --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community/
|
|
||||||
|
|
||||||
RUN apk --no-cache add calibre --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/
|
|
||||||
|
|
||||||
# this might be needed for some latex use cases, will add it if needed.
|
|
||||||
# texmf-dist-fontsextra \
|
|
||||||
|
|
||||||
COPY --from=install /temp/prod/node_modules node_modules
|
COPY --from=install /temp/prod/node_modules node_modules
|
||||||
COPY --from=builder /root/.cargo/bin/resvg /usr/local/bin/resvg
|
|
||||||
COPY --from=prerelease /app/public/generated.css /app/public/
|
|
||||||
# COPY --from=prerelease /app/src/index.tsx /app/src/
|
# COPY --from=prerelease /app/src/index.tsx /app/src/
|
||||||
# COPY --from=prerelease /app/package.json .
|
# COPY --from=prerelease /app/package.json .
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
EXPOSE 3000/tcp
|
EXPOSE 3000/tcp
|
||||||
ENV NODE_ENV=production
|
|
||||||
ENTRYPOINT [ "bun", "run", "./src/index.tsx" ]
|
ENTRYPOINT [ "bun", "run", "./src/index.tsx" ]
|
||||||
226
README.md
@@ -1,148 +1,78 @@
|
|||||||

|

|
||||||
|
# ConvertX
|
||||||
# ConvertX
|
[](https://github.com/C4illin/ConvertX/actions/workflows/docker-publish.yml)
|
||||||
|
|
||||||
[](https://github.com/C4illin/ConvertX/actions/workflows/docker-publish.yml)
|
A self-hosted online file converter. Supports 831 different formats. Written with Typescript, Bun and Elysia.
|
||||||
[](https://github.com/C4illin/ConvertX/pkgs/container/ConvertX)
|
|
||||||
[](https://hub.docker.com/r/c4illin/convertx)
|
## Features
|
||||||
[](https://github.com/C4illin/ConvertX/pkgs/container/convertx)
|
|
||||||

|
- Convert files to different formats
|
||||||

|
- Password protection
|
||||||

|
- Multiple accounts
|
||||||
<!--  -->
|
|
||||||
|
## Converters supported
|
||||||
A self-hosted online file converter. Supports over a thousand different formats. Written with TypeScript, Bun and Elysia.
|
|
||||||
|
| Converter | Use case | Converts from | Converts to |
|
||||||
## Features
|
|----------------|---------------|---------------|-------------|
|
||||||
|
| Vips | Images (fast) | 45 | 23 |
|
||||||
- Convert files to different formats
|
| PDFLaTeX | Documents | 1 | 1 |
|
||||||
- Process multiple files at once
|
| Pandoc | Documents | 43 | 65 |
|
||||||
- Password protection
|
| GraphicsMagick | Images | 166 | 133 |
|
||||||
- Multiple accounts
|
| FFmpeg | Video | ~473 | ~280 |
|
||||||
|
|
||||||
## Converters supported
|
<!-- many ffmpeg fileformats are duplicates -->
|
||||||
|
|
||||||
| Converter | Use case | Converts from | Converts to |
|
## Deployment
|
||||||
|------------------------------------------------------------------------------|---------------|---------------|-------------|
|
|
||||||
| [libjxl](https://github.com/libjxl/libjxl) | JPEG XL | 11 | 11 |
|
```yml
|
||||||
| [resvg](https://github.com/RazrFalcon/resvg) | SVG | 1 | 1 |
|
# docker-compose.yml
|
||||||
| [Vips](https://github.com/libvips/libvips) | Images | 45 | 23 |
|
services:
|
||||||
| [XeLaTeX](https://tug.org/xetex/) | LaTeX | 1 | 1 |
|
convertx:
|
||||||
| [Calibre](https://calibre-ebook.com/) | E-books | 26 | 19 |
|
image: ghcr.io/c4illin/convertx:main
|
||||||
| [Pandoc](https://pandoc.org/) | Documents | 43 | 65 |
|
ports:
|
||||||
| [GraphicsMagick](http://www.graphicsmagick.org/) | Images | 167 | 130 |
|
- "3000:3000"
|
||||||
| [Inkscape](https://inkscape.org/) | Vector images | 7 | 17 |
|
environment: # Defaults are listed below. All are optional.
|
||||||
| [Assimp](https://github.com/assimp/assimp) | 3D Assets | 77 | 23 |
|
- ACCOUNT_REGISTRATION=false # true or false, doesn't matter for the first account (e.g. keep this to false if you only want one account)
|
||||||
| [FFmpeg](https://ffmpeg.org/) | Video | ~472 | ~199 |
|
- JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 # will use randomUUID() by default
|
||||||
|
- HTTP_ALLOWED=false # setting this to true is unsafe, only set this to true locally
|
||||||
<!-- many ffmpeg fileformats are duplicates -->
|
volumes:
|
||||||
|
- convertx:/app/data
|
||||||
Any missing converter? Open an issue or pull request!
|
```
|
||||||
|
|
||||||
## Deployment
|
<!-- or
|
||||||
|
|
||||||
```yml
|
```bash
|
||||||
# docker-compose.yml
|
docker run ghcr.io/c4illin/convertx:master -p 3000:3000 -e ACCOUNT_REGISTRATION=false -v /path/you/want:/app/data
|
||||||
services:
|
``` -->
|
||||||
convertx:
|
|
||||||
image: ghcr.io/c4illin/convertx
|
Then visit `http://localhost:3000` in your browser and create your account. Don't leave it unconfigured and open, as anyone can register the first account.
|
||||||
container_name: convertx
|
|
||||||
restart: unless-stopped
|
If you get unable to open database file run `chown -R $USER:$USER path` on the path you choose.
|
||||||
ports:
|
|
||||||
- "3000:3000"
|
### Tutorial
|
||||||
environment:
|
|
||||||
- JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 # will use randomUUID() if unset
|
Tutorial in french: https://belginux.com/installer-convertx-avec-docker/
|
||||||
volumes:
|
|
||||||
- ./data:/app/data
|
## Todo
|
||||||
```
|
- [x] Add messages for errors in converters
|
||||||
|
- [ ] Add options for converters
|
||||||
or
|
- [ ] Add more converters
|
||||||
|
- [ ] Divide index.tsx into smaller components
|
||||||
```bash
|
- [ ] Add tests
|
||||||
docker run -p 3000:3000 -v ./data:/app/data ghcr.io/c4illin/convertx
|
- [ ] Add searchable list of formats
|
||||||
```
|
|
||||||
|
## Contributors
|
||||||
Then visit `http://localhost:3000` in your browser and create your account. Don't leave it unconfigured and open, as anyone can register the first account.
|
|
||||||
|
<a href="https://github.com/C4illin/ConvertX/graphs/contributors">
|
||||||
If you get unable to open database file run `chown -R $USER:$USER path` on the path you choose.
|
<img src="https://contrib.rocks/image?repo=C4illin/ConvertX" />
|
||||||
|
</a>
|
||||||
### Environment variables
|
|
||||||
|
## Star History
|
||||||
All are optional, JWT_SECRET is recommended to be set.
|
|
||||||
|
<a href="https://github.com/C4illin/ConvertX/stargazers">
|
||||||
| Name | Default | Description |
|
<picture>
|
||||||
|---------------------------|---------|-------------|
|
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=C4illin/ConvertX&type=Date&theme=dark" />
|
||||||
| JWT_SECRET | when unset it will use the value from randomUUID() | A long and secret string used to sign the JSON Web Token |
|
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=C4illin/ConvertX&type=Date" />
|
||||||
| ACCOUNT_REGISTRATION | false | Allow users to register accounts |
|
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=C4illin/ConvertX&type=Date" />
|
||||||
| HTTP_ALLOWED | false | Allow HTTP connections, only set this to true locally |
|
</picture>
|
||||||
| ALLOW_UNAUTHENTICATED | false | Allow unauthenticated users to use the service, only set this to true locally |
|
</a>
|
||||||
| AUTO_DELETE_EVERY_N_HOURS | 24 | Checks every n hours for files older then n hours and deletes them, set to 0 to disable |
|
|
||||||
| WEBROOT | | The address to the root path setting this to "/convert" will serve the website on "example.com/convert/" |
|
|
||||||
| FFMPEG_ARGS | | Arguments to pass to ffmpeg, e.g. `-preset veryfast` |
|
|
||||||
|
|
||||||
> [!WARNING]
|
|
||||||
> If you can't login, make sure you are accessing the service over https or set HTTP_ALLOWED=true
|
|
||||||
|
|
||||||
### Docker images
|
|
||||||
|
|
||||||
There is a `:latest` tag that is updated with every release and a `:main` tag that is updated with every push to the main branch. `:latest` is recommended for normal use.
|
|
||||||
|
|
||||||
The image is available on [GitHub Container Registry](https://github.com/C4illin/ConvertX/pkgs/container/ConvertX) and [Docker Hub](https://hub.docker.com/r/c4illin/convertx).
|
|
||||||
|
|
||||||
| Image | What it is |
|
|
||||||
|-------|------------|
|
|
||||||
| `image: ghcr.io/c4illin/convertx` | The latest release on ghcr |
|
|
||||||
| `image: ghcr.io/c4illin/convertx:main` | The latest commit on ghcr |
|
|
||||||
| `image: c4illin/convertx` | The latest release on docker hub |
|
|
||||||
| `image: c4illin/convertx:main` | The latest commit on docker hub |
|
|
||||||
|
|
||||||
<!-- Dockerhub was introduced in 0.9.0 and older releases -->
|
|
||||||
|
|
||||||
### Tutorial
|
|
||||||
|
|
||||||
Tutorial in french: <https://belginux.com/installer-convertx-avec-docker/>
|
|
||||||
|
|
||||||
Tutorial in chinese: <https://xzllll.com/24092901/>
|
|
||||||
|
|
||||||
## Screenshots
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
## Development
|
|
||||||
|
|
||||||
0. Install [Bun](https://bun.sh/) and Git
|
|
||||||
1. Clone the repository
|
|
||||||
2. `bun install`
|
|
||||||
3. `bun run dev`
|
|
||||||
|
|
||||||
Pull requests are welcome! See below and open issues for the list of todos.
|
|
||||||
|
|
||||||
## Todo
|
|
||||||
|
|
||||||
- [x] Add messages for errors in converters
|
|
||||||
- [x] Add searchable list of formats
|
|
||||||
- [ ] Add options for converters
|
|
||||||
- [ ] Divide index.tsx into smaller components
|
|
||||||
- [ ] Add tests
|
|
||||||
- [ ] Make the upload button nicer and more easy to drop files on. Support copy paste as well if possible.
|
|
||||||
- [ ] Make errors logs visible from the web ui
|
|
||||||
- [ ] Add more converters:
|
|
||||||
- [ ] [deark](https://github.com/jsummers/deark)
|
|
||||||
- [ ] LibreOffice
|
|
||||||
- [ ] [dvisvgm](https://github.com/mgieseki/dvisvgm)
|
|
||||||
|
|
||||||
## Contributors
|
|
||||||
|
|
||||||
<a href="https://github.com/C4illin/ConvertX/graphs/contributors">
|
|
||||||
<img src="https://contrib.rocks/image?repo=C4illin/ConvertX" alt="Image with all contributors"/>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
## Star History
|
|
||||||
|
|
||||||
<a href="https://github.com/C4illin/ConvertX/stargazers">
|
|
||||||
<picture>
|
|
||||||
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=C4illin/ConvertX&type=Date&theme=dark" />
|
|
||||||
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=C4illin/ConvertX&type=Date" />
|
|
||||||
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=C4illin/ConvertX&type=Date" />
|
|
||||||
</picture>
|
|
||||||
</a>
|
|
||||||
|
|||||||
23
biome.json
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
|
||||||
"formatter": {
|
"formatter": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"formatWithErrors": true,
|
"formatWithErrors": true,
|
||||||
@@ -9,15 +9,7 @@
|
|||||||
"lineWidth": 80,
|
"lineWidth": 80,
|
||||||
"attributePosition": "auto"
|
"attributePosition": "auto"
|
||||||
},
|
},
|
||||||
"files": {
|
"organizeImports": { "enabled": true },
|
||||||
"ignore": [
|
|
||||||
"**/node_modules/**",
|
|
||||||
"**/pico.lime.min.css"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"organizeImports": {
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
"linter": {
|
"linter": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"rules": {
|
"rules": {
|
||||||
@@ -30,11 +22,7 @@
|
|||||||
"useLiteralKeys": "error",
|
"useLiteralKeys": "error",
|
||||||
"useOptionalChain": "error"
|
"useOptionalChain": "error"
|
||||||
},
|
},
|
||||||
"correctness": {
|
"correctness": { "noPrecisionLoss": "error", "noUnusedVariables": "off" },
|
||||||
"noPrecisionLoss": "error",
|
|
||||||
"noUnusedVariables": "off",
|
|
||||||
"useJsxKeyInIterable": "off"
|
|
||||||
},
|
|
||||||
"style": {
|
"style": {
|
||||||
"noInferrableTypes": "error",
|
"noInferrableTypes": "error",
|
||||||
"noNamespace": "error",
|
"noNamespace": "error",
|
||||||
@@ -54,9 +42,6 @@
|
|||||||
"noUnsafeDeclarationMerging": "error",
|
"noUnsafeDeclarationMerging": "error",
|
||||||
"useAwait": "error",
|
"useAwait": "error",
|
||||||
"useNamespaceKeyword": "error"
|
"useNamespaceKeyword": "error"
|
||||||
},
|
|
||||||
"nursery": {
|
|
||||||
"useSortedClasses": "error"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -72,4 +57,4 @@
|
|||||||
"attributePosition": "auto"
|
"attributePosition": "auto"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
28
compose.yaml
@@ -1,17 +1,11 @@
|
|||||||
services:
|
services:
|
||||||
convertx:
|
convertx:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
# dockerfile: Debian.Dockerfile
|
volumes:
|
||||||
volumes:
|
- ./data:/app/data
|
||||||
- ./data:/app/data
|
environment:
|
||||||
environment: # Defaults are listed below. All are optional.
|
- ACCOUNT_REGISTRATION=true
|
||||||
- ACCOUNT_REGISTRATION=true # true or false, doesn't matter for the first account (e.g. keep this to false if you only want one account)
|
- JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234
|
||||||
- JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 # will use randomUUID() by default
|
ports:
|
||||||
- HTTP_ALLOWED=true # setting this to true is unsafe, only set this to true locally
|
- 3000:3000
|
||||||
- ALLOW_UNAUTHENTICATED=true # allows anyone to use the service without logging in, only set this to true locally
|
|
||||||
- AUTO_DELETE_EVERY_N_HOURS=1 # checks every n hours for files older then n hours and deletes them, set to 0 to disable
|
|
||||||
# - FFMPEG_ARGS=-hwaccel vulkan # additional arguments to pass to ffmpeg
|
|
||||||
# - WEBROOT=/convertx # the root path of the web interface, leave empty to disable
|
|
||||||
ports:
|
|
||||||
- 3000:3000
|
|
||||||
|
|||||||
@@ -1,59 +0,0 @@
|
|||||||
import { fixupPluginRules } from "@eslint/compat";
|
|
||||||
import eslint from "@eslint/js";
|
|
||||||
import deprecationPlugin from "eslint-plugin-deprecation";
|
|
||||||
import eslintPluginReadableTailwind from "eslint-plugin-readable-tailwind";
|
|
||||||
import simpleImportSortPlugin from "eslint-plugin-simple-import-sort";
|
|
||||||
import tailwind from "eslint-plugin-tailwindcss";
|
|
||||||
import globals from "globals";
|
|
||||||
import tseslint from "typescript-eslint";
|
|
||||||
|
|
||||||
export default tseslint.config(
|
|
||||||
eslint.configs.recommended,
|
|
||||||
...tseslint.configs.recommended,
|
|
||||||
...tailwind.configs["flat/recommended"],
|
|
||||||
{
|
|
||||||
plugins: {
|
|
||||||
deprecation: fixupPluginRules(deprecationPlugin),
|
|
||||||
"simple-import-sort": simpleImportSortPlugin,
|
|
||||||
"readable-tailwind": eslintPluginReadableTailwind,
|
|
||||||
},
|
|
||||||
ignores: ["**/node_modules/**"],
|
|
||||||
languageOptions: {
|
|
||||||
parserOptions: {
|
|
||||||
projectService: true,
|
|
||||||
tsconfigRootDir: import.meta.dirname,
|
|
||||||
ecmaVersion: "latest",
|
|
||||||
sourceType: "module",
|
|
||||||
project: ["./tsconfig.json"],
|
|
||||||
},
|
|
||||||
globals: {
|
|
||||||
...globals.node,
|
|
||||||
...globals.browser,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
files: ["**/*.{js,mjs,cjs,tsx,ts}"],
|
|
||||||
rules: {
|
|
||||||
...eslintPluginReadableTailwind.configs.warning.rules,
|
|
||||||
"tailwindcss/classnames-order": "off",
|
|
||||||
"readable-tailwind/multiline": [
|
|
||||||
"warn",
|
|
||||||
{
|
|
||||||
group: "newLine",
|
|
||||||
printWidth: 100,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"tailwindcss/no-custom-classname": [
|
|
||||||
"warn",
|
|
||||||
{
|
|
||||||
whitelist: [
|
|
||||||
"select_container",
|
|
||||||
"convert_to_popup",
|
|
||||||
"convert_to_group",
|
|
||||||
"target",
|
|
||||||
"convert_to_target",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 53 KiB |
65
package.json
@@ -1,55 +1,40 @@
|
|||||||
{
|
{
|
||||||
"name": "convertx-frontend",
|
"name": "convertx-frontend",
|
||||||
"version": "0.10.0",
|
"version": "1.0.50",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "bun run --watch src/index.tsx",
|
"dev": "bun run --watch src/index.tsx",
|
||||||
"hot": "bun run --hot src/index.tsx",
|
"hot": "bun run --hot src/index.tsx",
|
||||||
"format": "eslint --fix .",
|
"format": "biome format --write ./src",
|
||||||
"build": "postcss ./src/main.css -o ./public/generated.css",
|
"css": "cpy 'node_modules/@picocss/pico/css/pico.lime.min.css' 'src/public/' --flat"
|
||||||
"lint": "run-p 'lint:*'",
|
|
||||||
"lint:tsc": "tsc --noEmit",
|
|
||||||
"lint:knip": "knip",
|
|
||||||
"lint:eslint": "eslint ."
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@elysiajs/cookie": "^0.8.0",
|
"@elysiajs/cookie": "^0.8.0",
|
||||||
"@elysiajs/html": "^1.2.0",
|
"@elysiajs/html": "^1.0.2",
|
||||||
"@elysiajs/jwt": "^1.2.0",
|
"@elysiajs/jwt": "^1.0.2",
|
||||||
"@elysiajs/static": "^1.2.0",
|
"@elysiajs/static": "^1.0.3",
|
||||||
"@kitajs/html": "^4.2.7",
|
"elysia": "^1.0.22",
|
||||||
"elysia": "^1.2.10"
|
"node-poppler": "^7.2.0"
|
||||||
},
|
},
|
||||||
"module": "src/index.tsx",
|
"module": "src/index.tsx",
|
||||||
"type": "module",
|
|
||||||
"bun-create": {
|
"bun-create": {
|
||||||
"start": "bun run src/index.tsx"
|
"start": "bun run src/index.tsx"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/compat": "^1.2.5",
|
"@biomejs/biome": "1.7.3",
|
||||||
"@eslint/js": "^9.18.0",
|
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
|
||||||
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
|
"@kitajs/ts-html-plugin": "^4.0.1",
|
||||||
"@kitajs/ts-html-plugin": "^4.1.1",
|
"@picocss/pico": "^2.0.6",
|
||||||
"@total-typescript/ts-reset": "^0.6.1",
|
"@total-typescript/ts-reset": "^0.5.1",
|
||||||
"@types/bun": "^1.1.16",
|
"@types/bun": "^1.1.3",
|
||||||
"@types/eslint-plugin-tailwindcss": "^3.17.0",
|
"@types/eslint": "^8.56.10",
|
||||||
"@types/eslint__js": "^8.42.3",
|
"@types/node": "^20.12.13",
|
||||||
"@types/node": "^22.10.7",
|
"@types/ws": "^8.5.10",
|
||||||
"autoprefixer": "^10.4.20",
|
"@typescript-eslint/eslint-plugin": "^7.11.0",
|
||||||
"cssnano": "^7.0.6",
|
"@typescript-eslint/parser": "^7.11.0",
|
||||||
"eslint": "^9.18.0",
|
"cpy-cli": "^5.0.0",
|
||||||
"eslint-plugin-deprecation": "^3.0.0",
|
"eslint-config-prettier": "^9.1.0",
|
||||||
"eslint-plugin-readable-tailwind": "^1.8.2",
|
"eslint-plugin-prettier": "^5.1.3",
|
||||||
"eslint-plugin-simple-import-sort": "^12.1.1",
|
"prettier": "^3.2.5",
|
||||||
"eslint-plugin-tailwindcss": "^3.17.5",
|
"typescript": "^5.4.5"
|
||||||
"globals": "^15.14.0",
|
|
||||||
"knip": "^5.42.1",
|
|
||||||
"npm-run-all2": "^7.0.2",
|
|
||||||
"postcss": "^8.5.1",
|
|
||||||
"postcss-cli": "^11.0.0",
|
|
||||||
"prettier": "^3.4.2",
|
|
||||||
"tailwind-scrollbar": "^3.1.0",
|
|
||||||
"tailwindcss": "^3.4.17",
|
|
||||||
"typescript": "^5.7.3",
|
|
||||||
"typescript-eslint": "^8.20.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
import autoprefixer from "autoprefixer";
|
|
||||||
import cssnano from "cssnano";
|
|
||||||
import tailwind from "tailwindcss";
|
|
||||||
import tailwindConfig from "./tailwind.config.js";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
plugins: [autoprefixer, tailwind(tailwindConfig), cssnano],
|
|
||||||
};
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
User-agent: *
|
|
||||||
Disallow: /
|
|
||||||
236
public/script.js
@@ -1,236 +0,0 @@
|
|||||||
const webroot = document.querySelector("meta[name='webroot']").content;
|
|
||||||
const fileInput = document.querySelector('input[type="file"]');
|
|
||||||
const dropZone = document.getElementById("dropzone");
|
|
||||||
const convertButton = document.querySelector("input[type='submit']");
|
|
||||||
const fileNames = [];
|
|
||||||
let fileType;
|
|
||||||
let pendingFiles = 0;
|
|
||||||
let formatSelected = false;
|
|
||||||
|
|
||||||
dropZone.addEventListener("dragover", () => {
|
|
||||||
dropZone.classList.add("dragover");
|
|
||||||
});
|
|
||||||
|
|
||||||
dropZone.addEventListener("dragleave", () => {
|
|
||||||
dropZone.classList.remove("dragover");
|
|
||||||
});
|
|
||||||
|
|
||||||
dropZone.addEventListener("drop", () => {
|
|
||||||
dropZone.classList.remove("dragover");
|
|
||||||
});
|
|
||||||
|
|
||||||
const selectContainer = document.querySelector("form .select_container");
|
|
||||||
|
|
||||||
const updateSearchBar = () => {
|
|
||||||
const convertToInput = document.querySelector(
|
|
||||||
"input[name='convert_to_search']",
|
|
||||||
);
|
|
||||||
const convertToPopup = document.querySelector(".convert_to_popup");
|
|
||||||
const convertToGroupElements = document.querySelectorAll(".convert_to_group");
|
|
||||||
const convertToGroups = {};
|
|
||||||
const convertToElement = document.querySelector("select[name='convert_to']");
|
|
||||||
|
|
||||||
const showMatching = (search) => {
|
|
||||||
for (const [targets, groupElement] of Object.values(convertToGroups)) {
|
|
||||||
let matchingTargetsFound = 0;
|
|
||||||
for (const target of targets) {
|
|
||||||
if (target.dataset.target.includes(search)) {
|
|
||||||
matchingTargetsFound++;
|
|
||||||
target.classList.remove("hidden");
|
|
||||||
target.classList.add("flex");
|
|
||||||
} else {
|
|
||||||
target.classList.add("hidden");
|
|
||||||
target.classList.remove("flex");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (matchingTargetsFound === 0) {
|
|
||||||
groupElement.classList.add("hidden");
|
|
||||||
groupElement.classList.remove("flex");
|
|
||||||
} else {
|
|
||||||
groupElement.classList.remove("hidden");
|
|
||||||
groupElement.classList.add("flex");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
for (const groupElement of convertToGroupElements) {
|
|
||||||
const groupName = groupElement.dataset.converter;
|
|
||||||
|
|
||||||
const targetElements = groupElement.querySelectorAll(".target");
|
|
||||||
const targets = Array.from(targetElements);
|
|
||||||
|
|
||||||
for (const target of targets) {
|
|
||||||
target.onmousedown = () => {
|
|
||||||
convertToElement.value = target.dataset.value;
|
|
||||||
convertToInput.value = `${target.dataset.target} using ${target.dataset.converter}`;
|
|
||||||
formatSelected = true;
|
|
||||||
if (pendingFiles === 0 && fileNames.length > 0) {
|
|
||||||
convertButton.disabled = false;
|
|
||||||
}
|
|
||||||
showMatching("");
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
convertToGroups[groupName] = [targets, groupElement];
|
|
||||||
}
|
|
||||||
|
|
||||||
convertToInput.addEventListener("input", (e) => {
|
|
||||||
showMatching(e.target.value.toLowerCase());
|
|
||||||
});
|
|
||||||
|
|
||||||
convertToInput.addEventListener("search", () => {
|
|
||||||
// when the user clears the search bar using the 'x' button
|
|
||||||
convertButton.disabled = true;
|
|
||||||
formatSelected = false;
|
|
||||||
});
|
|
||||||
|
|
||||||
convertToInput.addEventListener("blur", (e) => {
|
|
||||||
// Keep the popup open even when clicking on a target button
|
|
||||||
// for a split second to allow the click to go through
|
|
||||||
if (e?.relatedTarget?.classList?.contains("target")) {
|
|
||||||
convertToPopup.classList.add("hidden");
|
|
||||||
convertToPopup.classList.remove("flex");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
convertToPopup.classList.add("hidden");
|
|
||||||
convertToPopup.classList.remove("flex");
|
|
||||||
});
|
|
||||||
|
|
||||||
convertToInput.addEventListener("focus", () => {
|
|
||||||
convertToPopup.classList.remove("hidden");
|
|
||||||
convertToPopup.classList.add("flex");
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
// Add a 'change' event listener to the file input element
|
|
||||||
fileInput.addEventListener("change", (e) => {
|
|
||||||
// Get the selected files from the event target
|
|
||||||
const files = e.target.files;
|
|
||||||
|
|
||||||
// Select the file-list table
|
|
||||||
const fileList = document.querySelector("#file-list");
|
|
||||||
|
|
||||||
// Loop through the selected files
|
|
||||||
for (const file of files) {
|
|
||||||
// Create a new table row for each file
|
|
||||||
const row = document.createElement("tr");
|
|
||||||
row.innerHTML = `
|
|
||||||
<td>${file.name}</td>
|
|
||||||
<td>${(file.size / 1024).toFixed(2)} kB</td>
|
|
||||||
<td><a onclick="deleteRow(this)">Remove</a></td>
|
|
||||||
`;
|
|
||||||
|
|
||||||
if (!fileType) {
|
|
||||||
fileType = file.name.split(".").pop();
|
|
||||||
fileInput.setAttribute("accept", `.${fileType}`);
|
|
||||||
setTitle();
|
|
||||||
|
|
||||||
// choose the option that matches the file type
|
|
||||||
// for (const option of convertFromSelect.children) {
|
|
||||||
// console.log(option.value);
|
|
||||||
// if (option.value === fileType) {
|
|
||||||
// option.selected = true;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
fetch(`${webroot}/conversions`, {
|
|
||||||
method: "POST",
|
|
||||||
body: JSON.stringify({ fileType: fileType }),
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
},
|
|
||||||
})
|
|
||||||
.then((res) => res.text())
|
|
||||||
.then((html) => {
|
|
||||||
selectContainer.innerHTML = html;
|
|
||||||
updateSearchBar();
|
|
||||||
})
|
|
||||||
.catch((err) => console.log(err));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Append the row to the file-list table
|
|
||||||
fileList.appendChild(row);
|
|
||||||
|
|
||||||
// Append the file to the hidden input
|
|
||||||
fileNames.push(file.name);
|
|
||||||
}
|
|
||||||
|
|
||||||
uploadFiles(files);
|
|
||||||
});
|
|
||||||
|
|
||||||
const setTitle = () => {
|
|
||||||
const title = document.querySelector("h1");
|
|
||||||
title.textContent = `Convert ${fileType ? `.${fileType}` : ""}`;
|
|
||||||
};
|
|
||||||
|
|
||||||
// Add a onclick for the delete button
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
||||||
const deleteRow = (target) => {
|
|
||||||
const filename = target.parentElement.parentElement.children[0].textContent;
|
|
||||||
const row = target.parentElement.parentElement;
|
|
||||||
row.remove();
|
|
||||||
|
|
||||||
// remove from fileNames
|
|
||||||
const index = fileNames.indexOf(filename);
|
|
||||||
fileNames.splice(index, 1);
|
|
||||||
|
|
||||||
// reset fileInput
|
|
||||||
fileInput.value = "";
|
|
||||||
|
|
||||||
// if fileNames is empty, reset fileType
|
|
||||||
if (fileNames.length === 0) {
|
|
||||||
fileType = null;
|
|
||||||
fileInput.removeAttribute("accept");
|
|
||||||
convertButton.disabled = true;
|
|
||||||
setTitle();
|
|
||||||
}
|
|
||||||
|
|
||||||
fetch(`${webroot}/delete`, {
|
|
||||||
method: "POST",
|
|
||||||
body: JSON.stringify({ filename: filename }),
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
},
|
|
||||||
})
|
|
||||||
.catch((err) => console.log(err));
|
|
||||||
};
|
|
||||||
|
|
||||||
const uploadFiles = (files) => {
|
|
||||||
convertButton.disabled = true;
|
|
||||||
convertButton.textContent = "Uploading...";
|
|
||||||
pendingFiles += 1;
|
|
||||||
|
|
||||||
const formData = new FormData();
|
|
||||||
|
|
||||||
for (const file of files) {
|
|
||||||
formData.append("file", file, file.name);
|
|
||||||
}
|
|
||||||
|
|
||||||
fetch(`${webroot}/upload`, {
|
|
||||||
method: "POST",
|
|
||||||
body: formData,
|
|
||||||
})
|
|
||||||
.then((res) => res.json())
|
|
||||||
.then((data) => {
|
|
||||||
pendingFiles -= 1;
|
|
||||||
if (pendingFiles === 0) {
|
|
||||||
if (formatSelected) {
|
|
||||||
convertButton.disabled = false;
|
|
||||||
}
|
|
||||||
convertButton.textContent = "Convert";
|
|
||||||
}
|
|
||||||
console.log(data);
|
|
||||||
})
|
|
||||||
.catch((err) => console.log(err));
|
|
||||||
};
|
|
||||||
|
|
||||||
const formConvert = document.querySelector(`form[action='${webroot}/convert']`);
|
|
||||||
|
|
||||||
formConvert.addEventListener("submit", () => {
|
|
||||||
const hiddenInput = document.querySelector("input[name='file_names']");
|
|
||||||
hiddenInput.value = JSON.stringify(fileNames);
|
|
||||||
});
|
|
||||||
|
|
||||||
updateSearchBar();
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
||||||
"extends": [
|
|
||||||
"config:recommended",
|
|
||||||
":disableDependencyDashboard"
|
|
||||||
],
|
|
||||||
"lockFileMaintenance": {
|
|
||||||
"enabled": true,
|
|
||||||
"automerge": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,40 +1,30 @@
|
|||||||
import { Html } from "@elysiajs/html";
|
export const BaseHtml = ({ children, title = "ConvertX" }) => (
|
||||||
|
|
||||||
export const BaseHtml = ({
|
|
||||||
children,
|
|
||||||
title = "ConvertX",
|
|
||||||
webroot = "",
|
|
||||||
}: {
|
|
||||||
children: JSX.Element;
|
|
||||||
title?: string;
|
|
||||||
webroot?: string;
|
|
||||||
}) => (
|
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<meta name="webroot" content={webroot} />
|
|
||||||
<title safe>{title}</title>
|
<title safe>{title}</title>
|
||||||
<link rel="stylesheet" href={`${webroot}/generated.css`} />
|
<link rel="stylesheet" href="/pico.lime.min.css" />
|
||||||
|
<link rel="stylesheet" href="/style.css" />
|
||||||
<link
|
<link
|
||||||
rel="apple-touch-icon"
|
rel="apple-touch-icon"
|
||||||
sizes="180x180"
|
sizes="180x180"
|
||||||
href={`${webroot}/apple-touch-icon.png`}
|
href="/apple-touch-icon.png"
|
||||||
/>
|
/>
|
||||||
<link
|
<link
|
||||||
rel="icon"
|
rel="icon"
|
||||||
type="image/png"
|
type="image/png"
|
||||||
sizes="32x32"
|
sizes="32x32"
|
||||||
href={`${webroot}/favicon-32x32.png`}
|
href="/favicon-32x32.png"
|
||||||
/>
|
/>
|
||||||
<link
|
<link
|
||||||
rel="icon"
|
rel="icon"
|
||||||
type="image/png"
|
type="image/png"
|
||||||
sizes="16x16"
|
sizes="16x16"
|
||||||
href={`${webroot}/favicon-16x16.png`}
|
href="/favicon-16x16.png"
|
||||||
/>
|
/>
|
||||||
<link rel="manifest" href={`${webroot}/site.webmanifest`} />
|
<link rel="manifest" href="/site.webmanifest" />
|
||||||
</head>
|
</head>
|
||||||
<body class="w-full bg-neutral-900 text-neutral-200">{children}</body>
|
<body>{children}</body>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,84 +1,48 @@
|
|||||||
import { Html } from "@kitajs/html";
|
|
||||||
|
|
||||||
export const Header = ({
|
export const Header = ({
|
||||||
loggedIn,
|
loggedIn,
|
||||||
accountRegistration,
|
accountRegistration,
|
||||||
allowUnauthenticated,
|
}: { loggedIn?: boolean; accountRegistration?: boolean }) => {
|
||||||
webroot = "",
|
|
||||||
}: {
|
|
||||||
loggedIn?: boolean;
|
|
||||||
accountRegistration?: boolean;
|
|
||||||
allowUnauthenticated?: boolean;
|
|
||||||
webroot?: string;
|
|
||||||
}) => {
|
|
||||||
let rightNav: JSX.Element;
|
let rightNav: JSX.Element;
|
||||||
if (loggedIn) {
|
if (loggedIn) {
|
||||||
rightNav = (
|
rightNav = (
|
||||||
<ul class="flex gap-4">
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a
|
<a href="/history">History</a>
|
||||||
class={`
|
</li>
|
||||||
text-accent-600 transition-all
|
<li>
|
||||||
hover:text-accent-500 hover:underline
|
<a href="/logoff">Logout</a>
|
||||||
`}
|
|
||||||
href={`${webroot}/history`}
|
|
||||||
>
|
|
||||||
History
|
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
{!allowUnauthenticated ? (
|
|
||||||
<li>
|
|
||||||
<a
|
|
||||||
class={`
|
|
||||||
text-accent-600 transition-all
|
|
||||||
hover:text-accent-500 hover:underline
|
|
||||||
`}
|
|
||||||
href={`${webroot}/logoff`}
|
|
||||||
>
|
|
||||||
Logout
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
) : null}
|
|
||||||
</ul>
|
</ul>
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
rightNav = (
|
rightNav = (
|
||||||
<ul class="flex gap-4">
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a
|
<a href="/login">Login</a>
|
||||||
class={`
|
|
||||||
text-accent-600 transition-all
|
|
||||||
hover:text-accent-500 hover:underline
|
|
||||||
`}
|
|
||||||
href={`${webroot}/login`}
|
|
||||||
>
|
|
||||||
Login
|
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
{accountRegistration ? (
|
{accountRegistration && (
|
||||||
<li>
|
<li>
|
||||||
<a
|
<a href="/register">Register</a>
|
||||||
class={`
|
|
||||||
text-accent-600 transition-all
|
|
||||||
hover:text-accent-500 hover:underline
|
|
||||||
`}
|
|
||||||
href={`${webroot}/register`}
|
|
||||||
>
|
|
||||||
Register
|
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
) : null}
|
)}
|
||||||
</ul>
|
</ul>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<header class="w-full p-4">
|
<header className="container">
|
||||||
<nav class="mx-auto flex max-w-4xl justify-between rounded bg-neutral-900 p-4">
|
<nav>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<strong>
|
<strong>
|
||||||
<a href={`${webroot}/`}>ConvertX</a>
|
<a
|
||||||
|
href="/"
|
||||||
|
style={{
|
||||||
|
textDecoration: "none",
|
||||||
|
color: "inherit",
|
||||||
|
}}>
|
||||||
|
ConvertX
|
||||||
|
</a>
|
||||||
</strong>
|
</strong>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
@@ -86,4 +50,4 @@ export const Header = ({
|
|||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
@@ -1,141 +0,0 @@
|
|||||||
import { exec } from "node:child_process";
|
|
||||||
|
|
||||||
export const properties = {
|
|
||||||
from: {
|
|
||||||
object: [
|
|
||||||
"3d",
|
|
||||||
"3ds",
|
|
||||||
"3mf",
|
|
||||||
"ac",
|
|
||||||
"ac3d",
|
|
||||||
"acc",
|
|
||||||
"amf",
|
|
||||||
"amj",
|
|
||||||
"ase",
|
|
||||||
"ask",
|
|
||||||
"assbin",
|
|
||||||
"b3d",
|
|
||||||
"blend",
|
|
||||||
"bsp",
|
|
||||||
"bvh",
|
|
||||||
"cob",
|
|
||||||
"csm",
|
|
||||||
"dae",
|
|
||||||
"dxf",
|
|
||||||
"enff",
|
|
||||||
"fbx",
|
|
||||||
"glb",
|
|
||||||
"gltf",
|
|
||||||
"hmb",
|
|
||||||
"hmp",
|
|
||||||
"ifc",
|
|
||||||
"ifczip",
|
|
||||||
"iqm",
|
|
||||||
"irr",
|
|
||||||
"irrmesh",
|
|
||||||
"lwo",
|
|
||||||
"lws",
|
|
||||||
"lxo",
|
|
||||||
"m3d",
|
|
||||||
"md2",
|
|
||||||
"md3",
|
|
||||||
"md5anim",
|
|
||||||
"md5camera",
|
|
||||||
"md5mesh",
|
|
||||||
"mdc",
|
|
||||||
"mdl",
|
|
||||||
"mesh.xml",
|
|
||||||
"mesh",
|
|
||||||
"mot",
|
|
||||||
"ms3d",
|
|
||||||
"ndo",
|
|
||||||
"nff",
|
|
||||||
"obj",
|
|
||||||
"off",
|
|
||||||
"ogex",
|
|
||||||
"pk3",
|
|
||||||
"ply",
|
|
||||||
"pmx",
|
|
||||||
"prj",
|
|
||||||
"q3o",
|
|
||||||
"q3s",
|
|
||||||
"raw",
|
|
||||||
"scn",
|
|
||||||
"sib",
|
|
||||||
"smd",
|
|
||||||
"step",
|
|
||||||
"stl",
|
|
||||||
"stp",
|
|
||||||
"ter",
|
|
||||||
"uc",
|
|
||||||
"usd",
|
|
||||||
"usda",
|
|
||||||
"usdc",
|
|
||||||
"usdz",
|
|
||||||
"vta",
|
|
||||||
"x",
|
|
||||||
"x3d",
|
|
||||||
"x3db",
|
|
||||||
"xgl",
|
|
||||||
"xml",
|
|
||||||
"zae",
|
|
||||||
"zgl",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
to: {
|
|
||||||
object: [
|
|
||||||
"3ds",
|
|
||||||
"3mf",
|
|
||||||
"assbin",
|
|
||||||
"assjson",
|
|
||||||
"assxml",
|
|
||||||
"collada",
|
|
||||||
"dae",
|
|
||||||
"fbx",
|
|
||||||
"fbxa",
|
|
||||||
"glb",
|
|
||||||
"glb2",
|
|
||||||
"gltf",
|
|
||||||
"gltf2",
|
|
||||||
"json",
|
|
||||||
"obj",
|
|
||||||
"objnomtl",
|
|
||||||
"pbrt",
|
|
||||||
"ply",
|
|
||||||
"plyb",
|
|
||||||
"stl",
|
|
||||||
"stlb",
|
|
||||||
"stp",
|
|
||||||
"x",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export async function convert(
|
|
||||||
filePath: string,
|
|
||||||
fileType: string,
|
|
||||||
convertTo: string,
|
|
||||||
targetPath: string,
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
||||||
options?: unknown,
|
|
||||||
): Promise<string> {
|
|
||||||
const command = `assimp export "${filePath}" "${targetPath}"`;
|
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
|
||||||
exec(command, (error, stdout, stderr) => {
|
|
||||||
if (error) {
|
|
||||||
reject(`error: ${error}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(`stdout: ${stdout}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stderr) {
|
|
||||||
console.error(`stderr: ${stderr}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
resolve("Done");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -1,86 +0,0 @@
|
|||||||
import { exec } from "node:child_process";
|
|
||||||
|
|
||||||
export const properties = {
|
|
||||||
from: {
|
|
||||||
document: [
|
|
||||||
"azw4",
|
|
||||||
"chm",
|
|
||||||
"cbr",
|
|
||||||
"cbz",
|
|
||||||
"cbt",
|
|
||||||
"cba",
|
|
||||||
"cb7",
|
|
||||||
"djvu",
|
|
||||||
"docx",
|
|
||||||
"epub",
|
|
||||||
"fb2",
|
|
||||||
"htlz",
|
|
||||||
"html",
|
|
||||||
"lit",
|
|
||||||
"lrf",
|
|
||||||
"mobi",
|
|
||||||
"odt",
|
|
||||||
"pdb",
|
|
||||||
"pdf",
|
|
||||||
"pml",
|
|
||||||
"rb",
|
|
||||||
"rtf",
|
|
||||||
"recipe",
|
|
||||||
"snb",
|
|
||||||
"tcr",
|
|
||||||
"txt",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
to: {
|
|
||||||
document: [
|
|
||||||
"azw3",
|
|
||||||
"docx",
|
|
||||||
"epub",
|
|
||||||
"fb2",
|
|
||||||
"html",
|
|
||||||
"htmlz",
|
|
||||||
"lit",
|
|
||||||
"lrf",
|
|
||||||
"mobi",
|
|
||||||
"oeb",
|
|
||||||
"pdb",
|
|
||||||
"pdf",
|
|
||||||
"pml",
|
|
||||||
"rb",
|
|
||||||
"rtf",
|
|
||||||
"snb",
|
|
||||||
"tcr",
|
|
||||||
"txt",
|
|
||||||
"txtz",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export async function convert(
|
|
||||||
filePath: string,
|
|
||||||
fileType: string,
|
|
||||||
convertTo: string,
|
|
||||||
targetPath: string,
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
||||||
options?: unknown,
|
|
||||||
): Promise<string> {
|
|
||||||
const command = `ebook-convert "${filePath}" "${targetPath}"`;
|
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
|
||||||
exec(command, (error, stdout, stderr) => {
|
|
||||||
if (error) {
|
|
||||||
reject(`error: ${error}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(`stdout: ${stdout}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stderr) {
|
|
||||||
console.error(`stderr: ${stderr}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
resolve("Done");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -143,7 +143,6 @@ export const properties = {
|
|||||||
"svgz",
|
"svgz",
|
||||||
"text",
|
"text",
|
||||||
"tga",
|
"tga",
|
||||||
"tif",
|
|
||||||
"tiff",
|
"tiff",
|
||||||
"tile",
|
"tile",
|
||||||
"tim",
|
"tim",
|
||||||
@@ -228,6 +227,7 @@ export const properties = {
|
|||||||
"jbig",
|
"jbig",
|
||||||
"jng",
|
"jng",
|
||||||
"jpeg",
|
"jpeg",
|
||||||
|
"jpg",
|
||||||
"k",
|
"k",
|
||||||
"m",
|
"m",
|
||||||
"m2v",
|
"m2v",
|
||||||
@@ -313,8 +313,8 @@ export function convert(
|
|||||||
fileType: string,
|
fileType: string,
|
||||||
convertTo: string,
|
convertTo: string,
|
||||||
targetPath: string,
|
targetPath: string,
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
||||||
options?: unknown,
|
options?: any,
|
||||||
): Promise<string> {
|
): Promise<string> {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
exec(
|
exec(
|
||||||
@@ -332,7 +332,7 @@ export function convert(
|
|||||||
console.error(`stderr: ${stderr}`);
|
console.error(`stderr: ${stderr}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
resolve("Done");
|
resolve("success");
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,64 +0,0 @@
|
|||||||
import { exec } from "node:child_process";
|
|
||||||
|
|
||||||
export const properties = {
|
|
||||||
from: {
|
|
||||||
images: [
|
|
||||||
"svg",
|
|
||||||
"pdf",
|
|
||||||
"eps",
|
|
||||||
"ps",
|
|
||||||
"wmf",
|
|
||||||
"emf",
|
|
||||||
"png"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
to: {
|
|
||||||
images: [
|
|
||||||
"dxf",
|
|
||||||
"emf",
|
|
||||||
"eps",
|
|
||||||
"fxg",
|
|
||||||
"gpl",
|
|
||||||
"hpgl",
|
|
||||||
"html",
|
|
||||||
"odg",
|
|
||||||
"pdf",
|
|
||||||
"png",
|
|
||||||
"pov",
|
|
||||||
"ps",
|
|
||||||
"sif",
|
|
||||||
"svg",
|
|
||||||
"svgz",
|
|
||||||
"tex",
|
|
||||||
"wmf",
|
|
||||||
]
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export function convert(
|
|
||||||
filePath: string,
|
|
||||||
fileType: string,
|
|
||||||
convertTo: string,
|
|
||||||
targetPath: string,
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
||||||
options?: unknown,
|
|
||||||
): Promise<string> {
|
|
||||||
return new Promise((resolve, reject) => {
|
|
||||||
exec(`inkscape "${filePath}" -o "${targetPath}"`, (error, stdout, stderr) => {
|
|
||||||
if (error) {
|
|
||||||
reject(`error: ${error}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(`stdout: ${stdout}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stderr) {
|
|
||||||
console.error(`stderr: ${stderr}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
resolve("Done");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
import { exec } from "node:child_process";
|
|
||||||
|
|
||||||
// declare possible conversions
|
|
||||||
export const properties = {
|
|
||||||
from: {
|
|
||||||
jxl: ["jxl"],
|
|
||||||
images: [
|
|
||||||
"apng",
|
|
||||||
"exr",
|
|
||||||
"gif",
|
|
||||||
"jpeg",
|
|
||||||
"pam",
|
|
||||||
"pfm",
|
|
||||||
"pgm",
|
|
||||||
"pgx",
|
|
||||||
"png",
|
|
||||||
"ppm",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
to: {
|
|
||||||
jxl: [
|
|
||||||
"apng",
|
|
||||||
"exr",
|
|
||||||
"gif",
|
|
||||||
"jpeg",
|
|
||||||
"pam",
|
|
||||||
"pfm",
|
|
||||||
"pgm",
|
|
||||||
"pgx",
|
|
||||||
"png",
|
|
||||||
"ppm",
|
|
||||||
],
|
|
||||||
images: ["jxl"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export function convert(
|
|
||||||
filePath: string,
|
|
||||||
fileType: string,
|
|
||||||
convertTo: string,
|
|
||||||
targetPath: string,
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
||||||
options?: unknown,
|
|
||||||
): Promise<string> {
|
|
||||||
let tool = "";
|
|
||||||
if (fileType === "jxl") {
|
|
||||||
tool = "djxl";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (convertTo === "jxl") {
|
|
||||||
tool = "cjxl";
|
|
||||||
}
|
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
|
||||||
exec(`${tool} "${filePath}" "${targetPath}"`, (error, stdout, stderr) => {
|
|
||||||
if (error) {
|
|
||||||
reject(`error: ${error}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(`stdout: ${stdout}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stderr) {
|
|
||||||
console.error(`stderr: ${stderr}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
resolve("Done");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -1,65 +1,68 @@
|
|||||||
import { normalizeFiletype } from "../helpers/normalizeFiletype";
|
|
||||||
import { convert as convertassimp, properties as propertiesassimp } from "./assimp";
|
|
||||||
import { convert as convertFFmpeg, properties as propertiesFFmpeg } from "./ffmpeg";
|
|
||||||
import { convert as convertGraphicsmagick, properties as propertiesGraphicsmagick } from "./graphicsmagick";
|
|
||||||
import { convert as convertInkscape, properties as propertiesInkscape } from "./inkscape";
|
|
||||||
import { convert as convertLibjxl, properties as propertiesLibjxl } from "./libjxl";
|
|
||||||
import { convert as convertPandoc, properties as propertiesPandoc } from "./pandoc";
|
|
||||||
import { convert as convertresvg, properties as propertiesresvg } from "./resvg";
|
|
||||||
import { convert as convertImage, properties as propertiesImage } from "./vips";
|
import { convert as convertImage, properties as propertiesImage } from "./vips";
|
||||||
import { convert as convertxelatex, properties as propertiesxelatex } from "./xelatex";
|
|
||||||
import { convert as convertCalibre, properties as propertiesCalibre } from "./calibre";
|
|
||||||
|
|
||||||
|
import {
|
||||||
|
convert as convertPandoc,
|
||||||
|
properties as propertiesPandoc,
|
||||||
|
} from "./pandoc";
|
||||||
|
|
||||||
|
import {
|
||||||
|
convert as convertFFmpeg,
|
||||||
|
properties as propertiesFFmpeg,
|
||||||
|
} from "./ffmpeg";
|
||||||
|
|
||||||
|
import {
|
||||||
|
convert as convertGraphicsmagick,
|
||||||
|
properties as propertiesGraphicsmagick,
|
||||||
|
} from "./graphicsmagick";
|
||||||
|
|
||||||
|
import {
|
||||||
|
convert as convertPdflatex,
|
||||||
|
properties as propertiesPdflatex,
|
||||||
|
} from "./pdflatex";
|
||||||
|
|
||||||
|
import { convert as convertPoppler, properties as propertiesPoppler } from "./poppler";
|
||||||
|
|
||||||
|
import { normalizeFiletype } from "../helpers/normalizeFiletype";
|
||||||
|
|
||||||
// This should probably be reconstructed so that the functions are not imported instead the functions hook into this to make the converters more modular
|
// This should probably be reconstructed so that the functions are not imported instead the functions hook into this to make the converters more modular
|
||||||
|
|
||||||
const properties: Record<
|
const properties: {
|
||||||
string,
|
[key: string]: {
|
||||||
{
|
|
||||||
properties: {
|
properties: {
|
||||||
from: Record<string, string[]>;
|
from: { [key: string]: string[] };
|
||||||
to: Record<string, string[]>;
|
to: { [key: string]: string[] };
|
||||||
options?: Record<
|
options?: {
|
||||||
string,
|
[key: string]: {
|
||||||
Record<
|
[key: string]: {
|
||||||
string,
|
|
||||||
{
|
|
||||||
description: string;
|
description: string;
|
||||||
type: string;
|
type: string;
|
||||||
default: number;
|
default: number;
|
||||||
}
|
};
|
||||||
>
|
};
|
||||||
>;
|
};
|
||||||
};
|
};
|
||||||
converter: (
|
converter: (
|
||||||
filePath: string,
|
filePath: string,
|
||||||
fileType: string,
|
fileType: string,
|
||||||
convertTo: string,
|
convertTo: string,
|
||||||
targetPath: string,
|
targetPath: string,
|
||||||
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
||||||
options?: unknown,
|
options?: any,
|
||||||
) => unknown;
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
||||||
}
|
) => any;
|
||||||
> = {
|
};
|
||||||
libjxl: {
|
} = {
|
||||||
properties: propertiesLibjxl,
|
|
||||||
converter: convertLibjxl,
|
|
||||||
},
|
|
||||||
resvg: {
|
|
||||||
properties: propertiesresvg,
|
|
||||||
converter: convertresvg,
|
|
||||||
},
|
|
||||||
vips: {
|
vips: {
|
||||||
properties: propertiesImage,
|
properties: propertiesImage,
|
||||||
converter: convertImage,
|
converter: convertImage,
|
||||||
},
|
},
|
||||||
xelatex: {
|
pdflatex: {
|
||||||
properties: propertiesxelatex,
|
properties: propertiesPdflatex,
|
||||||
converter: convertxelatex,
|
converter: convertPdflatex,
|
||||||
},
|
},
|
||||||
calibre: {
|
poppler: {
|
||||||
properties: propertiesCalibre,
|
properties: propertiesPoppler,
|
||||||
converter: convertCalibre,
|
converter: convertPoppler,
|
||||||
},
|
},
|
||||||
pandoc: {
|
pandoc: {
|
||||||
properties: propertiesPandoc,
|
properties: propertiesPandoc,
|
||||||
@@ -69,14 +72,6 @@ const properties: Record<
|
|||||||
properties: propertiesGraphicsmagick,
|
properties: propertiesGraphicsmagick,
|
||||||
converter: convertGraphicsmagick,
|
converter: convertGraphicsmagick,
|
||||||
},
|
},
|
||||||
inkscape: {
|
|
||||||
properties: propertiesInkscape,
|
|
||||||
converter: convertInkscape,
|
|
||||||
},
|
|
||||||
assimp: {
|
|
||||||
properties: propertiesassimp,
|
|
||||||
converter: convertassimp,
|
|
||||||
},
|
|
||||||
ffmpeg: {
|
ffmpeg: {
|
||||||
properties: propertiesFFmpeg,
|
properties: propertiesFFmpeg,
|
||||||
converter: convertFFmpeg,
|
converter: convertFFmpeg,
|
||||||
@@ -86,19 +81,24 @@ const properties: Record<
|
|||||||
export async function mainConverter(
|
export async function mainConverter(
|
||||||
inputFilePath: string,
|
inputFilePath: string,
|
||||||
fileTypeOriginal: string,
|
fileTypeOriginal: string,
|
||||||
convertTo: string,
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
||||||
|
convertTo: any,
|
||||||
targetPath: string,
|
targetPath: string,
|
||||||
options?: unknown,
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
||||||
|
options?: any,
|
||||||
converterName?: string,
|
converterName?: string,
|
||||||
) {
|
) {
|
||||||
const fileType = normalizeFiletype(fileTypeOriginal);
|
const fileType = normalizeFiletype(fileTypeOriginal);
|
||||||
|
|
||||||
let converterFunc: typeof properties["libjxl"]["converter"] | undefined;
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
||||||
|
let converterFunc: any;
|
||||||
|
// let converterName = converterName;
|
||||||
|
|
||||||
if (converterName) {
|
if (converterName) {
|
||||||
converterFunc = properties[converterName]?.converter;
|
converterFunc = properties[converterName]?.converter;
|
||||||
} else {
|
} else {
|
||||||
// Iterate over each converter in properties
|
// Iterate over each converter in properties
|
||||||
|
// biome-ignore lint/style/noParameterAssign: <explanation>
|
||||||
for (converterName in properties) {
|
for (converterName in properties) {
|
||||||
const converterObj = properties[converterName];
|
const converterObj = properties[converterName];
|
||||||
|
|
||||||
@@ -108,8 +108,9 @@ export async function mainConverter(
|
|||||||
|
|
||||||
for (const key in converterObj.properties.from) {
|
for (const key in converterObj.properties.from) {
|
||||||
if (
|
if (
|
||||||
converterObj?.properties?.from[key]?.includes(fileType) &&
|
// HOW??
|
||||||
converterObj?.properties?.to[key]?.includes(convertTo)
|
converterObj.properties.from[key].includes(fileType) &&
|
||||||
|
converterObj.properties.to[key].includes(convertTo)
|
||||||
) {
|
) {
|
||||||
converterFunc = converterObj.converter;
|
converterFunc = converterObj.converter;
|
||||||
break;
|
break;
|
||||||
@@ -126,7 +127,7 @@ export async function mainConverter(
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const result = await converterFunc(
|
await converterFunc(
|
||||||
inputFilePath,
|
inputFilePath,
|
||||||
fileType,
|
fileType,
|
||||||
convertTo,
|
convertTo,
|
||||||
@@ -136,13 +137,7 @@ export async function mainConverter(
|
|||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
`Converted ${inputFilePath} from ${fileType} to ${convertTo} successfully using ${converterName}.`,
|
`Converted ${inputFilePath} from ${fileType} to ${convertTo} successfully using ${converterName}.`,
|
||||||
result,
|
|
||||||
);
|
);
|
||||||
|
|
||||||
if (typeof result === "string") {
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
return "Done";
|
return "Done";
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(
|
console.error(
|
||||||
@@ -153,7 +148,7 @@ export async function mainConverter(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const possibleTargets: Record<string, Record<string, string[]>> = {};
|
const possibleTargets: { [key: string]: { [key: string]: string[] } } = {};
|
||||||
|
|
||||||
for (const converterName in properties) {
|
for (const converterName in properties) {
|
||||||
const converterProperties = properties[converterName]?.properties;
|
const converterProperties = properties[converterName]?.properties;
|
||||||
@@ -178,7 +173,9 @@ for (const converterName in properties) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const getPossibleTargets = (from: string): Record<string, string[]> => {
|
export const getPossibleTargets = (
|
||||||
|
from: string,
|
||||||
|
): { [key: string]: string[] } => {
|
||||||
const fromClean = normalizeFiletype(from);
|
const fromClean = normalizeFiletype(from);
|
||||||
|
|
||||||
return possibleTargets[fromClean] || {};
|
return possibleTargets[fromClean] || {};
|
||||||
@@ -202,12 +199,11 @@ for (const converterName in properties) {
|
|||||||
}
|
}
|
||||||
possibleInputs.sort();
|
possibleInputs.sort();
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
export const getPossibleInputs = () => {
|
||||||
const getPossibleInputs = () => {
|
|
||||||
return possibleInputs;
|
return possibleInputs;
|
||||||
};
|
};
|
||||||
|
|
||||||
const allTargets: Record<string, string[]> = {};
|
const allTargets: { [key: string]: string[] } = {};
|
||||||
|
|
||||||
for (const converterName in properties) {
|
for (const converterName in properties) {
|
||||||
const converterProperties = properties[converterName]?.properties;
|
const converterProperties = properties[converterName]?.properties;
|
||||||
@@ -218,9 +214,9 @@ for (const converterName in properties) {
|
|||||||
|
|
||||||
for (const key in converterProperties.to) {
|
for (const key in converterProperties.to) {
|
||||||
if (allTargets[converterName]) {
|
if (allTargets[converterName]) {
|
||||||
allTargets[converterName].push(...(converterProperties.to[key] || []));
|
allTargets[converterName].push(...converterProperties.to[key]);
|
||||||
} else {
|
} else {
|
||||||
allTargets[converterName] = converterProperties.to[key] || [];
|
allTargets[converterName] = converterProperties.to[key];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -229,7 +225,7 @@ export const getAllTargets = () => {
|
|||||||
return allTargets;
|
return allTargets;
|
||||||
};
|
};
|
||||||
|
|
||||||
const allInputs: Record<string, string[]> = {};
|
const allInputs: { [key: string]: string[] } = {};
|
||||||
for (const converterName in properties) {
|
for (const converterName in properties) {
|
||||||
const converterProperties = properties[converterName]?.properties;
|
const converterProperties = properties[converterName]?.properties;
|
||||||
|
|
||||||
@@ -239,9 +235,9 @@ for (const converterName in properties) {
|
|||||||
|
|
||||||
for (const key in converterProperties.from) {
|
for (const key in converterProperties.from) {
|
||||||
if (allInputs[converterName]) {
|
if (allInputs[converterName]) {
|
||||||
allInputs[converterName].push(...(converterProperties.from[key] || []));
|
allInputs[converterName].push(...converterProperties.from[key]);
|
||||||
} else {
|
} else {
|
||||||
allInputs[converterName] = converterProperties.from[key] || [];
|
allInputs[converterName] = converterProperties.from[key];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -274,4 +270,4 @@ export const getAllInputs = (converter: string) => {
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
// // print the number of unique Inputs and Outputs
|
// // print the number of unique Inputs and Outputs
|
||||||
// console.log(`Unique Formats: ${uniqueFormats.size}`);
|
// console.log(`Unique Formats: ${uniqueFormats.size}`);
|
||||||
|
|||||||
119
src/converters/old.sharp.ts
Normal file
@@ -0,0 +1,119 @@
|
|||||||
|
import sharp from "sharp";
|
||||||
|
import type { FormatEnum } from "sharp";
|
||||||
|
|
||||||
|
// declare possible conversions
|
||||||
|
export const properties = {
|
||||||
|
from: {
|
||||||
|
images: [
|
||||||
|
"avif",
|
||||||
|
"bif",
|
||||||
|
"csv",
|
||||||
|
"exr",
|
||||||
|
"fits",
|
||||||
|
"gif",
|
||||||
|
"hdr.gz",
|
||||||
|
"hdr",
|
||||||
|
"heic",
|
||||||
|
"heif",
|
||||||
|
"img.gz",
|
||||||
|
"img",
|
||||||
|
"j2c",
|
||||||
|
"j2k",
|
||||||
|
"jp2",
|
||||||
|
"jpeg",
|
||||||
|
"jpx",
|
||||||
|
"jxl",
|
||||||
|
"mat",
|
||||||
|
"mrxs",
|
||||||
|
"ndpi",
|
||||||
|
"nia.gz",
|
||||||
|
"nia",
|
||||||
|
"nii.gz",
|
||||||
|
"nii",
|
||||||
|
"pdf",
|
||||||
|
"pfm",
|
||||||
|
"pgm",
|
||||||
|
"pic",
|
||||||
|
"png",
|
||||||
|
"ppm",
|
||||||
|
"raw",
|
||||||
|
"scn",
|
||||||
|
"svg",
|
||||||
|
"svs",
|
||||||
|
"svslide",
|
||||||
|
"szi",
|
||||||
|
"tif",
|
||||||
|
"tiff",
|
||||||
|
"v",
|
||||||
|
"vips",
|
||||||
|
"vms",
|
||||||
|
"vmu",
|
||||||
|
"webp",
|
||||||
|
"zip",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
to: {
|
||||||
|
images: [
|
||||||
|
"avif",
|
||||||
|
"dzi",
|
||||||
|
"fits",
|
||||||
|
"gif",
|
||||||
|
"hdr.gz",
|
||||||
|
"heic",
|
||||||
|
"heif",
|
||||||
|
"img.gz",
|
||||||
|
"j2c",
|
||||||
|
"j2k",
|
||||||
|
"jp2",
|
||||||
|
"jpeg",
|
||||||
|
"jpx",
|
||||||
|
"jxl",
|
||||||
|
"mat",
|
||||||
|
"nia.gz",
|
||||||
|
"nia",
|
||||||
|
"nii.gz",
|
||||||
|
"nii",
|
||||||
|
"png",
|
||||||
|
"tiff",
|
||||||
|
"vips",
|
||||||
|
"webp",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
options: {
|
||||||
|
svg: {
|
||||||
|
scale: {
|
||||||
|
description: "Scale the image up or down",
|
||||||
|
type: "number",
|
||||||
|
default: 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export async function convert(
|
||||||
|
filePath: string,
|
||||||
|
fileType: string,
|
||||||
|
convertTo: keyof FormatEnum,
|
||||||
|
targetPath: string,
|
||||||
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
||||||
|
options?: any,
|
||||||
|
) {
|
||||||
|
if (fileType === "svg") {
|
||||||
|
const scale = options.scale || 1;
|
||||||
|
const metadata = await sharp(filePath).metadata();
|
||||||
|
|
||||||
|
if (!metadata || !metadata.width || !metadata.height) {
|
||||||
|
throw new Error("Could not get metadata from image");
|
||||||
|
}
|
||||||
|
|
||||||
|
const newWidth = Math.round(metadata.width * scale);
|
||||||
|
const newHeight = Math.round(metadata.height * scale);
|
||||||
|
|
||||||
|
return await sharp(filePath)
|
||||||
|
.resize(newWidth, newHeight)
|
||||||
|
.toFormat(convertTo)
|
||||||
|
.toFile(targetPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
return await sharp(filePath).toFormat(convertTo).toFile(targetPath);
|
||||||
|
}
|
||||||
@@ -124,18 +124,12 @@ export function convert(
|
|||||||
fileType: string,
|
fileType: string,
|
||||||
convertTo: string,
|
convertTo: string,
|
||||||
targetPath: string,
|
targetPath: string,
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
||||||
options?: unknown,
|
options?: any,
|
||||||
): Promise<string> {
|
): Promise<string> {
|
||||||
// set xelatex here
|
|
||||||
const xelatex = ["pdf", "latex"];
|
|
||||||
let option = "";
|
|
||||||
if (xelatex.includes(convertTo)) {
|
|
||||||
option = "--pdf-engine=xelatex";
|
|
||||||
}
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
exec(
|
exec(
|
||||||
`pandoc ${option} "${filePath}" -f ${fileType} -t ${convertTo} -o "${targetPath}"`,
|
`pandoc "${filePath}" -f ${fileType} -t ${convertTo} -o "${targetPath}"`,
|
||||||
(error, stdout, stderr) => {
|
(error, stdout, stderr) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
reject(`error: ${error}`);
|
reject(`error: ${error}`);
|
||||||
@@ -149,7 +143,7 @@ export function convert(
|
|||||||
console.error(`stderr: ${stderr}`);
|
console.error(`stderr: ${stderr}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
resolve("Done");
|
resolve("success");
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -14,18 +14,14 @@ export function convert(
|
|||||||
fileType: string,
|
fileType: string,
|
||||||
convertTo: string,
|
convertTo: string,
|
||||||
targetPath: string,
|
targetPath: string,
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
||||||
options?: unknown,
|
options?: any,
|
||||||
): Promise<string> {
|
): Promise<string> {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
// const fileName: string = (targetPath.split("/").pop() as string).replace(".pdf", "")
|
// const fileName: string = (targetPath.split("/").pop() as string).replace(".pdf", "")
|
||||||
const outputPath = targetPath
|
const outputPath = targetPath.split("/").slice(0, -1).join("/").replace("./", "")
|
||||||
.split("/")
|
|
||||||
.slice(0, -1)
|
|
||||||
.join("/")
|
|
||||||
.replace("./", "");
|
|
||||||
exec(
|
exec(
|
||||||
`latexmk -xelatex -interaction=nonstopmode -output-directory="${outputPath}" "${filePath}"`,
|
`pdflatex -interaction=nonstopmode -output-directory="${outputPath}" "${filePath}"`,
|
||||||
(error, stdout, stderr) => {
|
(error, stdout, stderr) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
reject(`error: ${error}`);
|
reject(`error: ${error}`);
|
||||||
@@ -39,7 +35,7 @@ export function convert(
|
|||||||
console.error(`stderr: ${stderr}`);
|
console.error(`stderr: ${stderr}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
resolve("Done");
|
resolve("success");
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
115
src/converters/poppler.ts
Normal file
@@ -0,0 +1,115 @@
|
|||||||
|
const { Poppler } = require("node-poppler");
|
||||||
|
const poppler = new Poppler();
|
||||||
|
|
||||||
|
export const properties = {
|
||||||
|
from: {
|
||||||
|
text: ["pdf"],
|
||||||
|
},
|
||||||
|
to: {
|
||||||
|
text: [
|
||||||
|
"jpeg",
|
||||||
|
"png",
|
||||||
|
"tiff",
|
||||||
|
"eps",
|
||||||
|
"icc",
|
||||||
|
"pdf",
|
||||||
|
"svg",
|
||||||
|
"ps",
|
||||||
|
"html",
|
||||||
|
"text",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export function convert(
|
||||||
|
filePath: string,
|
||||||
|
fileType: string,
|
||||||
|
convertTo: string,
|
||||||
|
targetPath: string,
|
||||||
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
||||||
|
options?: any,
|
||||||
|
): Promise<string> {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const cairoFiles = [
|
||||||
|
"jpeg",
|
||||||
|
"png",
|
||||||
|
"tiff",
|
||||||
|
"eps",
|
||||||
|
"icc",
|
||||||
|
"pdf",
|
||||||
|
"svg",
|
||||||
|
"ps",
|
||||||
|
];
|
||||||
|
|
||||||
|
if (cairoFiles.includes(convertTo)) {
|
||||||
|
const popplerOptions: {
|
||||||
|
jpegFile?: boolean;
|
||||||
|
pngFile?: boolean;
|
||||||
|
tiffFile?: boolean;
|
||||||
|
epsFile?: boolean;
|
||||||
|
iccFile?: boolean;
|
||||||
|
pdfFile?: boolean;
|
||||||
|
svgFile?: boolean;
|
||||||
|
psFile?: boolean;
|
||||||
|
} = {};
|
||||||
|
|
||||||
|
switch (convertTo) {
|
||||||
|
case "jpeg":
|
||||||
|
popplerOptions.jpegFile = true;
|
||||||
|
break;
|
||||||
|
case "png":
|
||||||
|
popplerOptions.pngFile = true;
|
||||||
|
break;
|
||||||
|
case "tiff":
|
||||||
|
popplerOptions.tiffFile = true;
|
||||||
|
break;
|
||||||
|
case "eps":
|
||||||
|
popplerOptions.epsFile = true;
|
||||||
|
break;
|
||||||
|
case "icc":
|
||||||
|
popplerOptions.iccFile = true;
|
||||||
|
break;
|
||||||
|
case "pdf":
|
||||||
|
popplerOptions.pdfFile = true;
|
||||||
|
break;
|
||||||
|
case "svg":
|
||||||
|
popplerOptions.svgFile = true;
|
||||||
|
break;
|
||||||
|
case "ps":
|
||||||
|
popplerOptions.psFile = true;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
reject(`Invalid convertTo option: ${convertTo}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
poppler
|
||||||
|
.pdfToCairo(filePath, targetPath, popplerOptions)
|
||||||
|
.then(() => {
|
||||||
|
resolve("success");
|
||||||
|
})
|
||||||
|
.catch((err: Error) => {
|
||||||
|
reject(err);
|
||||||
|
});
|
||||||
|
} else if (convertTo === "html") {
|
||||||
|
poppler
|
||||||
|
.pdfToHtml(filePath, targetPath)
|
||||||
|
.then(() => {
|
||||||
|
resolve("success");
|
||||||
|
})
|
||||||
|
.catch((err: Error) => {
|
||||||
|
reject(err);
|
||||||
|
});
|
||||||
|
} else if (convertTo === "text") {
|
||||||
|
poppler
|
||||||
|
.pdfToText(filePath, targetPath)
|
||||||
|
.then(() => {
|
||||||
|
resolve("success");
|
||||||
|
})
|
||||||
|
.catch((err: Error) => {
|
||||||
|
reject(err);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
reject(`Invalid convertTo option: ${convertTo}`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
import { exec } from "node:child_process";
|
|
||||||
|
|
||||||
export const properties = {
|
|
||||||
from: {
|
|
||||||
images: ["svg"],
|
|
||||||
},
|
|
||||||
to: {
|
|
||||||
images: ["png"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export function convert(
|
|
||||||
filePath: string,
|
|
||||||
fileType: string,
|
|
||||||
convertTo: string,
|
|
||||||
targetPath: string,
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
||||||
options?: unknown,
|
|
||||||
): Promise<string> {
|
|
||||||
return new Promise((resolve, reject) => {
|
|
||||||
exec(`resvg "${filePath}" "${targetPath}"`, (error, stdout, stderr) => {
|
|
||||||
if (error) {
|
|
||||||
reject(`error: ${error}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(`stdout: ${stdout}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stderr) {
|
|
||||||
console.error(`stderr: ${stderr}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
resolve("Done");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
import { exec } from "node:child_process";
|
import { exec } from "node:child_process";
|
||||||
|
|
||||||
|
|
||||||
// declare possible conversions
|
// declare possible conversions
|
||||||
export const properties = {
|
export const properties = {
|
||||||
from: {
|
from: {
|
||||||
@@ -95,8 +94,8 @@ export function convert(
|
|||||||
fileType: string,
|
fileType: string,
|
||||||
convertTo: string,
|
convertTo: string,
|
||||||
targetPath: string,
|
targetPath: string,
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
||||||
options?: unknown,
|
options?: any,
|
||||||
): Promise<string> {
|
): Promise<string> {
|
||||||
// if (fileType === "svg") {
|
// if (fileType === "svg") {
|
||||||
// const scale = options.scale || 1;
|
// const scale = options.scale || 1;
|
||||||
@@ -114,29 +113,22 @@ export function convert(
|
|||||||
// .toFormat(convertTo)
|
// .toFormat(convertTo)
|
||||||
// .toFile(targetPath);
|
// .toFile(targetPath);
|
||||||
// }
|
// }
|
||||||
let action = "copy";
|
|
||||||
if (fileType === "pdf") {
|
|
||||||
action = "pdfload";
|
|
||||||
}
|
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
exec(
|
exec(`vips copy "${filePath}" "${targetPath}"`, (error, stdout, stderr) => {
|
||||||
`vips ${action} "${filePath}" "${targetPath}"`,
|
if (error) {
|
||||||
(error, stdout, stderr) => {
|
reject(`error: ${error}`);
|
||||||
if (error) {
|
}
|
||||||
reject(`error: ${error}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
if (stdout) {
|
||||||
console.log(`stdout: ${stdout}`);
|
console.log(`stdout: ${stdout}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (stderr) {
|
if (stderr) {
|
||||||
console.error(`stderr: ${stderr}`);
|
console.error(`stderr: ${stderr}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
resolve("Done");
|
resolve("success");
|
||||||
},
|
});
|
||||||
);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,37 +1,33 @@
|
|||||||
export const normalizeFiletype = (filetype: string): string => {
|
export const normalizeFiletype = (filetype: string): string => {
|
||||||
const lowercaseFiletype = filetype.toLowerCase();
|
const lowercaseFiletype = filetype.toLowerCase();
|
||||||
|
|
||||||
switch (lowercaseFiletype) {
|
switch (lowercaseFiletype) {
|
||||||
case "jfif":
|
case "jpg":
|
||||||
case "jpg":
|
return "jpeg";
|
||||||
return "jpeg";
|
case "htm":
|
||||||
case "htm":
|
return "html";
|
||||||
return "html";
|
case "tex":
|
||||||
case "tex":
|
return "latex";
|
||||||
return "latex";
|
case "md":
|
||||||
case "md":
|
return "markdown";
|
||||||
return "markdown";
|
default:
|
||||||
case "unknown":
|
return lowercaseFiletype;
|
||||||
return "m4a";
|
}
|
||||||
default:
|
};
|
||||||
return lowercaseFiletype;
|
|
||||||
}
|
export const normalizeOutputFiletype = (filetype: string): string => {
|
||||||
};
|
const lowercaseFiletype = filetype.toLowerCase();
|
||||||
|
|
||||||
export const normalizeOutputFiletype = (filetype: string): string => {
|
switch (lowercaseFiletype) {
|
||||||
const lowercaseFiletype = filetype.toLowerCase();
|
case "jpeg":
|
||||||
|
return "jpg";
|
||||||
switch (lowercaseFiletype) {
|
case "latex":
|
||||||
case "jpeg":
|
return "tex";
|
||||||
return "jpg";
|
case "markdown":
|
||||||
case "latex":
|
return "md";
|
||||||
return "tex";
|
case "text":
|
||||||
case "markdown_phpextra":
|
return "txt";
|
||||||
case "markdown_strict":
|
default:
|
||||||
case "markdown_mmd":
|
return lowercaseFiletype;
|
||||||
case "markdown":
|
}
|
||||||
return "md";
|
};
|
||||||
default:
|
|
||||||
return lowercaseFiletype;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|||||||
@@ -1,125 +0,0 @@
|
|||||||
import { exec } from "node:child_process";
|
|
||||||
import { version } from "../../package.json";
|
|
||||||
console.log(`ConvertX v${version}`);
|
|
||||||
|
|
||||||
if (process.env.NODE_ENV === "production") {
|
|
||||||
exec("cat /etc/os-release", (error, stdout) => {
|
|
||||||
if (error) {
|
|
||||||
console.error("Not running on docker, this is not supported.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(stdout.split('PRETTY_NAME="')[1]?.split('"')[0]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
exec("pandoc -v", (error, stdout) => {
|
|
||||||
if (error) {
|
|
||||||
console.error("Pandoc is not installed.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(stdout.split("\n")[0]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
exec("ffmpeg -version", (error, stdout) => {
|
|
||||||
if (error) {
|
|
||||||
console.error("FFmpeg is not installed.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(stdout.split("\n")[0]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
exec("vips -v", (error, stdout) => {
|
|
||||||
if (error) {
|
|
||||||
console.error("Vips is not installed.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(stdout.split("\n")[0]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
exec("gm version", (error, stdout) => {
|
|
||||||
if (error) {
|
|
||||||
console.error("GraphicsMagick is not installed.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(stdout.split("\n")[0]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
exec("inkscape --version", (error, stdout) => {
|
|
||||||
if (error) {
|
|
||||||
console.error("Inkscape is not installed.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(stdout.split("\n")[0]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
exec("djxl --version", (error, stdout) => {
|
|
||||||
if (error) {
|
|
||||||
console.error("libjxl-tools is not installed.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(stdout.split("\n")[0]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
exec("xelatex -version", (error, stdout) => {
|
|
||||||
if (error) {
|
|
||||||
console.error("Tex Live with XeTeX is not installed.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(stdout.split("\n")[0]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
exec("resvg -V", (error, stdout) => {
|
|
||||||
if (error) {
|
|
||||||
console.error("resvg is not installed");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(`resvg v${stdout.split("\n")[0]}`);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
exec("assimp version", (error, stdout) => {
|
|
||||||
if (error) {
|
|
||||||
console.error("assimp is not installed");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(`assimp v${stdout.split("\n")[5]}`);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
exec("ebook-convert --version", (error, stdout) => {
|
|
||||||
if (error) {
|
|
||||||
console.error("ebook-convert (calibre) is not installed");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(stdout.split("\n")[0]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
exec("bun -v", (error, stdout) => {
|
|
||||||
if (error) {
|
|
||||||
console.error("Bun is not installed. wait what");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stdout) {
|
|
||||||
console.log(`Bun v${stdout.split("\n")[0]}`);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
import tw from "tailwindcss";
|
|
||||||
import postcss from "postcss";
|
|
||||||
|
|
||||||
export const generateTailwind = async () => {
|
|
||||||
const result = await Bun.file("./src/main.css")
|
|
||||||
.text()
|
|
||||||
.then((sourceText) => {
|
|
||||||
const config = "./tailwind.config.js";
|
|
||||||
|
|
||||||
return postcss([tw(config)]).process(sourceText, {
|
|
||||||
from: "./src/main.css",
|
|
||||||
to: "./public/generated.css",
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
return result;
|
|
||||||
};
|
|
||||||
1234
src/index.tsx
45
src/main.css
@@ -1,45 +0,0 @@
|
|||||||
@tailwind base;
|
|
||||||
@tailwind components;
|
|
||||||
@tailwind utilities;
|
|
||||||
|
|
||||||
@layer components {
|
|
||||||
.article {
|
|
||||||
@apply p-4 mb-4 bg-neutral-800/40 w-full mx-auto max-w-4xl rounded;
|
|
||||||
}
|
|
||||||
.btn-primary {
|
|
||||||
@apply bg-accent-500 text-contrast rounded p-4 hover:bg-accent-400 cursor-pointer transition-colors;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
|
||||||
--contrast: 255, 255, 255;
|
|
||||||
--neutral-900: 243, 244, 246;
|
|
||||||
--neutral-800: 229, 231, 235;
|
|
||||||
--neutral-700: 209, 213, 219;
|
|
||||||
--neutral-600: 156, 163, 175;
|
|
||||||
--neutral-500: 180, 180, 180;
|
|
||||||
--neutral-400: 75, 85, 99;
|
|
||||||
--neutral-300: 55, 65, 81;
|
|
||||||
--neutral-200: 31, 41, 55;
|
|
||||||
--neutral-100: 17, 24, 39;
|
|
||||||
--accent-400: 132, 204, 22;
|
|
||||||
--accent-500: 101, 163, 13;
|
|
||||||
--accent-600: 77, 124, 15;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
:root {
|
|
||||||
--contrast: 0, 0, 0;
|
|
||||||
--neutral-900: 17, 24, 39;
|
|
||||||
--neutral-800: 31, 41, 55;
|
|
||||||
--neutral-700: 55, 65, 81;
|
|
||||||
--neutral-600: 75, 85, 99;
|
|
||||||
--neutral-500: 107, 114, 128;
|
|
||||||
--neutral-300: 209, 213, 219;
|
|
||||||
--neutral-400: 156, 163, 175;
|
|
||||||
--neutral-200: 229, 231, 235;
|
|
||||||
--accent-600: 101, 163, 13;
|
|
||||||
--accent-500: 132, 204, 22;
|
|
||||||
--accent-400: 163, 230, 53;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 8.1 KiB |
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.3 KiB |
|
Before Width: | Height: | Size: 476 B After Width: | Height: | Size: 476 B |
|
Before Width: | Height: | Size: 960 B After Width: | Height: | Size: 960 B |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
4
src/public/pico.lime.min.css
vendored
Normal file
@@ -1,5 +1,3 @@
|
|||||||
const webroot = document.querySelector("meta[name='webroot']").content;
|
|
||||||
|
|
||||||
window.downloadAll = function () {
|
window.downloadAll = function () {
|
||||||
// Get all download links
|
// Get all download links
|
||||||
const downloadLinks = document.querySelectorAll("a[download]");
|
const downloadLinks = document.querySelectorAll("a[download]");
|
||||||
@@ -20,7 +18,7 @@ let progressElem = document.querySelector("progress");
|
|||||||
const refreshData = () => {
|
const refreshData = () => {
|
||||||
// console.log("Refreshing data...", progressElem.value, progressElem.max);
|
// console.log("Refreshing data...", progressElem.value, progressElem.max);
|
||||||
if (progressElem.value !== progressElem.max) {
|
if (progressElem.value !== progressElem.max) {
|
||||||
fetch(`${webroot}/progress/${jobId}`, {
|
fetch(`/progress/${jobId}`, {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
})
|
})
|
||||||
.then((res) => res.text())
|
.then((res) => res.text())
|
||||||
125
src/public/script.js
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
// Select the file input element
|
||||||
|
const fileInput = document.querySelector('input[type="file"]');
|
||||||
|
const fileNames = [];
|
||||||
|
let fileType;
|
||||||
|
|
||||||
|
const selectContainer = document.querySelector("form > article");
|
||||||
|
|
||||||
|
// const convertFromSelect = document.querySelector("select[name='convert_from']");
|
||||||
|
|
||||||
|
// Add a 'change' event listener to the file input element
|
||||||
|
fileInput.addEventListener("change", (e) => {
|
||||||
|
// console.log(e.target.files);
|
||||||
|
// Get the selected files from the event target
|
||||||
|
const files = e.target.files;
|
||||||
|
|
||||||
|
// Select the file-list table
|
||||||
|
const fileList = document.querySelector("#file-list");
|
||||||
|
|
||||||
|
// Loop through the selected files
|
||||||
|
for (const file of files) {
|
||||||
|
// Create a new table row for each file
|
||||||
|
const row = document.createElement("tr");
|
||||||
|
row.innerHTML = `
|
||||||
|
<td>${file.name}</td>
|
||||||
|
<td>${(file.size / 1024).toFixed(2)} kB</td>
|
||||||
|
<td><a class="secondary" onclick="deleteRow(this)" style="cursor: pointer">Remove</a></td>
|
||||||
|
`;
|
||||||
|
|
||||||
|
if (!fileType) {
|
||||||
|
fileType = file.name.split(".").pop();
|
||||||
|
fileInput.setAttribute("accept", `.${fileType}`);
|
||||||
|
setTitle();
|
||||||
|
|
||||||
|
// choose the option that matches the file type
|
||||||
|
// for (const option of convertFromSelect.children) {
|
||||||
|
// console.log(option.value);
|
||||||
|
// if (option.value === fileType) {
|
||||||
|
// option.selected = true;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
fetch("/conversions", {
|
||||||
|
method: "POST",
|
||||||
|
body: JSON.stringify({ fileType: fileType }),
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
.then((res) => res.text())
|
||||||
|
.then((html) => {
|
||||||
|
selectContainer.innerHTML = html;
|
||||||
|
})
|
||||||
|
.catch((err) => console.log(err));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Append the row to the file-list table
|
||||||
|
fileList.appendChild(row);
|
||||||
|
|
||||||
|
// Append the file to the hidden input
|
||||||
|
fileNames.push(file.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
uploadFiles(files);
|
||||||
|
});
|
||||||
|
|
||||||
|
const setTitle = () => {
|
||||||
|
const title = document.querySelector("h1");
|
||||||
|
title.textContent = `Convert ${fileType ? `.${fileType}` : ""}`;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Add a onclick for the delete button
|
||||||
|
const deleteRow = (target) => {
|
||||||
|
const filename = target.parentElement.parentElement.children[0].textContent;
|
||||||
|
const row = target.parentElement.parentElement;
|
||||||
|
row.remove();
|
||||||
|
|
||||||
|
// remove from fileNames
|
||||||
|
const index = fileNames.indexOf(filename);
|
||||||
|
fileNames.splice(index, 1);
|
||||||
|
|
||||||
|
// if fileNames is empty, reset fileType
|
||||||
|
if (fileNames.length === 0) {
|
||||||
|
fileType = null;
|
||||||
|
fileInput.removeAttribute("accept");
|
||||||
|
setTitle();
|
||||||
|
}
|
||||||
|
|
||||||
|
fetch("/delete", {
|
||||||
|
method: "POST",
|
||||||
|
body: JSON.stringify({ filename: filename }),
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
.then((res) => res.json())
|
||||||
|
.then((data) => {
|
||||||
|
console.log(data);
|
||||||
|
})
|
||||||
|
.catch((err) => console.log(err));
|
||||||
|
};
|
||||||
|
|
||||||
|
const uploadFiles = (files) => {
|
||||||
|
const formData = new FormData();
|
||||||
|
|
||||||
|
for (const file of files) {
|
||||||
|
formData.append("file", file, file.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
fetch("/upload", {
|
||||||
|
method: "POST",
|
||||||
|
body: formData,
|
||||||
|
})
|
||||||
|
.then((res) => res.json())
|
||||||
|
.then((data) => {
|
||||||
|
console.log(data);
|
||||||
|
})
|
||||||
|
.catch((err) => console.log(err));
|
||||||
|
};
|
||||||
|
|
||||||
|
const formConvert = document.querySelector("form[action='/convert']");
|
||||||
|
|
||||||
|
formConvert.addEventListener("submit", (e) => {
|
||||||
|
const hiddenInput = document.querySelector("input[name='file_names']");
|
||||||
|
hiddenInput.value = JSON.stringify(fileNames);
|
||||||
|
});
|
||||||
21
src/public/style.css
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
article {
|
||||||
|
/* height: 300px; */
|
||||||
|
/* width: 300px; */
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
div.icon {
|
||||||
|
height: 100px;
|
||||||
|
width: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
button[type="submit"] {
|
||||||
|
width: 50%
|
||||||
|
}
|
||||||
|
|
||||||
|
div.center {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
/** @type {import('tailwindcss').Config} */
|
|
||||||
|
|
||||||
import tailwindScrollbar from "tailwind-scrollbar";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
content: ["./src/**/*.{html,js,tsx,jsx,cjs,mjs}"],
|
|
||||||
theme: {
|
|
||||||
extend: {
|
|
||||||
colors: {
|
|
||||||
contrast: "rgba(var(--contrast))",
|
|
||||||
"neutral-900": "rgba(var(--neutral-900))",
|
|
||||||
"neutral-800": "rgba(var(--neutral-800))",
|
|
||||||
"neutral-700": "rgba(var(--neutral-700))",
|
|
||||||
"neutral-600": "rgba(var(--neutral-600))",
|
|
||||||
"neutral-500": "rgba(var(--neutral-500))",
|
|
||||||
"neutral-400": "rgba(var(--neutral-400))",
|
|
||||||
"neutral-300": "rgba(var(--neutral-300))",
|
|
||||||
"neutral-200": "rgba(var(--neutral-200))",
|
|
||||||
"neutral-100": "rgba(var(--neutral-100))",
|
|
||||||
"accent-600": "rgba(var(--accent-600))",
|
|
||||||
"accent-500": "rgba(var(--accent-500))",
|
|
||||||
"accent-400": "rgba(var(--accent-400))",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
plugins: [tailwindScrollbar],
|
|
||||||
};
|
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"lib": ["ESNext"],
|
"lib": ["ESNext"],
|
||||||
"module": "ESNext",
|
"module": "esnext",
|
||||||
"target": "ES2021",
|
"target": "esnext",
|
||||||
"moduleResolution": "bundler",
|
"moduleResolution": "bundler",
|
||||||
"moduleDetection": "force",
|
"moduleDetection": "force",
|
||||||
"allowImportingTsExtensions": true,
|
"allowImportingTsExtensions": true,
|
||||||
@@ -17,6 +17,9 @@
|
|||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
|
"types": [
|
||||||
|
"bun-types" // add Bun global
|
||||||
|
],
|
||||||
// non bun init
|
// non bun init
|
||||||
"plugins": [{ "name": "@kitajs/ts-html-plugin" }],
|
"plugins": [{ "name": "@kitajs/ts-html-plugin" }],
|
||||||
"noUncheckedIndexedAccess": true,
|
"noUncheckedIndexedAccess": true,
|
||||||
@@ -27,4 +30,4 @@
|
|||||||
"noImplicitOverride": true
|
"noImplicitOverride": true
|
||||||
// "noImplicitReturns": true
|
// "noImplicitReturns": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||