aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers
Commit message (Collapse)AuthorAgeFilesLines
* Rewrite youtube-dl importChocobozzz2021-10-222-5/+15
| | | | | | | | Use python3 binary Allows to use a custom youtube-dl release URL Allows to use yt-dlp (youtube-dl fork) Remove proxy config from configuration to use HTTP_PROXY and HTTPS_PROXY env variables
* Breaking: fix inconsistencies in configurationChocobozzz2021-10-201-3/+3
|
* Add ability to view my followersChocobozzz2021-10-201-0/+3
|
* Refactor sort middlewaresChocobozzz2021-10-201-2/+2
|
* Fix admin edition disabling featureChocobozzz2021-10-141-3/+3
|
* Process slow followers in unicast job queueChocobozzz2021-10-131-4/+4
|
* Fix check after init scriptChocobozzz2021-10-131-6/+6
|
* Rename config keyChocobozzz2021-10-121-1/+1
|
* add option to always show channel display name (#4422)kontrollanten2021-10-121-0/+9
| | | | | | | | | | | | | | | * add option to always show channel display name closes #4040 * show avatar in video miniatures closes #4040 * Revert "show avatar in video miniatures" This reverts commit 79b1a84140857fc24f7e2233e838d012f72bc56f. * channel display name: fix review comments
* Merge branch 'release/3.4.0' into developChocobozzz2021-10-121-1/+1
|\
| * Don't use min FPS, throw insteadChocobozzz2021-10-121-1/+1
| | | | | | | | Avoir creating a big output from a very low FPS input file
| * Remove unused commentsChocobozzz2021-10-081-1/+0
| |
* | Allow configuration to be static/readonly (#4315)Jelle Besseling2021-10-121-8/+23
| | | | | | | | | | | | | | | | | | | | | | * Allow configuration to be static/readonly * Make all components disableable * Improve disabled component styling * Rename edits allowed field in configuration * Fix CI
* | Remove unused commentsChocobozzz2021-10-111-1/+0
|/
* Add latin to languagesChocobozzz2021-09-071-0/+2
|
* Fix pending job table migrationChocobozzz2021-08-302-1/+28
|
* esModuleInterop to trueChocobozzz2021-08-275-16/+19
|
* Allow accounts to skip account setup modalChocobozzz2021-08-272-1/+28
|
* Fix object storage migrationChocobozzz2021-08-191-18/+16
| | | | It's too long on big instances
* Add support for saving video files to object storage (#4290)Jelle Besseling2021-08-176-33/+114
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add support for saving video files to object storage * Add support for custom url generation on s3 stored files Uses two config keys to support url generation that doesn't directly go to (compatible s3). Can be used to generate urls to any cache server or CDN. * Upload files to s3 concurrently and delete originals afterwards * Only publish after move to object storage is complete * Use base url instead of url template * Fix mistyped config field * Add rudenmentary way to download before transcode * Implement Chocobozzz suggestions https://github.com/Chocobozzz/PeerTube/pull/4290#issuecomment-891670478 The remarks in question: Try to use objectStorage prefix instead of s3 prefix for your function/variables/config names Prefer to use a tree for the config: s3.streaming_playlists_bucket -> object_storage.streaming_playlists.bucket Use uppercase for config: S3.STREAMING_PLAYLISTS_BUCKETINFO.bucket -> OBJECT_STORAGE.STREAMING_PLAYLISTS.BUCKET (maybe BUCKET_NAME instead of BUCKET) I suggest to rename moveJobsRunning to pendingMovingJobs (or better, create a dedicated videoJobInfo table with a pendingMove & videoId columns so we could also use this table to track pending transcoding jobs) https://github.com/Chocobozzz/PeerTube/pull/4290/files#diff-3e26d41ca4bda1de8e1747af70ca2af642abcc1e9e0bfb94239ff2165acfbde5R19 uses a string instead of an integer I think we should store the origin object storage URL in fileUrl, without base_url injection. Instead, inject the base_url at "runtime" so admins can easily change this configuration without running a script to update DB URLs * Import correct function * Support multipart upload * Remove import of node 15.0 module stream/promises * Extend maximum upload job length Using the same value as for redundancy downloading seems logical * Use dynamic part size for really large uploads Also adds very small part size for local testing * Fix decreasePendingMove query * Resolve various PR comments * Move to object storage after optimize * Make upload size configurable and increase default * Prune webtorrent files that are stored in object storage * Move files after transcoding jobs * Fix federation * Add video path manager * Support move to external storage job in client * Fix live object storage tests Co-authored-by: Chocobozzz <me@florianbigard.com>
* Improve target bitrate calculationChocobozzz2021-08-061-10/+8
|
* Refactor video links buildersChocobozzz2021-07-261-1/+1
|
* Use random names for VOD HLS playlistsChocobozzz2021-07-262-1/+67
|
* add support to another wav mimetype lambdacastix2021-07-111-1/+2
| | | | | | | | | | | ```bash $ file --mime-type file.wav file.wav: audio/x-wav $ file file.wav file.wav: RIFF (little-endian) data, WAVE audio, Microsoft PCM, 16 bit, stereo 44100 Hz ``` note: aac had a `'LEFT-TO-RIGHT MARK' (U+200E)` that I removed too
* Support short uuid for GET video/playlistChocobozzz2021-06-293-6/+6
|
* Add ability to search playlistsChocobozzz2021-06-251-0/+1
|
* Increase fetcher jobs concurrencyChocobozzz2021-06-151-1/+1
|
* Increase max image/caption/torrent upload sizeChocobozzz2021-06-081-4/+4
|
* Implemented configurable minimum signup agePoslovitch2021-05-282-1/+2
| | | | | | | | | | | | | | Implements https://github.com/Chocobozzz/PeerTube/issues/3612 Fixed lint and removed debug Fixed another lint error Apply suggestions from code review Co-authored-by: Chocobozzz <chocobozzz@cpy.re> Add tests for min signup age config
* Instance homepage support (#4007)Chocobozzz2021-05-273-2/+37
| | | | | | | | | | | | | | | | | * 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
* Fix broadcast message log levelChocobozzz2021-05-251-1/+1
|
* Merge branch 'release/3.2.0' into developChocobozzz2021-05-141-1/+1
|\
| * Fix logger warning levelChocobozzz2021-05-141-1/+1
| |
* | Inject server config in HTMLChocobozzz2021-05-141-1/+2
| |
* | Cleanup models directory organizationChocobozzz2021-05-113-9/+9
|/
* Resumable video uploads (#3933)kontrollanten2021-05-102-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-072-1/+27
|
* Fix transcoding job priorityChocobozzz2021-05-051-4/+1
| | | | | New resolution jobs are also important if waiting for transcoding is enabled since we publish the video after the first resolution generation
* Add migration to remove duplicated keysChocobozzz2021-04-262-1/+40
| | | | Due to old/corrupted data, it can be problematic to restore a backup
* Merge branch 'release/3.1.0' into developChocobozzz2021-04-201-2/+11
|\
| * Fix database ssl connectionChocobozzz2021-04-191-2/+11
| |
* | Dissociate frameguard from cspChocobozzz2021-04-122-0/+6
| |
* | Also decache configChocobozzz2021-04-091-7/+10
| |
* | Merge branch 'release/3.1.0' into developChocobozzz2021-04-081-0/+23
|\|
| * Remove duplicate captionsChocobozzz2021-04-082-1/+24
| |
* | Add size info in db for actor imagesChocobozzz2021-04-082-1/+36
| |
* | Display banner on channel pageChocobozzz2021-04-081-1/+1
| |
* | Add banner migrationsChocobozzz2021-04-082-1/+51
| |
* | Add banners supportChocobozzz2021-04-081-6/+14
| |
* | Agnostic actor image storageChocobozzz2021-04-083-7/+8
| |