fixed monolith for docker users
This commit is contained in:
parent
9fa9fe5db0
commit
22b2734494
|
@ -53,10 +53,6 @@ PROXY_BYPASS=
|
||||||
PDF_MARGIN_TOP=
|
PDF_MARGIN_TOP=
|
||||||
PDF_MARGIN_BOTTOM=
|
PDF_MARGIN_BOTTOM=
|
||||||
|
|
||||||
# Singlefile archive settings
|
|
||||||
SINGLEFILE_ARCHIVE_COMMAND= # single-file "{{URL}}" --dump-content
|
|
||||||
SINGLEFILE_ARCHIVE_HTTP_API= # http://singlefile:3000/
|
|
||||||
|
|
||||||
#################
|
#################
|
||||||
# SSO Providers #
|
# SSO Providers #
|
||||||
#################
|
#################
|
||||||
|
|
19
Dockerfile
19
Dockerfile
|
@ -8,15 +8,30 @@ WORKDIR /data
|
||||||
|
|
||||||
COPY ./package.json ./yarn.lock ./playwright.config.ts ./
|
COPY ./package.json ./yarn.lock ./playwright.config.ts ./
|
||||||
|
|
||||||
# Increase timeout to pass github actions arm64 build
|
|
||||||
RUN --mount=type=cache,sharing=locked,target=/usr/local/share/.cache/yarn yarn install --network-timeout 10000000
|
RUN --mount=type=cache,sharing=locked,target=/usr/local/share/.cache/yarn yarn install --network-timeout 10000000
|
||||||
|
|
||||||
# RUN /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" && brew install monolith
|
RUN apt-get update
|
||||||
|
|
||||||
|
RUN apt-get install -y \
|
||||||
|
build-essential \
|
||||||
|
curl \
|
||||||
|
libssl-dev \
|
||||||
|
pkg-config
|
||||||
|
|
||||||
|
RUN apt-get update
|
||||||
|
|
||||||
|
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
|
||||||
|
|
||||||
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
||||||
|
|
||||||
|
RUN cargo install monolith
|
||||||
|
|
||||||
RUN npx playwright install-deps && \
|
RUN npx playwright install-deps && \
|
||||||
apt-get clean && \
|
apt-get clean && \
|
||||||
yarn cache clean
|
yarn cache clean
|
||||||
|
|
||||||
|
RUN yarn playwright install
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
RUN yarn prisma generate && \
|
RUN yarn prisma generate && \
|
||||||
|
|
|
@ -19,9 +19,3 @@ services:
|
||||||
- ./data:/data/data
|
- ./data:/data/data
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
# monolith:
|
|
||||||
# image: ghcr.io/linkwarden/monolith:latest
|
|
||||||
# container_name: monolith
|
|
||||||
# singlefile:
|
|
||||||
# image: rutkai/single-file-web:latest
|
|
||||||
# container_name: singlefile
|
|
||||||
|
|
|
@ -2,7 +2,8 @@ import { prisma } from "@/lib/api/db";
|
||||||
import { LinkRequestQuery, Sort } from "@/types/global";
|
import { LinkRequestQuery, Sort } from "@/types/global";
|
||||||
|
|
||||||
export default async function getLink(userId: number, query: LinkRequestQuery) {
|
export default async function getLink(userId: number, query: LinkRequestQuery) {
|
||||||
const POSTGRES_IS_ENABLED = process.env.DATABASE_URL.startsWith("postgresql");
|
const POSTGRES_IS_ENABLED =
|
||||||
|
process.env.DATABASE_URL?.startsWith("postgresql");
|
||||||
|
|
||||||
let order: any;
|
let order: any;
|
||||||
if (query.sort === Sort.DateNewestFirst) order = { id: "desc" };
|
if (query.sort === Sort.DateNewestFirst) order = { id: "desc" };
|
||||||
|
|
|
@ -4,7 +4,8 @@ import { LinkRequestQuery, Sort } from "@/types/global";
|
||||||
export default async function getLink(
|
export default async function getLink(
|
||||||
query: Omit<LinkRequestQuery, "tagId" | "pinnedOnly">
|
query: Omit<LinkRequestQuery, "tagId" | "pinnedOnly">
|
||||||
) {
|
) {
|
||||||
const POSTGRES_IS_ENABLED = process.env.DATABASE_URL.startsWith("postgresql");
|
const POSTGRES_IS_ENABLED =
|
||||||
|
process.env.DATABASE_URL?.startsWith("postgresql");
|
||||||
|
|
||||||
let order: any;
|
let order: any;
|
||||||
if (query.sort === Sort.DateNewestFirst) order = { id: "desc" };
|
if (query.sort === Sort.DateNewestFirst) order = { id: "desc" };
|
||||||
|
|
|
@ -65,12 +65,12 @@ export default async function postToken(
|
||||||
jti: crypto.randomUUID(),
|
jti: crypto.randomUUID(),
|
||||||
},
|
},
|
||||||
maxAge: expiryDateSecond || 604800,
|
maxAge: expiryDateSecond || 604800,
|
||||||
secret: process.env.NEXTAUTH_SECRET,
|
secret: process.env.NEXTAUTH_SECRET as string,
|
||||||
});
|
});
|
||||||
|
|
||||||
const tokenBody = await decode({
|
const tokenBody = await decode({
|
||||||
token,
|
token,
|
||||||
secret: process.env.NEXTAUTH_SECRET,
|
secret: process.env.NEXTAUTH_SECRET as string,
|
||||||
});
|
});
|
||||||
|
|
||||||
const createToken = await prisma.accessToken.create({
|
const createToken = await prisma.accessToken.create({
|
||||||
|
|
|
@ -1,16 +1,11 @@
|
||||||
import { execSync } from "child_process";
|
import { execSync } from "child_process";
|
||||||
import createFile from "../storage/createFile";
|
import createFile from "../storage/createFile";
|
||||||
import axios from "axios";
|
|
||||||
import { Agent } from "http";
|
|
||||||
import { prisma } from "../db";
|
import { prisma } from "../db";
|
||||||
import { Link } from "@prisma/client";
|
import { Link } from "@prisma/client";
|
||||||
import { Page } from "playwright";
|
|
||||||
|
|
||||||
const handleMonolith = async (link: Link, content: string) => {
|
const handleMonolith = async (link: Link, content: string) => {
|
||||||
if (!link.url) return;
|
if (!link.url) return;
|
||||||
|
|
||||||
let command = process.env.SINGLEFILE_ARCHIVE_COMMAND;
|
|
||||||
let httpApi = process.env.SINGLEFILE_ARCHIVE_HTTP_API;
|
|
||||||
try {
|
try {
|
||||||
let html = execSync(
|
let html = execSync(
|
||||||
`monolith - -I -b ${link.url} ${
|
`monolith - -I -b ${link.url} ${
|
||||||
|
@ -42,56 +37,6 @@ const handleMonolith = async (link: Link, content: string) => {
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("Error running SINGLEFILE_ARCHIVE_COMMAND:", err);
|
console.error("Error running SINGLEFILE_ARCHIVE_COMMAND:", err);
|
||||||
}
|
}
|
||||||
// if (httpApi) {
|
|
||||||
// try {
|
|
||||||
// let html = await axios.post(
|
|
||||||
// httpApi,
|
|
||||||
// { url: link.url },
|
|
||||||
// {
|
|
||||||
// headers: {
|
|
||||||
// "Content-Type": "application/x-www-form-urlencoded",
|
|
||||||
// },
|
|
||||||
// httpAgent: new Agent({ keepAlive: false }),
|
|
||||||
// }
|
|
||||||
// );
|
|
||||||
|
|
||||||
// if (!html.data.length) {
|
|
||||||
// console.error("Error running SINGLEFILE_ARCHIVE_COMMAND: Empty buffer");
|
|
||||||
// return;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// const collectionId = (
|
|
||||||
// await prisma.link.findUnique({
|
|
||||||
// where: { id: link.id },
|
|
||||||
// select: { collectionId: true },
|
|
||||||
// })
|
|
||||||
// )?.collectionId;
|
|
||||||
|
|
||||||
// if (!collectionId) {
|
|
||||||
// console.error(
|
|
||||||
// "Error running SINGLEFILE_ARCHIVE_COMMAND: Collection ID not found"
|
|
||||||
// );
|
|
||||||
// return;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// await createFile({
|
|
||||||
// data: html.data,
|
|
||||||
// filePath: `archives/${collectionId}/${link.id}.html`,
|
|
||||||
// }).then(async () => {
|
|
||||||
// await prisma.link.update({
|
|
||||||
// where: { id: link.id },
|
|
||||||
// data: {
|
|
||||||
// singlefile: `archives/${collectionId}/${link.id}.html`,
|
|
||||||
// },
|
|
||||||
// });
|
|
||||||
// });
|
|
||||||
// } catch (err) {
|
|
||||||
// console.error(
|
|
||||||
// "Error fetching Singlefile using SINGLEFILE_ARCHIVE_HTTP_API:",
|
|
||||||
// err
|
|
||||||
// );
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default handleMonolith;
|
export default handleMonolith;
|
||||||
|
|
Ŝarĝante…
Reference in New Issue