aboutsummaryrefslogtreecommitdiffhomepage
path: root/server.ts
Commit message (Collapse)AuthorAgeFilesLines
* Support video views/viewers stats in serverChocobozzz2022-04-151-2/+4
| | | | | | | | | | * 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
* Add basic video editor supportChocobozzz2022-02-281-4/+1
|
* Stop using tsconfig registerChocobozzz2022-01-061-3/+0
| | | | Prefer to replace paths at compile time
* Migrate to --enable-source-maps optionChocobozzz2022-01-031-6/+2
|
* Node 10 is not supported anymoreChocobozzz2021-12-241-1/+6
|
* Add benchmark startup option for serverChocobozzz2021-11-121-0/+3
|
* Refactor video viewsChocobozzz2021-11-091-2/+4
| | | | | | | | Introduce viewers attribute for live videos Count views for live videos Reduce delay to see the viewer update for lives Add ability to configure video views buffer interval and view ip expiration
* Support RTMPSChocobozzz2021-11-051-1/+1
|
* esModuleInterop to trueChocobozzz2021-08-271-11/+11
|
* Register plugins when peertube server is readyChocobozzz2021-07-211-3/+9
|
* Refactor requestsChocobozzz2021-07-201-1/+1
|
* Trim access log messages to prevent double line breakJohan Fleury2021-07-121-1/+1
|
* Upgrade server dependenciesChocobozzz2021-06-251-1/+1
|
* Refactor live managerChocobozzz2021-06-171-1/+1
|
* Refactor server errors handlerChocobozzz2021-06-021-3/+4
|
* refactor deprecated body-parser usageRigel Kent2021-06-021-17/+20
|
* refactor API errors to standard error formatRigel Kent2021-06-021-1/+9
|
* Instance homepage support (#4007)Chocobozzz2021-05-271-1/+3
| | | | | | | | | | | | | | | | | * Prepare homepage parsers * Add ability to update instance hompage * Add ability to set homepage as landing page * Add homepage preview in admin * Dynamically update left menu for homepage * Inject home content in homepage * Add videos list and channel miniature custom markup * Remove unused elements in markup service
* Resumable video uploads (#3933)kontrollanten2021-05-101-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Dissociate frameguard from cspChocobozzz2021-04-121-5/+5
|
* Add new plugin/peertube version notifsChocobozzz2021-03-241-0/+2
|
* Check ffmepg version on startupChocobozzz2021-03-241-1/+4
|
* Introduce tags to the loggerChocobozzz2021-03-241-1/+3
| | | | | That could help to filter unneeded logs and/or select particular components
* Dissociate video file names and video uuidChocobozzz2021-02-181-1/+5
|
* Update server dependenciesChocobozzz2021-02-031-2/+3
|
* Fix and add skipping ping log testsChocobozzz2021-01-131-3/+1
|
* feat: allow administrator to disable logging of ping requestsJohan Fleury2021-01-131-1/+4
|
* Log RTMP server error (address already in use)Chocobozzz2021-01-111-1/+1
|
* do not crash if SMTP server is downGirish Ramakrishnan2020-12-121-1/+1
| | | | | | just log a warning if the SMTP server is down on startup time fixes #3457
* disable x-powered-by even with csp disabledRigel Kent2020-12-091-1/+1
| | | | follows Express and helmet recommendations
* replace numbers with typed http status codes (#3409)Rigel Kent2020-12-071-3/+4
|
* Fix audio sync after saving replayChocobozzz2020-11-091-2/+2
| | | | | hls.js seems to not correctly handle audio gaps with fragmented mp4 (but can with a ts playlist)
* Live streaming implementation first stepChocobozzz2020-11-091-3/+12
|
* Fix testsChocobozzz2020-08-241-1/+3
|
* Update server dependenciesChocobozzz2020-06-171-2/+2
|
* Add moderation helpers to pluginsChocobozzz2020-05-071-1/+1
|
* Force node 10 usageChocobozzz2020-01-281-4/+0
|
* Add max file size, max files and ip anonymize log optionsChocobozzz2019-12-121-1/+1
|
* Use typescript paths in cli scripts tooChocobozzz2019-10-211-9/+2
|
* Fix bug with tsconfig pathsChocobozzz2019-10-211-4/+11
|
* Add auto follow instances index supportChocobozzz2019-09-041-0/+2
|
* Add auto follow back support for instancesChocobozzz2019-09-041-0/+2
|
* Lazy load avatarsChocobozzz2019-08-091-0/+2
|
* Deprecate Node 8Chocobozzz2019-08-071-1/+3
| | | | The support ends on December 2019: https://github.com/nodejs/Release#release-schedule
* Add hook filters testsChocobozzz2019-07-241-1/+2
|
* Add ability to disable plugins/themes from CLIChocobozzz2019-07-241-1/+2
|
* Check latest plugins versionChocobozzz2019-07-241-0/+2
|
* WIP plugins: update pluginChocobozzz2019-07-241-3/+1
|
* WIP plugins: add theme supportChocobozzz2019-07-241-1/+1
|
* WIP plugins: working hook on server sideChocobozzz2019-07-241-0/+2
|