Dev #2
+5
-21
@@ -48,7 +48,7 @@ const server = http.createServer(app);
|
|||||||
const io = new Server(server, { cors: { origin: "*" } });
|
const io = new Server(server, { cors: { origin: "*" } });
|
||||||
|
|
||||||
io.on("connection", (socket) => {
|
io.on("connection", (socket) => {
|
||||||
console.log("🔌 Client verbunden:", socket.id);
|
console.log("Client verbunden:", socket.id);
|
||||||
});
|
});
|
||||||
|
|
||||||
const broadcastRedeployStatus = (stackId, status) => {
|
const broadcastRedeployStatus = (stackId, status) => {
|
||||||
@@ -59,13 +59,12 @@ const broadcastRedeployStatus = (stackId, status) => {
|
|||||||
// --- API Endpoints ---
|
// --- API Endpoints ---
|
||||||
app.get('/api/stacks', async (req, res) => {
|
app.get('/api/stacks', async (req, res) => {
|
||||||
try {
|
try {
|
||||||
console.log("📦 Stacks werden von Portainer abgefragt …");
|
|
||||||
const stacksRes = await axiosInstance.get('/api/stacks');
|
const stacksRes = await axiosInstance.get('/api/stacks');
|
||||||
|
|
||||||
// Filter nach Endpoint-ID
|
// Filter nach Endpoint-ID
|
||||||
const filteredStacks = stacksRes.data.filter(stack => stack.EndpointId === ENDPOINT_ID);
|
const filteredStacks = stacksRes.data.filter(stack => stack.EndpointId === ENDPOINT_ID);
|
||||||
|
|
||||||
// Deduplication nach Name
|
// Deduplication nach Name: nur einmal pro Name
|
||||||
const uniqueStacksMap = {};
|
const uniqueStacksMap = {};
|
||||||
filteredStacks.forEach(stack => {
|
filteredStacks.forEach(stack => {
|
||||||
if (!uniqueStacksMap[stack.Name]) {
|
if (!uniqueStacksMap[stack.Name]) {
|
||||||
@@ -91,17 +90,13 @@ app.get('/api/stacks', async (req, res) => {
|
|||||||
stacksWithStatus.sort((a, b) => a.Name.localeCompare(b.Name));
|
stacksWithStatus.sort((a, b) => a.Name.localeCompare(b.Name));
|
||||||
res.json(stacksWithStatus);
|
res.json(stacksWithStatus);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("❌ Fehler beim Laden der Stacks:", err.message);
|
|
||||||
res.status(500).json({ error: err.message });
|
res.status(500).json({ error: err.message });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.put('/api/stacks/:id/redeploy', async (req, res) => {
|
app.put('/api/stacks/:id/redeploy', async (req, res) => {
|
||||||
const { id } = req.params;
|
const { id } = req.params;
|
||||||
const startTime = Date.now();
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
console.log(`🟢 Redeploy gestartet für Stack ${id} …`);
|
|
||||||
broadcastRedeployStatus(id, true);
|
broadcastRedeployStatus(id, true);
|
||||||
|
|
||||||
const stackRes = await axiosInstance.get(`/api/stacks/${id}`);
|
const stackRes = await axiosInstance.get(`/api/stacks/${id}`);
|
||||||
@@ -113,11 +108,8 @@ app.put('/api/stacks/:id/redeploy', async (req, res) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (stack.Type === 1) {
|
if (stack.Type === 1) {
|
||||||
console.log(`📂 Git-Stack erkannt (${stack.Name}) → Git-Redeploy`);
|
|
||||||
await axiosInstance.put(`/api/stacks/${id}/git/redeploy?endpointId=${stack.EndpointId}`);
|
await axiosInstance.put(`/api/stacks/${id}/git/redeploy?endpointId=${stack.EndpointId}`);
|
||||||
} else if (stack.Type === 2) {
|
} else if (stack.Type === 2) {
|
||||||
console.log(`🐳 Docker-Compose-Stack erkannt (${stack.Name}) → Images pullen & neu deployen`);
|
|
||||||
|
|
||||||
const fileRes = await axiosInstance.get(`/api/stacks/${id}/file`);
|
const fileRes = await axiosInstance.get(`/api/stacks/${id}/file`);
|
||||||
const stackFileContent = fileRes.data?.StackFileContent;
|
const stackFileContent = fileRes.data?.StackFileContent;
|
||||||
if (!stackFileContent) throw new Error("Stack file konnte nicht geladen werden");
|
if (!stackFileContent) throw new Error("Stack file konnte nicht geladen werden");
|
||||||
@@ -127,29 +119,21 @@ app.put('/api/stacks/:id/redeploy', async (req, res) => {
|
|||||||
const imageName = services[serviceName].image;
|
const imageName = services[serviceName].image;
|
||||||
if (!imageName) continue;
|
if (!imageName) continue;
|
||||||
try {
|
try {
|
||||||
console.log(`⬇️ Pulling image: ${imageName}`);
|
|
||||||
await axiosInstance.post(
|
await axiosInstance.post(
|
||||||
`/api/endpoints/${stack.EndpointId}/docker/images/create?fromImage=${encodeURIComponent(imageName)}`
|
`/api/endpoints/${stack.EndpointId}/docker/images/create?fromImage=${encodeURIComponent(imageName)}`
|
||||||
);
|
);
|
||||||
} catch (err) {
|
} catch {}
|
||||||
console.warn(`⚠️ Konnte Image ${imageName} nicht pullen:`, err.message);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await axiosInstance.put(
|
await axiosInstance.put(`/api/stacks/${id}`,
|
||||||
`/api/stacks/${id}`,
|
|
||||||
{ StackFileContent: stackFileContent, Prune: false, PullImage: true },
|
{ StackFileContent: stackFileContent, Prune: false, PullImage: true },
|
||||||
{ params: { endpointId: stack.EndpointId } }
|
{ params: { endpointId: stack.EndpointId } }
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const duration = ((Date.now() - startTime) / 1000).toFixed(1);
|
|
||||||
console.log(`✅ Redeploy erfolgreich abgeschlossen für Stack ${id} (${stack.Name}) in ${duration}s`);
|
|
||||||
|
|
||||||
broadcastRedeployStatus(id, false);
|
broadcastRedeployStatus(id, false);
|
||||||
res.json({ success: true, message: 'Stack redeployed' });
|
res.json({ success: true, message: 'Stack redeployed' });
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(`❌ Redeploy-Fehler für Stack ${id}:`, err.message);
|
|
||||||
broadcastRedeployStatus(id, false);
|
broadcastRedeployStatus(id, false);
|
||||||
res.status(500).json({ error: err.message });
|
res.status(500).json({ error: err.message });
|
||||||
}
|
}
|
||||||
@@ -157,5 +141,5 @@ app.put('/api/stacks/:id/redeploy', async (req, res) => {
|
|||||||
|
|
||||||
// Server starten
|
// Server starten
|
||||||
server.listen(PORT, '0.0.0.0', () => {
|
server.listen(PORT, '0.0.0.0', () => {
|
||||||
console.log(`🚀 Backend läuft auf Port ${PORT}`);
|
console.log(`Backend läuft auf Port ${PORT}`);
|
||||||
});
|
});
|
||||||
|
|||||||
+21
-5
@@ -48,7 +48,7 @@ const server = http.createServer(app);
|
|||||||
const io = new Server(server, { cors: { origin: "*" } });
|
const io = new Server(server, { cors: { origin: "*" } });
|
||||||
|
|
||||||
io.on("connection", (socket) => {
|
io.on("connection", (socket) => {
|
||||||
console.log("Client verbunden:", socket.id);
|
console.log("🔌 Client verbunden:", socket.id);
|
||||||
});
|
});
|
||||||
|
|
||||||
const broadcastRedeployStatus = (stackId, status) => {
|
const broadcastRedeployStatus = (stackId, status) => {
|
||||||
@@ -59,12 +59,13 @@ const broadcastRedeployStatus = (stackId, status) => {
|
|||||||
// --- API Endpoints ---
|
// --- API Endpoints ---
|
||||||
app.get('/api/stacks', async (req, res) => {
|
app.get('/api/stacks', async (req, res) => {
|
||||||
try {
|
try {
|
||||||
|
console.log("📦 Stacks werden von Portainer abgefragt …");
|
||||||
const stacksRes = await axiosInstance.get('/api/stacks');
|
const stacksRes = await axiosInstance.get('/api/stacks');
|
||||||
|
|
||||||
// Filter nach Endpoint-ID
|
// Filter nach Endpoint-ID
|
||||||
const filteredStacks = stacksRes.data.filter(stack => stack.EndpointId === ENDPOINT_ID);
|
const filteredStacks = stacksRes.data.filter(stack => stack.EndpointId === ENDPOINT_ID);
|
||||||
|
|
||||||
// Deduplication nach Name: nur einmal pro Name
|
// Deduplication nach Name
|
||||||
const uniqueStacksMap = {};
|
const uniqueStacksMap = {};
|
||||||
filteredStacks.forEach(stack => {
|
filteredStacks.forEach(stack => {
|
||||||
if (!uniqueStacksMap[stack.Name]) {
|
if (!uniqueStacksMap[stack.Name]) {
|
||||||
@@ -90,13 +91,17 @@ app.get('/api/stacks', async (req, res) => {
|
|||||||
stacksWithStatus.sort((a, b) => a.Name.localeCompare(b.Name));
|
stacksWithStatus.sort((a, b) => a.Name.localeCompare(b.Name));
|
||||||
res.json(stacksWithStatus);
|
res.json(stacksWithStatus);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
console.error("❌ Fehler beim Laden der Stacks:", err.message);
|
||||||
res.status(500).json({ error: err.message });
|
res.status(500).json({ error: err.message });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.put('/api/stacks/:id/redeploy', async (req, res) => {
|
app.put('/api/stacks/:id/redeploy', async (req, res) => {
|
||||||
const { id } = req.params;
|
const { id } = req.params;
|
||||||
|
const startTime = Date.now();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
console.log(`🟢 Redeploy gestartet für Stack ${id} …`);
|
||||||
broadcastRedeployStatus(id, true);
|
broadcastRedeployStatus(id, true);
|
||||||
|
|
||||||
const stackRes = await axiosInstance.get(`/api/stacks/${id}`);
|
const stackRes = await axiosInstance.get(`/api/stacks/${id}`);
|
||||||
@@ -108,8 +113,11 @@ app.put('/api/stacks/:id/redeploy', async (req, res) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (stack.Type === 1) {
|
if (stack.Type === 1) {
|
||||||
|
console.log(`📂 Git-Stack erkannt (${stack.Name}) → Git-Redeploy`);
|
||||||
await axiosInstance.put(`/api/stacks/${id}/git/redeploy?endpointId=${stack.EndpointId}`);
|
await axiosInstance.put(`/api/stacks/${id}/git/redeploy?endpointId=${stack.EndpointId}`);
|
||||||
} else if (stack.Type === 2) {
|
} else if (stack.Type === 2) {
|
||||||
|
console.log(`🐳 Docker-Compose-Stack erkannt (${stack.Name}) → Images pullen & neu deployen`);
|
||||||
|
|
||||||
const fileRes = await axiosInstance.get(`/api/stacks/${id}/file`);
|
const fileRes = await axiosInstance.get(`/api/stacks/${id}/file`);
|
||||||
const stackFileContent = fileRes.data?.StackFileContent;
|
const stackFileContent = fileRes.data?.StackFileContent;
|
||||||
if (!stackFileContent) throw new Error("Stack file konnte nicht geladen werden");
|
if (!stackFileContent) throw new Error("Stack file konnte nicht geladen werden");
|
||||||
@@ -119,21 +127,29 @@ app.put('/api/stacks/:id/redeploy', async (req, res) => {
|
|||||||
const imageName = services[serviceName].image;
|
const imageName = services[serviceName].image;
|
||||||
if (!imageName) continue;
|
if (!imageName) continue;
|
||||||
try {
|
try {
|
||||||
|
console.log(`⬇️ Pulling image: ${imageName}`);
|
||||||
await axiosInstance.post(
|
await axiosInstance.post(
|
||||||
`/api/endpoints/${stack.EndpointId}/docker/images/create?fromImage=${encodeURIComponent(imageName)}`
|
`/api/endpoints/${stack.EndpointId}/docker/images/create?fromImage=${encodeURIComponent(imageName)}`
|
||||||
);
|
);
|
||||||
} catch {}
|
} catch (err) {
|
||||||
|
console.warn(`⚠️ Konnte Image ${imageName} nicht pullen:`, err.message);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
await axiosInstance.put(`/api/stacks/${id}`,
|
await axiosInstance.put(
|
||||||
|
`/api/stacks/${id}`,
|
||||||
{ StackFileContent: stackFileContent, Prune: false, PullImage: true },
|
{ StackFileContent: stackFileContent, Prune: false, PullImage: true },
|
||||||
{ params: { endpointId: stack.EndpointId } }
|
{ params: { endpointId: stack.EndpointId } }
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const duration = ((Date.now() - startTime) / 1000).toFixed(1);
|
||||||
|
console.log(`✅ Redeploy erfolgreich abgeschlossen für Stack ${id} (${stack.Name}) in ${duration}s`);
|
||||||
|
|
||||||
broadcastRedeployStatus(id, false);
|
broadcastRedeployStatus(id, false);
|
||||||
res.json({ success: true, message: 'Stack redeployed' });
|
res.json({ success: true, message: 'Stack redeployed' });
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
console.error(`❌ Redeploy-Fehler für Stack ${id}:`, err.message);
|
||||||
broadcastRedeployStatus(id, false);
|
broadcastRedeployStatus(id, false);
|
||||||
res.status(500).json({ error: err.message });
|
res.status(500).json({ error: err.message });
|
||||||
}
|
}
|
||||||
@@ -141,5 +157,5 @@ app.put('/api/stacks/:id/redeploy', async (req, res) => {
|
|||||||
|
|
||||||
// Server starten
|
// Server starten
|
||||||
server.listen(PORT, '0.0.0.0', () => {
|
server.listen(PORT, '0.0.0.0', () => {
|
||||||
console.log(`Backend läuft auf Port ${PORT}`);
|
console.log(`🚀 Backend läuft auf Port ${PORT}`);
|
||||||
});
|
});
|
||||||
|
|||||||
+25
-48
@@ -6,54 +6,37 @@ export default function Stacks() {
|
|||||||
const [stacks, setStacks] = useState([]);
|
const [stacks, setStacks] = useState([]);
|
||||||
const [loading, setLoading] = useState(true);
|
const [loading, setLoading] = useState(true);
|
||||||
const [error, setError] = useState("");
|
const [error, setError] = useState("");
|
||||||
const [redeploying, setRedeploying] = useState({}); // { [stackId]: boolean }
|
const [redeploying, setRedeploying] = useState({});
|
||||||
|
|
||||||
// -------------------------
|
// WebSocket initialisieren
|
||||||
// WebSocket: connect + events
|
|
||||||
// -------------------------
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const socket = io(); // gleiche Origin
|
const socket = io("/");
|
||||||
socket.on("connect", () => console.log("🔌 Socket connected:", socket.id));
|
console.log("Socket connected");
|
||||||
|
|
||||||
socket.on("redeployStatus", async ({ stackId, status }) => {
|
socket.on("redeployStatus", async ({ stackId, status }) => {
|
||||||
setRedeploying(prev => ({ ...prev, [stackId]: status }));
|
setRedeploying(prev => ({ ...prev, [stackId]: status }));
|
||||||
|
|
||||||
|
// Wenn Redeploy beendet, Stack-Status neu laden
|
||||||
if (!status) {
|
if (!status) {
|
||||||
try {
|
try {
|
||||||
const res = await axios.get("/api/stacks");
|
const res = await axios.get("/api/stacks");
|
||||||
const sortedStacks = res.data.sort((a, b) => a.Name.localeCompare(b.Name));
|
const sortedStacks = res.data.sort((a, b) => a.Name.localeCompare(b.Name));
|
||||||
setStacks(sortedStacks);
|
setStacks(sortedStacks);
|
||||||
|
|
||||||
// Map aus API-Daten aufbauen
|
|
||||||
const map = {};
|
|
||||||
sortedStacks.forEach(s => { map[s.Id] = !!s.redeploying; });
|
|
||||||
setRedeploying(map);
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("Fehler beim Aktualisieren der Stacks:", err);
|
console.error("Fehler beim Aktualisieren des Status nach Redeploy:", err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
return () => {
|
return () => socket.disconnect();
|
||||||
socket.off("redeployStatus");
|
|
||||||
socket.disconnect();
|
|
||||||
};
|
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
// -------------------------
|
// Stacks initial laden
|
||||||
// Initiale Stacks laden
|
|
||||||
// -------------------------
|
|
||||||
const fetchStacks = async () => {
|
const fetchStacks = async () => {
|
||||||
setLoading(true);
|
|
||||||
try {
|
try {
|
||||||
const res = await axios.get("/api/stacks");
|
const res = await axios.get("/api/stacks");
|
||||||
const sortedStacks = res.data.sort((a, b) => a.Name.localeCompare(b.Name));
|
const sortedStacks = res.data.sort((a, b) => a.Name.localeCompare(b.Name));
|
||||||
setStacks(sortedStacks);
|
setStacks(sortedStacks);
|
||||||
|
|
||||||
// Map aus API-Daten setzen
|
|
||||||
const map = {};
|
|
||||||
sortedStacks.forEach(s => { map[s.Id] = !!s.redeploying; });
|
|
||||||
setRedeploying(map);
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("❌ Fehler beim Abrufen der Stacks:", err);
|
console.error("❌ Fehler beim Abrufen der Stacks:", err);
|
||||||
setError("Fehler beim Laden der Stacks");
|
setError("Fehler beim Laden der Stacks");
|
||||||
@@ -66,66 +49,60 @@ export default function Stacks() {
|
|||||||
fetchStacks();
|
fetchStacks();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
// -------------------------
|
// Redeploy eines Stacks
|
||||||
// Redeploy Trigger
|
|
||||||
// -------------------------
|
|
||||||
const handleRedeploy = async (stackId) => {
|
const handleRedeploy = async (stackId) => {
|
||||||
setRedeploying(prev => ({ ...prev, [stackId]: true }));
|
setRedeploying(prev => ({ ...prev, [stackId]: true }));
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await axios.put(`/api/stacks/${stackId}/redeploy`);
|
await axios.put(`/api/stacks/${stackId}/redeploy`);
|
||||||
// Backend sendet Event → UI wird dann automatisch zurückgesetzt
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("❌ Fehler beim Redeploy:", err);
|
console.error("❌ Fehler beim Redeploy:", err);
|
||||||
setRedeploying(prev => ({ ...prev, [stackId]: false }));
|
setRedeploying(prev => ({ ...prev, [stackId]: false }));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// -------------------------
|
|
||||||
// Render
|
|
||||||
// -------------------------
|
|
||||||
if (loading) return <p className="text-gray-400">Lade Stacks...</p>;
|
if (loading) return <p className="text-gray-400">Lade Stacks...</p>;
|
||||||
if (error) return <p className="text-red-400">{error}</p>;
|
if (error) return <p className="text-red-400">{error}</p>;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 p-6">
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 p-6">
|
||||||
{stacks.map(stack => {
|
{stacks.map(stack => {
|
||||||
const isRedeploying = Boolean(redeploying[stack.Id]);
|
const isRedeploying = redeploying[stack.Id] || false;
|
||||||
|
const isUpToDate = stack.updateStatus === "✅";
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
key={stack.Id}
|
key={stack.Id}
|
||||||
className={`flex justify-between items-center p-5 rounded-xl shadow-lg transition
|
className={`flex justify-between items-center p-5 rounded-xl shadow-lg transition
|
||||||
${isRedeploying ? "bg-gray-700 opacity-60 cursor-not-allowed" : "bg-gray-800 hover:bg-gray-700"}`}
|
${isRedeploying ? "bg-gray-700 cursor-not-allowed" : "bg-gray-800 hover:bg-gray-700"}`}
|
||||||
aria-disabled={isRedeploying}
|
|
||||||
>
|
>
|
||||||
<div className="flex items-center space-x-4">
|
<div className="flex items-center space-x-4">
|
||||||
|
{/* Status Indicator */}
|
||||||
<div className={`w-12 h-12 flex items-center justify-center rounded-full
|
<div className={`w-12 h-12 flex items-center justify-center rounded-full
|
||||||
${stack.updateStatus === "✅" ? "bg-green-500" :
|
${stack.updateStatus === "✅" ? "bg-green-500" :
|
||||||
stack.updateStatus === "⚠️" ? "bg-yellow-500" :
|
stack.updateStatus === "⚠️" ? "bg-yellow-500" :
|
||||||
"bg-red-500"}`}
|
"bg-red-500"}`}
|
||||||
/>
|
>
|
||||||
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<p className="text-lg font-semibold text-white">{stack.Name}</p>
|
<p className="text-lg font-semibold text-white">{stack.Name}</p>
|
||||||
<p className="text-sm text-gray-400">ID: {stack.Id}</p>
|
<p className="text-sm text-gray-400">ID: {stack.Id}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button
|
{!isUpToDate && (
|
||||||
onClick={() => handleRedeploy(stack.Id)}
|
<button
|
||||||
disabled={isRedeploying}
|
onClick={() => handleRedeploy(stack.Id)}
|
||||||
className={`px-5 py-2 rounded-lg font-medium transition
|
disabled={isRedeploying}
|
||||||
${isRedeploying
|
className={`px-5 py-2 rounded-lg font-medium transition
|
||||||
? "bg-orange-500 cursor-not-allowed"
|
${isRedeploying ? "bg-orange-500 cursor-not-allowed" : "bg-blue-500 hover:bg-blue-600"}`}
|
||||||
: "bg-blue-500 hover:bg-blue-600"}`}
|
>
|
||||||
style={isRedeploying ? { opacity: 1 } : {}}
|
{isRedeploying ? "Redeploying" : "Redeploy"}
|
||||||
>
|
</button>
|
||||||
{isRedeploying ? "Redeploying…" : "Redeploy"}
|
)}
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
|
|
||||||
{stacks.length === 0 && <p className="text-gray-400">Keine Stacks gefunden.</p>}
|
{stacks.length === 0 && <p className="text-gray-400">Keine Stacks gefunden.</p>}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user