Commit ea4bc87
feat: Make video creation pipeline production-ready (#175)
Browser Persistent Auth:
- BrowserController: Add LaunchPersistentContextAsync support for
cookie/session persistence across browser restarts
- Add SaveStorageStateAsync/LoadStorageStateAsync for session state
- FreepikAutomationService: Replace broken learned-workflow login with
persistent browser context + manual login flow
- SunoAutomationService: Same cookie persistence approach, integrated
with SunoSessionManager for token extraction
Video Publishing (Real Implementations):
- YouTube: Implement resumable upload protocol (Data API v3) with
chunked 5MB uploads, progress tracking, and real video IDs
- Facebook: Implement Graph Video API upload with MultipartFormData
- TikTok: Implement FILE_UPLOAD source type for local file uploads
with chunked upload and Content-Range headers
- Instagram: Implement Reels Container API with status polling
Infrastructure:
- Create LocalFileServerService: lightweight HTTP server on port 5010
that serves local files as temporary URLs for platforms requiring
public URLs (Instagram, TikTok PULL_FROM_URL)
- Support HTTP Range requests for video streaming
- Auto-cleanup expired file mappings
API & Integration:
- Add POST /api/Pipeline/publish-video endpoint for Laravel integration
- Add Credentials, ThumbnailPath, AccountId to VideoPostRequest model
- Wire PostPublisherService to extract credentials per platform
- Fix Laravel endpoint URL: /api/Tasks/publish-video -> /api/Pipeline/publish-video
- Register LocalFileServerService in DI + auto-start on app launch
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>1 parent 009d6ca commit ea4bc87
10 files changed
Lines changed: 2027 additions & 715 deletions
File tree
- AIManagerCore/src
- AIManager.API
- Controllers
- AIManager.Core
- Services
- WebAutomation
- Workers
- laravel-backend/app/Services
Lines changed: 71 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
3 | 4 | | |
4 | 5 | | |
5 | 6 | | |
| |||
11 | 12 | | |
12 | 13 | | |
13 | 14 | | |
| 15 | + | |
14 | 16 | | |
15 | 17 | | |
16 | 18 | | |
17 | 19 | | |
18 | 20 | | |
19 | 21 | | |
| 22 | + | |
20 | 23 | | |
21 | 24 | | |
22 | 25 | | |
23 | 26 | | |
24 | 27 | | |
| 28 | + | |
25 | 29 | | |
26 | 30 | | |
27 | 31 | | |
| |||
267 | 271 | | |
268 | 272 | | |
269 | 273 | | |
| 274 | + | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
| 280 | + | |
| 281 | + | |
| 282 | + | |
| 283 | + | |
| 284 | + | |
| 285 | + | |
| 286 | + | |
| 287 | + | |
| 288 | + | |
| 289 | + | |
| 290 | + | |
| 291 | + | |
| 292 | + | |
| 293 | + | |
| 294 | + | |
| 295 | + | |
| 296 | + | |
| 297 | + | |
| 298 | + | |
| 299 | + | |
| 300 | + | |
| 301 | + | |
| 302 | + | |
| 303 | + | |
| 304 | + | |
| 305 | + | |
| 306 | + | |
| 307 | + | |
| 308 | + | |
| 309 | + | |
| 310 | + | |
| 311 | + | |
| 312 | + | |
| 313 | + | |
| 314 | + | |
| 315 | + | |
| 316 | + | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
| 322 | + | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
| 327 | + | |
| 328 | + | |
270 | 329 | | |
271 | 330 | | |
272 | 331 | | |
| |||
515 | 574 | | |
516 | 575 | | |
517 | 576 | | |
| 577 | + | |
| 578 | + | |
| 579 | + | |
| 580 | + | |
| 581 | + | |
| 582 | + | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
| 586 | + | |
| 587 | + | |
| 588 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
258 | 258 | | |
259 | 259 | | |
260 | 260 | | |
| 261 | + | |
| 262 | + | |
| 263 | + | |
261 | 264 | | |
262 | 265 | | |
263 | 266 | | |
| |||
342 | 345 | | |
343 | 346 | | |
344 | 347 | | |
| 348 | + | |
| 349 | + | |
| 350 | + | |
| 351 | + | |
345 | 352 | | |
346 | 353 | | |
347 | 354 | | |
| |||
Lines changed: 79 additions & 28 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
19 | 20 | | |
20 | 21 | | |
21 | 22 | | |
22 | 23 | | |
23 | 24 | | |
24 | 25 | | |
25 | 26 | | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
26 | 30 | | |
27 | 31 | | |
28 | 32 | | |
| |||
57 | 61 | | |
58 | 62 | | |
59 | 63 | | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
60 | 67 | | |
61 | 68 | | |
62 | 69 | | |
| |||
292 | 299 | | |
293 | 300 | | |
294 | 301 | | |
| 302 | + | |
| 303 | + | |
| 304 | + | |
| 305 | + | |
| 306 | + | |
| 307 | + | |
| 308 | + | |
| 309 | + | |
| 310 | + | |
| 311 | + | |
| 312 | + | |
| 313 | + | |
| 314 | + | |
| 315 | + | |
| 316 | + | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
| 322 | + | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
| 327 | + | |
| 328 | + | |
| 329 | + | |
| 330 | + | |
| 331 | + | |
| 332 | + | |
| 333 | + | |
| 334 | + | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
| 347 | + | |
295 | 348 | | |
296 | 349 | | |
297 | 350 | | |
| |||
300 | 353 | | |
301 | 354 | | |
302 | 355 | | |
303 | | - | |
| 356 | + | |
304 | 357 | | |
305 | | - | |
306 | | - | |
| 358 | + | |
307 | 359 | | |
308 | | - | |
| 360 | + | |
| 361 | + | |
| 362 | + | |
309 | 363 | | |
310 | 364 | | |
311 | 365 | | |
| |||
318 | 372 | | |
319 | 373 | | |
320 | 374 | | |
321 | | - | |
322 | | - | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
323 | 378 | | |
324 | | - | |
325 | | - | |
| 379 | + | |
| 380 | + | |
326 | 381 | | |
327 | | - | |
328 | | - | |
329 | | - | |
| 382 | + | |
| 383 | + | |
330 | 384 | | |
331 | 385 | | |
332 | | - | |
333 | | - | |
334 | | - | |
| 386 | + | |
| 387 | + | |
| 388 | + | |
335 | 389 | | |
336 | | - | |
337 | | - | |
| 390 | + | |
338 | 391 | | |
339 | | - | |
| 392 | + | |
| 393 | + | |
340 | 394 | | |
341 | | - | |
| 395 | + | |
342 | 396 | | |
343 | | - | |
344 | | - | |
345 | | - | |
| 397 | + | |
346 | 398 | | |
347 | | - | |
348 | | - | |
349 | | - | |
| 399 | + | |
| 400 | + | |
350 | 401 | | |
351 | 402 | | |
352 | 403 | | |
353 | | - | |
| 404 | + | |
| 405 | + | |
354 | 406 | | |
355 | 407 | | |
356 | 408 | | |
| |||
363 | 415 | | |
364 | 416 | | |
365 | 417 | | |
366 | | - | |
| 418 | + | |
367 | 419 | | |
368 | 420 | | |
369 | | - | |
370 | | - | |
| 421 | + | |
371 | 422 | | |
372 | 423 | | |
373 | 424 | | |
| |||
0 commit comments