aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators
Commit message (Collapse)AuthorAgeFilesLines
* Add compat with openssl 3Chocobozzz2022-07-121-2/+2
|
* /!\ Use a dedicated config file for developmentChocobozzz2022-07-062-5/+5
| | | | | It means you have to replace NODE_ENV=test to NODE_ENV=dev if you use it npm run dev:* commands are already updated
* Support video views/viewers stats in serverChocobozzz2022-04-156-12/+80
| | | | | | | | | | * Add "currentTime" and "event" body params to view endpoint * Merge watching and view endpoints * Introduce WatchAction AP activity * Add tables to store viewer information of local videos * Add endpoints to fetch video views/viewers stats of local videos * Refactor views/viewers handlers * Support "views" and "viewers" counters for both VOD and live videos
* Rename studio to editorChocobozzz2022-03-221-14/+14
|
* Add latency setting supportChocobozzz2022-03-092-1/+14
|
* Add basic video editor supportChocobozzz2022-02-286-71/+121
|
* Add additional checks when importing a videoChocobozzz2022-02-091-0/+13
|
* Move uuid stuff in extra utilsChocobozzz2021-12-291-1/+1
| | | | Since it requires an external dependency
* Resolve enums at compile timeChocobozzz2021-12-281-1/+1
|
* Fix type conflictChocobozzz2021-12-241-2/+2
|
* Fix shared importsChocobozzz2021-12-243-5/+3
|
* Move test functions outside extra-utilsChocobozzz2021-12-171-1/+1
|
* Add ability for admins to set default p2p policyChocobozzz2021-12-161-2/+2
|
* chore(refactor): remove shared folder dependencies to the serverlutangar2021-12-161-1/+1
| | | | | | | | | | | Many files from the `shared` folder were importing files from the `server` folder. When attempting to use Typescript project references to describe dependencies, it highlighted a circular dependency beetween `shared` <-> `server`. The Typescript project forbid such usages. Using project references greatly improve performance by rebuilding only the updated project and not all source files. > see https://www.typescriptlang.org/docs/handbook/project-references.html
* Add ability to run transcoding jobsChocobozzz2021-11-181-0/+12
|
* Optimize AP fetchChocobozzz2021-11-161-1/+2
|
* Deprecate filter video queryChocobozzz2021-10-291-0/+6
| | | | Introduce include and isLocal instead
* esModuleInterop to trueChocobozzz2021-08-271-1/+1
|
* Allow accounts to skip account setup modalChocobozzz2021-08-271-7/+2
|
* Fix backend channel name validator consistencyChocobozzz2021-08-051-2/+9
|
* Search channels against handles and not namesChocobozzz2021-07-291-0/+5
|
* Add ability to search by uuids/actor namesChocobozzz2021-07-281-0/+10
|
* Add ability for instances to follow any actorChocobozzz2021-07-212-3/+18
|
* Refactor requestsChocobozzz2021-07-201-1/+1
|
* Support short uuid for GET video/playlistChocobozzz2021-06-291-36/+48
|
* Add ability to search playlistsChocobozzz2021-06-251-2/+5
|
* Move middleware utils in middlewaresChocobozzz2021-06-033-109/+7
| | | | helpers modules should not import models
* refactor API errors to standard error formatRigel Kent2021-06-023-35/+27
|
* CleanupChocobozzz2021-05-281-10/+0
| | | | | We must not expose private actor objects to clients Just make 2 GET requests on channel/accounts instead
* Merge branch 'develop' into shorter-URLs-channels-accountsChocobozzz2021-05-273-28/+27
|\
| * Refactor a little bit controllersChocobozzz2021-05-121-1/+1
| |
| * Resumable video uploads (#3933)kontrollanten2021-05-102-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
| * Fix remote actor creation dateChocobozzz2021-05-071-21/+18
| |
* | Add server API actors routeKimsible2021-05-051-0/+10
|/
* Add ability to filter my videos by liveChocobozzz2021-05-031-2/+2
|
* Add banner testsChocobozzz2021-04-082-11/+19
|
* Add banners supportChocobozzz2021-04-081-4/+4
|
* Reduce bundle size using a const enumChocobozzz2021-03-241-3/+2
|
* Fix AP flag validatorChocobozzz2021-03-241-1/+1
|
* Use got instead of requestChocobozzz2021-03-241-1/+1
|
* Refactor a little bit AP validatorsChocobozzz2021-03-245-106/+62
|
* Add ability to cleanup remote AP interactionsChocobozzz2021-03-033-18/+32
|
* Don't guess remote tracker URLChocobozzz2021-02-181-6/+18
|
* Don't reject accounts with empty descriptionChocobozzz2021-01-111-0/+7
|
* Refactor jobs stateChocobozzz2020-12-141-1/+1
|
* add display of logs matching any stateRigel Kent2020-12-131-0/+1
|
* emit more specific status codes on video upload (#3423)Rigel Kent2020-12-082-4/+50
| | | | | - 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-073-9/+12
|
* Add permanent live supportChocobozzz2020-12-031-2/+1
|
* Add ability to display all channel/account videosChocobozzz2020-11-181-1/+1
|