aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/validators/videos/videos.ts
Commit message (Collapse)AuthorAgeFilesLines
* Add basic video editor supportChocobozzz2022-02-281-24/+16
|
* Upgrade uploadx dependencyChocobozzz2022-01-181-17/+0
|
* Merge branch 'release/4.0.0' into developChocobozzz2022-01-061-13/+6
|\
| * Prevent caption listing of private videosChocobozzz2022-01-061-13/+6
| |
* | Stop using tsconfig registerChocobozzz2022-01-061-1/+1
| | | | | | | | Prefer to replace paths at compile time
* | Fix shared importsChocobozzz2021-12-241-3/+1
|/
* Fix too long filename video uploadChocobozzz2021-12-031-1/+1
|
* Add ability to filter out public videos from adminChocobozzz2021-11-121-3/+10
|
* Remove resumable cache after upload successChocobozzz2021-11-101-1/+18
|
* Add ability to filter by file typeChocobozzz2021-11-031-6/+15
|
* Deprecate filter video queryChocobozzz2021-10-291-5/+26
| | | | Introduce include and isLocal instead
* prevent multiple post-process triggering of upload-resumable (#4175)Rigel Kent2021-10-251-2/+26
| | | | | | | | | * prevent multiple post-process triggering of upload-resumable * switch from 409 to 503 for upload being processed * Improve resumable upload check Co-authored-by: Chocobozzz <me@florianbigard.com>
* esModuleInterop to trueChocobozzz2021-08-271-1/+1
|
* Fix upload without filesChocobozzz2021-08-051-1/+1
|
* Refactor requestsChocobozzz2021-07-201-1/+1
|
* Support short uuid for GET video/playlistChocobozzz2021-06-291-7/+10
|
* Fix ownership change with a live videoChocobozzz2021-06-281-79/+1
|
* Use raw SQL for most of video queriesChocobozzz2021-06-111-3/+3
|
* Fetch directly all video attributes for get APIChocobozzz2021-06-111-1/+1
|
* add video upload types, add doc middleware to more routesRigel Kent2021-06-061-3/+6
|
* Move middleware utils in middlewaresChocobozzz2021-06-031-8/+9
| | | | helpers modules should not import models
* Refactor server errors handlerChocobozzz2021-06-021-6/+0
|
* refactor error code values for URI compatibilityRigel Kent2021-06-021-3/+3
|
* correct error codes and backward compatRigel Kent2021-06-021-1/+1
|
* refactor API errors to standard error formatRigel Kent2021-06-021-43/+62
|
* improve api param message for video names and tagsRigel Kent2021-05-311-6/+14
| | | | closes #4026
* improve api param message for datesRigel Kent2021-05-311-1/+1
|
* Cleanup shared modelsChocobozzz2021-05-111-1/+1
|
* Resumable video uploads (#3933)kontrollanten2021-05-101-32/+152
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * WIP: resumable video uploads relates to #324 * fix review comments * video upload: error handling * fix audio upload * fixes after self review * Update server/controllers/api/videos/index.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * Update server/middlewares/validators/videos/videos.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * Update server/controllers/api/videos/index.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * update after code review * refactor upload route - restore multipart upload route - move resumable to dedicated upload-resumable route - move checks to middleware - do not leak internal fs structure in response * fix yarn.lock upon rebase * factorize addVideo for reuse in both endpoints * add resumable upload API to openapi spec * add initial test and test helper for resumable upload * typings for videoAddResumable middleware * avoid including aws and google packages via node-uploadx, by only including uploadx/core * rename ex-isAudioBg to more explicit name mentioning it is a preview file for audio * add video-upload-tmp-folder-cleaner job * stronger typing of video upload middleware * reduce dependency to @uploadx/core * add audio upload test * refactor resumable uploads cleanup from job to scheduler * refactor resumable uploads scheduler to compare to last execution time * make resumable upload validator to always cleanup on failure * move legacy upload request building outside of uploadVideo test helper * filter upload-resumable middlewares down to POST, PUT, DELETE also begin to type metadata * merge add duration functions * stronger typings and documentation for uploadx behaviour, move init validator up * refactor(client/video-edit): options > uploadxOptions * refactor(client/video-edit): remove obsolete else * scheduler/remove-dangling-resum: rename tag * refactor(server/video): add UploadVideoFiles type * refactor(mw/validators): restructure eslint disable * refactor(mw/validators/videos): rename import * refactor(client/vid-upload): rename html elem id * refactor(sched/remove-dangl): move fn to method * refactor(mw/async): add method typing * refactor(mw/vali/video): double quote > single * refactor(server/upload-resum): express use > all * proper http methud enum server/middlewares/async.ts * properly type http methods * factorize common video upload validation steps * add check for maximum partially uploaded file size * fix audioBg use * fix extname(filename) in addVideo * document parameters for uploadx's resumable protocol * clear META files in scheduler * last audio refactor before cramming preview in the initial POST form data * refactor as mulitpart/form-data initial post request this allows preview/thumbnail uploads alongside the initial request, and cleans up the upload form * Add more tests for resumable uploads * Refactor remove dangling resumable uploads * Prepare changelog * Add more resumable upload tests * Remove user quota check for resumable uploads * Fix upload error handler * Update nginx template for upload-resumable * Cleanup comment * Remove unused express methods * Prefer to use got instead of raw http * Don't retry on error 500 Co-authored-by: Rigel Kent <par@rigelk.eu> Co-authored-by: Rigel Kent <sendmemail@rigelk.eu> Co-authored-by: Chocobozzz <me@florianbigard.com>
* Add ability to filter my videos by liveChocobozzz2021-05-031-2/+6
|
* Refactor auth flowChocobozzz2021-03-241-1/+1
| | | | | Reimplement some node-oauth2-server methods to remove hacky code needed by our external login workflow
* Use named chunk for embed on analyzeChocobozzz2021-02-251-1/+1
|
* Fix separate SQL query for video getChocobozzz2021-02-251-5/+4
|
* Trim video name also on serverChocobozzz2021-02-251-0/+2
|
* Update server dependenciesChocobozzz2021-02-031-2/+3
|
* Allow users/visitors to search through an account's videos (#3589)Rigel Kent2021-01-191-0/+4
| | | | | | | * WIP: account search * add search to account view * add tests for account search
* emit more specific status codes on video upload (#3423)Rigel Kent2020-12-081-10/+31
| | | | | - reduce http status codes list to potentially useful codes - convert more codes to typed ones - factorize html generator for error responses
* replace numbers with typed http status codes (#3409)Rigel Kent2020-12-071-11/+12
|
* Split ffmpeg utils with ffprobe utilsChocobozzz2020-11-251-1/+1
|
* Add ability to display all channel/account videosChocobozzz2020-11-181-1/+4
|
* Check live duration and sizeChocobozzz2020-11-091-2/+3
|
* Add redirection on unavailable video due to follow constraintsChocobozzz2020-08-261-16/+18
|
* Split types and typingsChocobozzz2020-06-181-1/+1
|
* Avoir some circular dependenciesChocobozzz2020-05-041-1/+1
|
* Implement pagination for overviews endpointChocobozzz2020-03-111-2/+17
|
* Add video file metadata to download modal, via ffprobe (#2411)Rigel Kent2020-03-101-1/+21
| | | | | | | | | | | | | | | | | | | * Add video file metadata via ffprobe * Federate video file metadata * Add tests for file metadata generation * Complete tests for videoFile metadata federation * Lint migration and video-file for metadata * Objectify metadata from getter in ffmpeg-utils * Add metadataUrl to all videoFiles * Simplify metadata API middleware * Load playlist in videoFile when requesting metadata
* Don't refresh videos when processing viewsChocobozzz2020-02-041-0/+3
| | | | It allows us to use a cache
* Add model cache for videoChocobozzz2020-02-041-1/+4
| | | | When fetching only immutable attributes
* Move to eslintcontainChocobozzz2020-02-031-16/+12
|
* Fix testsChocobozzz2020-01-301-1/+1
|