Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | more faithful error description in openapi spec | Rigel Kent | 2021-05-13 | 1 | -8/+26 |
| | |||||
* | add login/logout routes in openapi spec | Rigel Kent | 2021-05-12 | 1 | -19/+213 |
| | |||||
* | add cors section in openapi spec | Rigel Kent | 2021-05-12 | 1 | -6/+21 |
| | |||||
* | fix video playlistId/videoId for video playlists in openapi spec | Rigel Kent | 2021-05-12 | 1 | -21/+42 |
| | | | | closes #4081 | ||||
* | add response content for createVideoChannel endpoint in openapi spec | Rigel Kent | 2021-05-12 | 1 | -11/+27 |
| | | | | closes #4077 | ||||
* | add rating field for video like endpoint in openapi spec | Rigel Kent | 2021-05-11 | 1 | -0/+11 |
| | | | | closes #4080 | ||||
* | add missing user update me fields in openapi spec | Rigel Kent | 2021-05-11 | 1 | -23/+51 |
| | |||||
* | add missing video comment fields in openapi spec | Rigel Kent | 2021-05-11 | 1 | -9/+25 |
| | | | | closes #4079 | ||||
* | factorized upload and import post fields in openapi spec | Rigel Kent | 2021-05-11 | 1 | -70/+38 |
| | | | | closes #4075 | ||||
* | Bumped to version v3.2.0-rc.1v3.2.0-rc.1 | Chocobozzz | 2021-05-11 | 1 | -1/+1 |
| | |||||
* | Fix nginx config | Chocobozzz | 2021-05-11 | 1 | -4/+2 |
| | |||||
* | added descriptions for video files/import fields in openapi spec | Rigel Kent | 2021-05-11 | 1 | -13/+39 |
| | |||||
* | explicit error formatting variant in openapi spec | Rigel Kent | 2021-05-11 | 1 | -3/+16 |
| | |||||
* | provide more schema examples in openapi spec | Rigel Kent | 2021-05-11 | 1 | -172/+205 |
| | |||||
* | Add monitoring dev doc | Chocobozzz | 2021-05-10 | 1 | -0/+17 |
| | |||||
* | Add doc to unpublish a plugin | Chocobozzz | 2021-05-10 | 1 | -0/+9 |
| | |||||
* | Update nginx config for resumable upload | Chocobozzz | 2021-05-10 | 1 | -2/+4 |
| | |||||
* | refactor subscriptions response from list to totalDataList in openapi spec | Rigel Kent | 2021-05-10 | 1 | -20/+20 |
| | | | | closes #4067 | ||||
* | refactor abuses response list to totalDataList in openapi spec | Rigel Kent | 2021-05-10 | 1 | -7/+21 |
| | | | | closes #4066 | ||||
* | specify operationId in openapi spec and factorize videoconstant ids | Rigel Kent | 2021-05-10 | 1 | -52/+92 |
| | |||||
* | specify getUserId variant in openapi spec | Rigel Kent | 2021-05-10 | 1 | -45/+77 |
| | | | | closes #4062 | ||||
* | secify username patterns for user create/register in openapi spec | Rigel Kent | 2021-05-10 | 1 | -0/+2 |
| | | | | closes #4061 | ||||
* | fix imports list response in openapi spec | Rigel Kent | 2021-05-10 | 1 | -1/+11 |
| | | | | closes #4063 | ||||
* | fix response in openapi spec for quota and video ratings | Rigel Kent | 2021-05-10 | 1 | -6/+20 |
| | | | | | closes #4064 closes #4065 | ||||
* | Resumable video uploads (#3933) | kontrollanten | 2021-05-10 | 2 | -99/+322 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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> | ||||
* | relax guarantee on openapi rate limit doc accuracy | Rigel Kent | 2021-05-07 | 1 | -2/+4 |
| | |||||
* | Add curl as dependency to allow for healthchecks | decentral1se | 2021-05-07 | 1 | -1/+1 |
| | | | | Closes https://github.com/Chocobozzz/PeerTube/issues/4045. | ||||
* | add subscriptions feed api to openapi spec | Rigel Kent | 2021-05-07 | 1 | -14/+89 |
| | |||||
* | add rate limit table to openapi spec | Rigel Kent | 2021-05-07 | 1 | -16/+35 |
| | |||||
* | add possible OSX/postgres message to dependencies documentation (#4051) | Philo van Kemenade | 2021-05-06 | 1 | -1/+1 |
| | |||||
* | Plugin user.getAuthUser is now async | Chocobozzz | 2021-05-05 | 1 | -2/+2 |
| | | | | So we can load the full user | ||||
* | add examples and descriptions to some video fields in openapi spec | Rigel Kent | 2021-05-04 | 1 | -0/+19 |
| | |||||
* | factorize uuid type in openapi spec | Rigel Kent | 2021-05-04 | 1 | -25/+19 |
| | |||||
* | make streaming playlists pivotable objects in openapi spec | Rigel Kent | 2021-05-04 | 1 | -7/+14 |
| | |||||
* | make hls/webtorrent fields closely documented in the openapi spec | Rigel Kent | 2021-05-04 | 1 | -6/+20 |
| | |||||
* | Add ability to filter my videos by live | Chocobozzz | 2021-05-03 | 1 | -0/+12 |
| | |||||
* | add description with operation link to category/licence/language constants | Rigel Kent | 2021-05-03 | 1 | -6/+15 |
| | |||||
* | fix video channel parameters limit in openapi spec | Rigel Kent | 2021-05-03 | 1 | -17/+48 |
| | |||||
* | fix name limit for video in openapi spec | Rigel Kent | 2021-05-03 | 1 | -11/+22 |
| | |||||
* | fix FAQ link in production guide | Rigel Kent | 2021-05-01 | 1 | -1/+1 |
| | |||||
* | Set permissions in production.md | Chocobozzz | 2021-04-27 | 1 | -0/+1 |
| | |||||
* | Fix plugins doc | Chocobozzz | 2021-04-27 | 1 | -2/+11 |
| | |||||
* | Add ability to hide plugin form fields | Chocobozzz | 2021-04-22 | 1 | -1/+7 |
| | |||||
* | Add go-live example for plugin form fields | Chocobozzz | 2021-04-22 | 1 | -1/+1 |
| | |||||
* | Add auth header in plugins guide | Chocobozzz | 2021-04-22 | 1 | -1/+26 |
| | |||||
* | Add data directory for plugins and some helpers | Chocobozzz | 2021-04-22 | 1 | -2/+38 |
| | |||||
* | Allow plugins to set short translation locale | Chocobozzz | 2021-04-20 | 1 | -2/+1 |
| | |||||
* | Update VideoFile structure in the API doc | Thomas | 2021-04-13 | 1 | -0/+4 |
| | | | | Explain the difference between the 4 URL fields in the VideoFile structure. | ||||
* | Improve docker tools doc | Chocobozzz | 2021-04-13 | 1 | -3/+70 |
| | |||||
* | Fix plugins example color | Chocobozzz | 2021-04-12 | 1 | -1/+1 |
| |