aboutsummaryrefslogtreecommitdiffhomepage
path: root/server.ts
Commit message (Collapse)AuthorAgeFilesLines
* Implement remote runner jobs in serverChocobozzz2023-05-091-0/+2
| | | | Move ffmpeg functions to @shared
* Add x-powered-by headerChocobozzz2023-02-271-0/+5
|
* Move webfinger controller in well known routerChocobozzz2023-02-151-2/+0
|
* Add tracker opentelemtry metricsChocobozzz2023-01-051-2/+3
|
* Use private ACL for private videos in s3Chocobozzz2022-10-241-0/+2
|
* Add ability for plugins to register ws routesChocobozzz2022-10-111-0/+4
|
* Encrypt OTP secretChocobozzz2022-10-101-1/+6
|
* Live supports object storageChocobozzz2022-10-041-4/+0
| | | | | | | | * Sync live files (segments, master playlist, resolution playlist, segment sha file) into object storage * Automatically delete them when the live ends * Segment sha file is now a file on disk, and not stored in memory anymore
* Prevent job queue to be started before pluginsChocobozzz2022-09-141-0/+6
|
* Add activeRequests info on db acquire timeoutChocobozzz2022-09-081-2/+9
| | | | Can help us to debug sequelize acquire timeout error
* Channel sync (#5135)Florent2022-08-101-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add external channel URL for channel update / creation (#754) * Disallow synchronisation if user has no video quota (#754) * More constraints serverside (#754) * Disable sync if server configuration does not allow HTTP import (#754) * Working version synchronizing videos with a job (#754) TODO: refactoring, too much code duplication * More logs and try/catch (#754) * Fix eslint error (#754) * WIP: support synchronization time change (#754) * New frontend #754 * WIP: Create sync front (#754) * Enhance UI, sync creation form (#754) * Warning message when HTTP upload is disallowed * More consistent names (#754) * Binding Front with API (#754) * Add a /me API (#754) * Improve list UI (#754) * Implement creation and deletion routes (#754) * Lint (#754) * Lint again (#754) * WIP: UI for triggering import existing videos (#754) * Implement jobs for syncing and importing channels * Don't sync videos before sync creation + avoid concurrency issue (#754) * Cleanup (#754) * Cleanup: OpenAPI + API rework (#754) * Remove dead code (#754) * Eslint (#754) * Revert the mess with whitespaces in constants.ts (#754) * Some fixes after rebase (#754) * Several fixes after PR remarks (#754) * Front + API: Rename video-channels-sync to video-channel-syncs (#754) * Allow enabling channel sync through UI (#754) * getChannelInfo (#754) * Minor fixes: openapi + model + sql (#754) * Simplified API validators (#754) * Rename MChannelSync to MChannelSyncChannel (#754) * Add command for VideoChannelSync (#754) * Use synchronization.enabled config (#754) * Check parameters test + some fixes (#754) * Fix conflict mistake (#754) * Restrict access to video channel sync list API (#754) * Start adding unit test for synchronization (#754) * Continue testing (#754) * Tests finished + convertion of job to scheduler (#754) * Add lastSyncAt field (#754) * Fix externalRemoteUrl sort + creation date not well formatted (#754) * Small fix (#754) * Factorize addYoutubeDLImport and buildVideo (#754) * Check duplicates on channel not on users (#754) * factorize thumbnail generation (#754) * Fetch error should return status 400 (#754) * Separate video-channel-import and video-channel-sync-latest (#754) * Bump DB migration version after rebase (#754) * Prettier states in UI table (#754) * Add DefaultScope in VideoChannelSyncModel (#754) * Fix audit logs (#754) * Ensure user can upload when importing channel + minor fixes (#754) * Mark synchronization as failed on exception + typos (#754) * Change REST API for importing videos into channel (#754) * Add option for fully synchronize a chnanel (#754) * Return a whole sync object on creation to avoid tricks in Front (#754) * Various remarks (#754) * Single quotes by default (#754) * Rename synchronization to video_channel_synchronization * Add check.latest_videos_count and max_per_user options (#754) * Better channel rendering in list #754 * Allow sorting with channel name and state (#754) * Add missing tests for channel imports (#754) * Prefer using a parent job for channel sync * Styling * Client styling Co-authored-by: Chocobozzz <me@florianbigard.com>
* Move to bullmqChocobozzz2022-08-091-0/+1
|
* Automatically rebuild native modules on ABI changeChocobozzz2022-08-031-0/+6
|
* Split static routerChocobozzz2022-07-131-0/+4
|
* Start Redis earlierChocobozzz2022-07-131-2/+1
|
* /!\ Use a dedicated config file for developmentChocobozzz2022-07-061-2/+2
| | | | | It means you have to replace NODE_ENV=test to NODE_ENV=dev if you use it npm run dev:* commands are already updated
* Introduce experimental telemetryChocobozzz2022-07-061-0/+15
|
* Update tsconfigChocobozzz2022-06-031-3/+3
|
* 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)