Merge branch 'main' of https://github.com/community-scripts/ProxmoxVED
This commit is contained in:
commit
3083dcada5
@ -35,15 +35,21 @@ function update_script() {
|
|||||||
msg_ok "Stopped $APP"
|
msg_ok "Stopped $APP"
|
||||||
|
|
||||||
msg_info "Updating $APP to ${RELEASE}"
|
msg_info "Updating $APP to ${RELEASE}"
|
||||||
|
cp /opt/cryptpad/config/config.js /opt/config.js
|
||||||
|
wget -q "https://github.com/cryptpad/cryptpad/archive/refs/tags/${RELEASE}.tar.gz" -O $temp_file
|
||||||
|
tar zxf $temp_file
|
||||||
|
cp -rf cryptpad-$RELEASE/* /opt/cryptpad
|
||||||
cd /opt/cryptpad
|
cd /opt/cryptpad
|
||||||
$STD git fetch origin --tags
|
|
||||||
$STD git checkout $RELEASE
|
|
||||||
$STD npm ci
|
$STD npm ci
|
||||||
$STD npm run install:components
|
$STD npm run install:components
|
||||||
$STD npm run build
|
$STD npm run build
|
||||||
echo "${RELEASE}" >/opt/${APP}_version.txt
|
echo "${RELEASE}" >/opt/${APP}_version.txt
|
||||||
msg_ok "Updated $APP to ${RELEASE}"
|
msg_ok "Updated $APP to ${RELEASE}"
|
||||||
|
|
||||||
|
msg_info "Cleaning Up"
|
||||||
|
rm -f $temp_file
|
||||||
|
msg_ok "Cleanup Completed"
|
||||||
|
|
||||||
msg_info "Starting $APP"
|
msg_info "Starting $APP"
|
||||||
systemctl start cryptpad
|
systemctl start cryptpad
|
||||||
msg_ok "Started $APP"
|
msg_ok "Started $APP"
|
||||||
|
48
frontend/src/app/api/versions/route.ts
Normal file
48
frontend/src/app/api/versions/route.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { AppVersion } from "@/lib/types";
|
||||||
|
import { promises as fs } from "fs";
|
||||||
|
import { NextResponse } from "next/server";
|
||||||
|
import path from "path";
|
||||||
|
|
||||||
|
export const dynamic = "force-static";
|
||||||
|
|
||||||
|
const jsonDir = "public/json";
|
||||||
|
const versionsFileName = "versions.json";
|
||||||
|
const encoding = "utf-8";
|
||||||
|
|
||||||
|
const getVersions = async () => {
|
||||||
|
const filePath = path.resolve(jsonDir, versionsFileName);
|
||||||
|
console.log("TEST");
|
||||||
|
console.log("FilePath: ", filePath);
|
||||||
|
const fileContent = await fs.readFile(filePath, encoding);
|
||||||
|
const versions: AppVersion = JSON.parse(fileContent);
|
||||||
|
return versions;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
export async function GET(request: Request) {
|
||||||
|
try {
|
||||||
|
const { searchParams } = new URL(request.url);
|
||||||
|
const slug = searchParams.get("slug");
|
||||||
|
|
||||||
|
if (!slug) {
|
||||||
|
return NextResponse.json({ error: "Missing slug parameter" }, { status: 400 });
|
||||||
|
}
|
||||||
|
console.log("Slug: ", slug);
|
||||||
|
const versions = await getVersions();
|
||||||
|
|
||||||
|
const cleanedSlug = slug.toLowerCase().replace(/[^a-z0-9]/g, '');
|
||||||
|
|
||||||
|
const matchedVersion = Object.values(versions).find(
|
||||||
|
(version: AppVersion) => {
|
||||||
|
const versionNameParts = version.name.split('/');
|
||||||
|
const cleanedVersionName = versionNameParts[1]?.toLowerCase().replace(/[^a-z0-9]/g, '');
|
||||||
|
return cleanedVersionName === cleanedSlug;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
return NextResponse.json(matchedVersion);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
return NextResponse.json({name: "name", version: "No version found"});
|
||||||
|
}
|
||||||
|
}
|
@ -1,7 +1,9 @@
|
|||||||
"use client";
|
"use client";
|
||||||
import { Separator } from "@/components/ui/separator";
|
import { Separator } from "@/components/ui/separator";
|
||||||
import { extractDate } from "@/lib/time";
|
import { extractDate } from "@/lib/time";
|
||||||
import { Script } from "@/lib/types";
|
import { Script, AppVersion } from "@/lib/types";
|
||||||
|
import { fetchVersions } from "@/lib/data";
|
||||||
|
|
||||||
import { X } from "lucide-react";
|
import { X } from "lucide-react";
|
||||||
import Image from "next/image";
|
import Image from "next/image";
|
||||||
|
|
||||||
@ -15,22 +17,48 @@ import InstallCommand from "./ScriptItems/InstallCommand";
|
|||||||
import InterFaces from "./ScriptItems/InterFaces";
|
import InterFaces from "./ScriptItems/InterFaces";
|
||||||
import Tooltips from "./ScriptItems/Tooltips";
|
import Tooltips from "./ScriptItems/Tooltips";
|
||||||
import { basePath } from "@/config/siteConfig";
|
import { basePath } from "@/config/siteConfig";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
|
||||||
|
interface ScriptItemProps {
|
||||||
|
item: Script;
|
||||||
|
setSelectedScript: (script: string | null) => void;
|
||||||
|
}
|
||||||
|
|
||||||
function ScriptItem({
|
function ScriptItem({
|
||||||
item,
|
item,
|
||||||
setSelectedScript,
|
setSelectedScript,
|
||||||
}: {
|
}: ScriptItemProps) {
|
||||||
item: Script;
|
|
||||||
setSelectedScript: (script: string | null) => void;
|
|
||||||
}) {
|
|
||||||
const closeScript = () => {
|
const closeScript = () => {
|
||||||
window.history.pushState({}, document.title, window.location.pathname);
|
window.history.pushState({}, document.title, window.location.pathname);
|
||||||
setSelectedScript(null);
|
setSelectedScript(null);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const [versions, setVersions] = useState<AppVersion[]>([]);
|
||||||
|
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
fetchVersions(item.slug)
|
||||||
|
.then((fetchedVersions) => {
|
||||||
|
console.log("Fetched Versions: ", fetchedVersions);
|
||||||
|
|
||||||
|
// Ensure fetchedVersions is always an array
|
||||||
|
if (Array.isArray(fetchedVersions)) {
|
||||||
|
setVersions(fetchedVersions);
|
||||||
|
} else if (fetchedVersions && typeof fetchedVersions === "object") {
|
||||||
|
setVersions([fetchedVersions]); // Wrap object in an array
|
||||||
|
} else {
|
||||||
|
setVersions([]); // Fallback to empty array
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((error) => console.error("Error fetching versions:", error));
|
||||||
|
}, [item.name]);
|
||||||
|
|
||||||
|
const defaultInstallMethod = item.install_methods?.[0];
|
||||||
|
const os = defaultInstallMethod?.resources?.os || "Proxmox Node";
|
||||||
|
const version = defaultInstallMethod?.resources?.version || "";
|
||||||
|
|
||||||
const defaultInstallMethod = item.install_methods?.[0];
|
|
||||||
const os = defaultInstallMethod?.resources?.os || "Proxmox Node";
|
|
||||||
const version = defaultInstallMethod?.resources?.version || "";
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mr-7 mt-0 flex w-full min-w-fit">
|
<div className="mr-7 mt-0 flex w-full min-w-fit">
|
||||||
@ -71,6 +99,16 @@ function ScriptItem({
|
|||||||
<div className="flex gap-5">
|
<div className="flex gap-5">
|
||||||
<DefaultSettings item={item} />
|
<DefaultSettings item={item} />
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
|
||||||
|
{versions.length === 0 ? (
|
||||||
|
<p>Loading versions...</p>
|
||||||
|
) : (
|
||||||
|
<p>Version: {versions[0].version}</p>
|
||||||
|
)}
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -8,3 +8,11 @@ export const fetchCategories = async () => {
|
|||||||
const categories: Category[] = await response.json();
|
const categories: Category[] = await response.json();
|
||||||
return categories;
|
return categories;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const fetchVersions = async (slug: string) => {
|
||||||
|
const response = await fetch(`api/versions?slug=${slug}`);
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(`Failed to fetch versions: ${response.statusText}`);
|
||||||
|
}
|
||||||
|
return response.json();
|
||||||
|
};
|
||||||
|
@ -13,6 +13,7 @@ export type Script = {
|
|||||||
website: string | null;
|
website: string | null;
|
||||||
logo: string | null;
|
logo: string | null;
|
||||||
description: string;
|
description: string;
|
||||||
|
version: string;
|
||||||
install_methods: {
|
install_methods: {
|
||||||
type: "default" | "alpine";
|
type: "default" | "alpine";
|
||||||
script: string;
|
script: string;
|
||||||
@ -47,6 +48,11 @@ export type Metadata = {
|
|||||||
categories: Category[];
|
categories: Category[];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export interface AppVersion {
|
||||||
|
name: string;
|
||||||
|
version: string;
|
||||||
|
}
|
||||||
|
|
||||||
export interface Version {
|
export interface Version {
|
||||||
name: string;
|
name: string;
|
||||||
slug: string;
|
slug: string;
|
||||||
|
@ -33,14 +33,15 @@ $STD apt-get update
|
|||||||
$STD apt-get install -y nodejs
|
$STD apt-get install -y nodejs
|
||||||
msg_ok "Setup Node.js"
|
msg_ok "Setup Node.js"
|
||||||
|
|
||||||
read -p "Do you want to install OnlyOffice components? (Y/N): " onlyoffice
|
read -p "Install OnlyOffice components instead of CKEditor? (Y/N): " onlyoffice
|
||||||
|
|
||||||
msg_info "Setup ${APPLICATION}"
|
msg_info "Setup ${APPLICATION}"
|
||||||
|
temp_file=$(mktemp)
|
||||||
RELEASE=$(curl -s https://api.github.com/repos/cryptpad/cryptpad/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
|
RELEASE=$(curl -s https://api.github.com/repos/cryptpad/cryptpad/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
|
||||||
cd /opt
|
wget -q "https://github.com/cryptpad/cryptpad/archive/refs/tags/${RELEASE}.tar.gz" -O $temp_file
|
||||||
$STD git clone https://github.com/cryptpad/cryptpad.git cryptpad
|
tar zxf $temp_file
|
||||||
cd cryptpad
|
mv cryptpad-$RELEASE /opt/cryptpad
|
||||||
$STD git checkout $RELEASE
|
cd /opt/cryptpad
|
||||||
$STD npm ci
|
$STD npm ci
|
||||||
$STD npm run install:components
|
$STD npm run install:components
|
||||||
$STD npm run build
|
$STD npm run build
|
||||||
@ -81,6 +82,7 @@ motd_ssh
|
|||||||
customize
|
customize
|
||||||
|
|
||||||
msg_info "Cleaning up"
|
msg_info "Cleaning up"
|
||||||
|
rm -f $temp_file
|
||||||
$STD apt-get -y autoremove
|
$STD apt-get -y autoremove
|
||||||
$STD apt-get -y autoclean
|
$STD apt-get -y autoclean
|
||||||
msg_ok "Cleaned"
|
msg_ok "Cleaned"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user