1ff6e494c0
Build backend images / build content-svc (push) Failing after 19s
Build backend images / build file-svc (push) Failing after 1m53s
Build backend images / build gateway (push) Failing after 16s
Build backend images / build identity-svc (push) Failing after 7m1s
Build backend images / build notification-svc (push) Failing after 7m24s
Build backend images / build render-svc (push) Failing after 3m12s
Build backend images / build studio-svc (push) Failing after 43s
feat: AE template scanner + scene editor + AEP bundle pipeline
Scene editor (admin): per-project Scenes / Shared Colors / Color Presets
manager (ProjectScenes) reachable from each project.
AEP bundle pipeline: upload .aep or .zip → stored once per template at
templates/{project_id}/(bundle.zip|template.aep); render claim probes and
returns is_bundle+md5; node-agent extracts the bundle, locates the .aep
(zip-slip guarded), and caches by md5 so repeated renders extract once.
AE template scanner ("read scenes/colours/configs from the AEP"):
- content-svc importer: POST /v1/projects/{id}/scan/{preview,apply} —
review-diff-then-merge into scenes/elements/colours (manual edits kept).
- render-svc Go quick-scan: stdlib RIFX parser extracts comp names+durations
(no AE) → POST /v1/template-scans/{id}/quick.
- render-svc AE scan jobs + node-agent runner: queue → node runs scan.jsx
(reverse of legacy JSXGenerator conventions: frfinal/frshare/frl_/frd_) →
posts ScanResult back. Migration 26_render_scan_jobs.
- admin UI: "اسکن از افترافکت" with quick/full engines + diff-review modal.
Verified: importer preview/apply, Go quick-scan end-to-end (synthetic .aep →
scene imported), bundle extract unit tests, RIFX parser unit tests.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@
136 lines
5.8 KiB
C#
136 lines
5.8 KiB
C#
using System.Text;
|
|
using FlatRender.ContentSvc.Application.Services;
|
|
using FlatRender.ContentSvc.Domain.Enums;
|
|
using FlatRender.ContentSvc.Infrastructure.Data;
|
|
using FlatRender.ContentSvc.Middleware;
|
|
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|
using Microsoft.AspNetCore.Diagnostics.HealthChecks;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Diagnostics.HealthChecks;
|
|
using Microsoft.IdentityModel.Tokens;
|
|
using Microsoft.OpenApi.Models;
|
|
using Npgsql;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// ── Database ──────────────────────────────────────────────────────────────────
|
|
// Native PostgreSQL enums are mapped on the EF provider so Npgsql can read/write
|
|
// them at runtime (HasPostgresEnum in the model alone is not enough on Npgsql 8+).
|
|
// PG labels match the C# enum member names exactly, so preserve case verbatim.
|
|
var enumTr = PreserveCaseNameTranslator.Instance;
|
|
builder.Services.AddDbContext<ContentDbContext>(options =>
|
|
options.UseNpgsql(
|
|
builder.Configuration.GetConnectionString("Postgres"),
|
|
npgsql =>
|
|
{
|
|
npgsql.MapEnum<ChooseMode>("choose_mode", "content", enumTr);
|
|
npgsql.MapEnum<ResolutionKind>("resolution_kind", "content", enumTr);
|
|
npgsql.MapEnum<SceneKind>("scene_kind", "content", enumTr);
|
|
npgsql.MapEnum<ContentElementType>("content_element_type", "content", enumTr);
|
|
npgsql.MapEnum<JustifyKind>("justify_kind", "content", enumTr);
|
|
npgsql.MapEnum<AiInputType>("ai_input_type", "content", enumTr);
|
|
npgsql.MapEnum<RepeatSortStrategy>("repeat_sort_strategy", "content", enumTr);
|
|
npgsql.MapEnum<AttrValueKind>("attr_value_kind", "content", enumTr);
|
|
npgsql.MapEnum<BlogKind>("blog_kind", "content", enumTr);
|
|
npgsql.MapEnum<SlideType>("slide_type", "content", enumTr);
|
|
})
|
|
.UseSnakeCaseNamingConvention());
|
|
|
|
// ── JWT Auth ──────────────────────────────────────────────────────────────────
|
|
|
|
builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
|
|
.AddJwtBearer(options =>
|
|
{
|
|
options.TokenValidationParameters = new TokenValidationParameters
|
|
{
|
|
ValidateIssuer = true,
|
|
ValidateAudience = true,
|
|
ValidateLifetime = true,
|
|
ValidateIssuerSigningKey = true,
|
|
ValidIssuer = builder.Configuration["Jwt:Issuer"],
|
|
ValidAudience = builder.Configuration["Jwt:Audience"],
|
|
IssuerSigningKey = new SymmetricSecurityKey(
|
|
Encoding.UTF8.GetBytes(builder.Configuration["Jwt:Secret"]!)),
|
|
// The token's "role" claim is auto-mapped to ClaimTypes.Role by the default
|
|
// inbound claim mapping, which is what [Authorize(Roles = "Admin")] reads.
|
|
};
|
|
});
|
|
|
|
builder.Services.AddAuthorization();
|
|
|
|
// ── Application Services ──────────────────────────────────────────────────────
|
|
|
|
builder.Services.AddScoped<TaxonomyService>();
|
|
builder.Services.AddScoped<TemplateService>();
|
|
builder.Services.AddScoped<CmsService>();
|
|
builder.Services.AddScoped<AiContentService>();
|
|
builder.Services.AddScoped<SceneColorService>();
|
|
builder.Services.AddScoped<AepImportService>();
|
|
|
|
// HTTP client for the OpenAI-compatible AI provider (base URL is per-tenant config).
|
|
builder.Services.AddHttpClient("openai");
|
|
|
|
// ── HTTP ──────────────────────────────────────────────────────────────────────
|
|
|
|
builder.Services.AddRouting(opts =>
|
|
{
|
|
opts.LowercaseUrls = true;
|
|
opts.AppendTrailingSlash = false; // prevent 301 redirects from gateway calls
|
|
});
|
|
|
|
builder.Services.AddControllers()
|
|
.AddJsonOptions(opts =>
|
|
{
|
|
opts.JsonSerializerOptions.PropertyNamingPolicy = System.Text.Json.JsonNamingPolicy.SnakeCaseLower;
|
|
});
|
|
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
builder.Services.AddSwaggerGen(c =>
|
|
{
|
|
c.SwaggerDoc("v1", new OpenApiInfo { Title = "FlatRender Content API", Version = "v1" });
|
|
c.AddSecurityDefinition("Bearer", new OpenApiSecurityScheme
|
|
{
|
|
Type = SecuritySchemeType.Http,
|
|
Scheme = "bearer",
|
|
BearerFormat = "JWT",
|
|
Description = "JWT Bearer token"
|
|
});
|
|
c.AddSecurityRequirement(new OpenApiSecurityRequirement
|
|
{
|
|
{
|
|
new OpenApiSecurityScheme { Reference = new OpenApiReference { Type = ReferenceType.SecurityScheme, Id = "Bearer" } },
|
|
Array.Empty<string>()
|
|
}
|
|
});
|
|
});
|
|
|
|
builder.Services.AddHealthChecks()
|
|
.AddCheck("db", () => HealthCheckResult.Healthy());
|
|
|
|
builder.Services.AddCors(opts => opts.AddDefaultPolicy(p =>
|
|
p.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod()));
|
|
|
|
// ── Build ─────────────────────────────────────────────────────────────────────
|
|
|
|
var app = builder.Build();
|
|
|
|
app.UseMiddleware<ExceptionMiddleware>();
|
|
|
|
if (app.Environment.IsDevelopment())
|
|
{
|
|
app.UseSwagger();
|
|
app.UseSwaggerUI();
|
|
|
|
using var scope = app.Services.CreateScope();
|
|
var db = scope.ServiceProvider.GetRequiredService<ContentDbContext>();
|
|
db.Database.Migrate();
|
|
}
|
|
|
|
app.UseCors();
|
|
app.UseAuthentication();
|
|
app.UseAuthorization();
|
|
app.MapControllers();
|
|
app.MapHealthChecks("/health", new HealthCheckOptions { AllowCachingResponses = false });
|
|
|
|
app.Run();
|