feat(render+admin): exports management (all users' rendered videos)
Build backend images / build content-svc (push) Failing after 54s
Build backend images / build file-svc (push) Failing after 55s
Build backend images / build gateway (push) Failing after 52s
Build backend images / build identity-svc (push) Failing after 55s
Build backend images / build notification-svc (push) Failing after 58s
Build backend images / build render-svc (push) Failing after 48s
Build backend images / build studio-svc (push) Failing after 1m0s

- render-svc: admin-scoped store (ListAllExports / GetExportByIDAny /
  SoftDeleteExportAny) + GET/DELETE/download-url under /v1/admin-exports
  (admin-gated; separate prefix so it routes to render, not identity's /admin)
- gateway: /v1/admin-exports/* → render
- admin /admin/exports: paginated table of every rendered export with thumbnail,
  type/quality, size, duration, dimensions, produce + expiry dates; download
  (presigned URL) and delete

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
soroush.asadi
2026-06-03 07:04:06 +03:30
parent db167062e6
commit 928956689b
9 changed files with 263 additions and 2 deletions
+2 -1
View File
@@ -335,7 +335,8 @@
"routes": "Internal Routes", "routes": "Internal Routes",
"integrations": "Integrations", "integrations": "Integrations",
"projects": "Projects", "projects": "Projects",
"nodeFonts": "Node Fonts" "nodeFonts": "Node Fonts",
"exports": "Exports"
}, },
"appAdminNodesPage": { "appAdminNodesPage": {
"title": "Render Nodes", "title": "Render Nodes",
+2 -1
View File
@@ -335,7 +335,8 @@
"routes": "مسیرهای داخلی", "routes": "مسیرهای داخلی",
"integrations": "یکپارچه‌سازی‌ها", "integrations": "یکپارچه‌سازی‌ها",
"projects": "پروژه‌ها", "projects": "پروژه‌ها",
"nodeFonts": "فونت نودها" "nodeFonts": "فونت نودها",
"exports": "خروجی‌های رندر"
}, },
"appAdminNodesPage": { "appAdminNodesPage": {
"title": "نودهای رندر", "title": "نودهای رندر",
+1
View File
@@ -136,6 +136,7 @@ func main() {
v1.Any("/exports/*path", apiRL, auth, render.Handler()) v1.Any("/exports/*path", apiRL, auth, render.Handler())
v1.Any("/nodes/*path", apiRL, auth, render.Handler()) v1.Any("/nodes/*path", apiRL, auth, render.Handler())
v1.Any("/node-fonts/*path", apiRL, auth, render.Handler()) v1.Any("/node-fonts/*path", apiRL, auth, render.Handler())
v1.Any("/admin-exports/*path", apiRL, auth, render.Handler())
v1.Any("/node-updates/*path", apiRL, auth, render.Handler()) v1.Any("/node-updates/*path", apiRL, auth, render.Handler())
// ── Notification Service ────────────────────────────────────────────────── // ── Notification Service ──────────────────────────────────────────────────
+8
View File
@@ -145,6 +145,14 @@ func main() {
nodeFonts.DELETE("/:id", fontH.Delete) nodeFonts.DELETE("/:id", fontH.Delete)
} }
// ── Exports management (admin: all users' rendered videos) ────────────────
adminExports := v1.Group("/admin-exports", auth, admin)
{
adminExports.GET("", exportH.AdminList)
adminExports.DELETE("/:export_id", exportH.AdminDelete)
adminExports.GET("/:export_id/download-url", exportH.AdminDownloadURL)
}
// ── Internal (node agents only — HMAC auth) ─────────────────────────────── // ── Internal (node agents only — HMAC auth) ───────────────────────────────
internal := v1.Group("/internal", nodeAuth) internal := v1.Group("/internal", nodeAuth)
{ {
@@ -0,0 +1,63 @@
package db
import (
"context"
"fmt"
"github.com/flatrender/render-svc/internal/models"
"github.com/google/uuid"
)
const exportCols = `id, tenant_id, user_id, saved_project_id, project_id, render_job_id,
image, path, file_extension, file_type::text, render_quality::text,
create_type::text, size_bytes, duration_sec, width, height,
produce_date, auto_delete_date, delete_notified, created_at, deleted_at`
// ListAllExports returns every export across users (admin view), paginated.
func (s *Store) ListAllExports(ctx context.Context, page, pageSize int) ([]*models.Export, int64, error) {
var total int64
_ = s.pool.QueryRow(ctx, `SELECT COUNT(*) FROM render.exports WHERE deleted_at IS NULL`).Scan(&total)
rows, err := s.pool.Query(ctx,
`SELECT `+exportCols+`
FROM render.exports WHERE deleted_at IS NULL
ORDER BY produce_date DESC LIMIT $1 OFFSET $2`,
pageSize, (page-1)*pageSize)
if err != nil {
return nil, 0, err
}
defer rows.Close()
exports, err := scanExports(rows)
return exports, total, err
}
// GetExportByIDAny fetches an export regardless of owner (admin).
func (s *Store) GetExportByIDAny(ctx context.Context, id uuid.UUID) (*models.Export, error) {
rows, err := s.pool.Query(ctx,
`SELECT `+exportCols+` FROM render.exports WHERE id = $1 AND deleted_at IS NULL`, id)
if err != nil {
return nil, err
}
defer rows.Close()
exports, err := scanExports(rows)
if err != nil {
return nil, err
}
if len(exports) == 0 {
return nil, fmt.Errorf("export not found")
}
return exports[0], nil
}
// SoftDeleteExportAny deletes an export regardless of owner (admin).
func (s *Store) SoftDeleteExportAny(ctx context.Context, id uuid.UUID) error {
tag, err := s.pool.Exec(ctx,
`UPDATE render.exports SET deleted_at = NOW() WHERE id = $1 AND deleted_at IS NULL`, id)
if err != nil {
return err
}
if tag.RowsAffected() == 0 {
return fmt.Errorf("export not found")
}
return nil
}
@@ -0,0 +1,71 @@
package handlers
import (
"context"
"net/http"
"strconv"
"time"
"github.com/flatrender/render-svc/internal/models"
"github.com/gin-gonic/gin"
"github.com/google/uuid"
)
// GET /v1/admin-exports — all exports across users (admin)
func (h *ExportHandler) AdminList(c *gin.Context) {
page, _ := strconv.Atoi(c.DefaultQuery("page", "1"))
if page < 1 {
page = 1
}
pageSize, _ := strconv.Atoi(c.DefaultQuery("pageSize", "30"))
if pageSize < 1 || pageSize > 100 {
pageSize = 30
}
exports, total, err := h.store.ListAllExports(c.Request.Context(), page, pageSize)
if err != nil {
c.JSON(http.StatusInternalServerError, models.APIError{Code: "internal_error", Message: err.Error()})
return
}
if exports == nil {
exports = []*models.Export{}
}
c.JSON(http.StatusOK, models.PagedResponse[*models.Export]{
Data: exports,
Meta: models.PaginationMeta{Page: page, PageSize: pageSize, Total: total},
})
}
// DELETE /v1/admin-exports/:export_id (admin)
func (h *ExportHandler) AdminDelete(c *gin.Context) {
exportID, err := uuid.Parse(c.Param("export_id"))
if err != nil {
c.JSON(http.StatusBadRequest, models.APIError{Code: "bad_request", Message: "invalid export_id"})
return
}
if err := h.store.SoftDeleteExportAny(c.Request.Context(), exportID); err != nil {
c.JSON(http.StatusNotFound, models.APIError{Code: "not_found", Message: err.Error()})
return
}
c.Status(http.StatusNoContent)
}
// GET /v1/admin-exports/:export_id/download-url (admin)
func (h *ExportHandler) AdminDownloadURL(c *gin.Context) {
exportID, err := uuid.Parse(c.Param("export_id"))
if err != nil {
c.JSON(http.StatusBadRequest, models.APIError{Code: "bad_request", Message: "invalid export_id"})
return
}
exp, err := h.store.GetExportByIDAny(c.Request.Context(), exportID)
if err != nil {
c.JSON(http.StatusNotFound, models.APIError{Code: "not_found", Message: err.Error()})
return
}
expiry := 15 * time.Minute
url, err := h.minio.PresignedGetObject(context.Background(), h.bucket, exp.Path, expiry, nil)
if err != nil {
c.JSON(http.StatusInternalServerError, models.APIError{Code: "internal_error", Message: "could not generate download URL"})
return
}
c.JSON(http.StatusOK, gin.H{"url": url.String(), "expires_at": time.Now().Add(expiry)})
}
+7
View File
@@ -0,0 +1,7 @@
"use client";
import { ExportsAdmin } from "@/components/admin/ExportsAdmin";
export default function Page() {
return <ExportsAdmin />;
}
+1
View File
@@ -42,6 +42,7 @@ export default async function AdminLayout({
{ href: "/admin/nodes", label: t("nodes") }, { href: "/admin/nodes", label: t("nodes") },
{ href: "/admin/node-fonts", label: t("nodeFonts") }, { href: "/admin/node-fonts", label: t("nodeFonts") },
{ href: "/admin/renders", label: t("renderQueue") }, { href: "/admin/renders", label: t("renderQueue") },
{ href: "/admin/exports", label: t("exports") },
]; ];
return ( return (
<div className="min-h-screen bg-[#0c0e1a] text-gray-200"> <div className="min-h-screen bg-[#0c0e1a] text-gray-200">
+108
View File
@@ -0,0 +1,108 @@
"use client";
import { useCallback, useEffect, useState } from "react";
import { AdminThumb } from "@/components/admin/AdminThumb";
import { humanSize } from "@/lib/admin-files";
interface Export {
id: string; user_id: string; image?: string | null; path: string;
file_type: string; file_extension: string; render_quality: string;
size_bytes: number; duration_sec?: number | null; width?: number | null; height?: number | null;
produce_date: string; auto_delete_date: string;
}
const card = "rounded-xl border border-[#1e2235] bg-[#0f1120]";
const ghost = "rounded-lg border border-[#262b40] px-2.5 py-1 text-xs text-gray-300 hover:bg-[#161a2e] disabled:opacity-50";
function faDate(iso: string) {
try { return new Date(iso).toLocaleDateString("fa-IR"); } catch { return iso?.slice(0, 10) ?? "—"; }
}
function expired(iso: string) { return new Date(iso).getTime() < Date.now(); }
export function ExportsAdmin() {
const [rows, setRows] = useState<Export[]>([]);
const [loading, setLoading] = useState(true);
const [page, setPage] = useState(1);
const [total, setTotal] = useState(0);
const pageSize = 30;
const load = useCallback(async () => {
setLoading(true);
const r = await fetch(`/api/admin/resource/admin-exports?page=${page}&pageSize=${pageSize}`, { cache: "no-store" })
.then((x) => x.json()).catch(() => null);
setRows(r?.data ?? []);
setTotal(r?.meta?.total ?? 0);
setLoading(false);
}, [page]);
useEffect(() => { load(); }, [load]);
const download = async (e: Export) => {
const r = await fetch(`/api/admin/resource/admin-exports/${e.id}/download-url`, { cache: "no-store" })
.then((x) => x.json()).catch(() => null);
if (r?.url) window.open(r.url, "_blank");
};
const remove = async (e: Export) => {
if (!confirm("این خروجی حذف شود؟")) return;
await fetch(`/api/admin/resource/admin-exports/${e.id}`, { method: "DELETE" });
load();
};
const totalPages = Math.max(1, Math.ceil(total / pageSize));
return (
<div className="space-y-4" dir="rtl">
<div>
<h1 className="text-xl font-semibold text-white">خروجیهای رندر</h1>
<p className="mt-1 text-sm text-gray-400">همهٔ ویدیوها/تصاویر رندرشدهٔ کاربران. دانلود یا حذف کنید.</p>
</div>
<div className={`${card} overflow-hidden`}>
<table className="w-full text-sm">
<thead><tr className="border-b border-[#1e2235] text-start text-xs text-gray-500">
<th className="px-4 py-3">پیشنمایش</th><th className="px-4 py-3">نوع</th><th className="px-4 py-3">کیفیت</th>
<th className="px-4 py-3">حجم</th><th className="px-4 py-3">مدت</th><th className="px-4 py-3">ابعاد</th>
<th className="px-4 py-3">تاریخ تولید</th><th className="px-4 py-3">انقضا</th><th className="px-4 py-3 text-end">عملیات</th>
</tr></thead>
<tbody>
{loading ? (
<tr><td colSpan={9} className="px-4 py-8 text-center text-gray-500">در حال بارگذاری</td></tr>
) : rows.length === 0 ? (
<tr><td colSpan={9} className="px-4 py-8 text-center text-gray-500">خروجیای یافت نشد.</td></tr>
) : rows.map((e) => (
<tr key={e.id} className="border-b border-[#161a2e] hover:bg-[#12152a]">
<td className="px-4 py-3"><AdminThumb src={e.image} size={48} /></td>
<td className="px-4 py-3 text-gray-400">{e.file_type}{e.file_extension ? `.${e.file_extension}` : ""}</td>
<td className="px-4 py-3 text-gray-400">{e.render_quality}</td>
<td className="px-4 py-3 text-gray-300">{humanSize(e.size_bytes)}</td>
<td className="px-4 py-3 text-gray-400">{e.duration_sec ? `${Math.round(e.duration_sec)}s` : "—"}</td>
<td className="px-4 py-3 text-gray-500">{e.width && e.height ? `${e.width}×${e.height}` : "—"}</td>
<td className="px-4 py-3 text-gray-400">{faDate(e.produce_date)}</td>
<td className="px-4 py-3">
<span className={expired(e.auto_delete_date) ? "text-red-300" : "text-gray-400"}>{faDate(e.auto_delete_date)}</span>
</td>
<td className="px-4 py-3">
<div className="flex items-center justify-end gap-2">
<button className={ghost} onClick={() => download(e)}>دانلود</button>
<button className="rounded-lg border border-red-500/30 px-2.5 py-1 text-xs text-red-300 hover:bg-red-500/10" onClick={() => remove(e)}>حذف</button>
</div>
</td>
</tr>
))}
</tbody>
</table>
</div>
<div className="flex items-center justify-between text-xs text-gray-500">
<span>{total.toLocaleString("fa-IR")} خروجی</span>
{totalPages > 1 && (
<div className="flex items-center gap-2">
<button className={ghost} disabled={page <= 1} onClick={() => setPage((p) => p - 1)}>قبلی</button>
<span>صفحهٔ {page.toLocaleString("fa-IR")} از {totalPages.toLocaleString("fa-IR")}</span>
<button className={ghost} disabled={page >= totalPages} onClick={() => setPage((p) => p + 1)}>بعدی</button>
</div>
)}
</div>
</div>
);
}