aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/extra-utils/server
Commit message (Collapse)AuthorAgeFilesLines
* shared/ typescript types dir server-commandsChocobozzz2021-12-1718-1789/+0
|
* Move typescript utils in its own directoryChocobozzz2021-12-161-1/+1
|
* chore(refactor): remove shared folder dependencies to the serverlutangar2021-12-165-6/+5
| | | | | | | | | | | 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
* Display server logs when server run failsChocobozzz2021-12-071-4/+8
|
* Add ability to redirect users on external authChocobozzz2021-12-031-0/+12
|
* CLI: plugins install command accept a --plugin-version parameter. (#4599)John Livingston2021-12-031-2/+3
| | | | | | | | | | | * CLI: plugins install command accept a --plugin-version parameter. * Unit tests for plugins install --plugin-version. * Fix linting. * Styling Co-authored-by: Chocobozzz <me@florianbigard.com>
* Ensure we don't run transcoding after import fileChocobozzz2021-11-231-1/+8
|
* Add ability to run transcoding jobsChocobozzz2021-11-181-0/+15
|
* Add bin directory creation for parallel testsChocobozzz2021-11-171-0/+1
|
* Refactor video viewsChocobozzz2021-11-091-2/+2
| | | | | | | | 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-0/+2
|
* Added 144p encoding (#4492)Florian CUNY2021-11-051-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added 144p encoding Implements https://github.com/Chocobozzz/PeerTube/issues/4428 * Fixed typo in core-utils * Increased BitPerPixel for 144p * Disabled 144p by default in test.yaml * Another try at fixing tests * Fixed test in video-transcoder (api-3) * Fixed test in video-imports (api-4) * Fixed test in live-constraints (api-2) * Tried to fix tests in api-3 again * Revert "Tried to fix tests in api-3 again" This reverts commit 266e1143fa37f333d149c2c2791c7bd33621ac14. * Fixed test in config.ts (api-2) * Try to fix test in video-hls.ts (api-3) * Fixed test in video-transcoder.ts (api-3) * Fix tests Co-authored-by: Chocobozzz <me@florianbigard.com>
* Made the video channels limit (per user) server-wide configurable (#4491)Florian CUNY2021-10-261-0/+3
| | | | | | | | | | | | | | | * Made the video channels limit (per user) server-wide configurable Implements https://github.com/Chocobozzz/PeerTube/issues/3092 Also added a "quota bar" in the account's settings page * Fixed lint errors * Another pass at fixing lint errors * Applied code suggestions * Removed 'video channels quota'
* Fix infohash with object storageChocobozzz2021-09-072-0/+28
|
* Fix test event leakChocobozzz2021-08-261-10/+11
|
* Rename jobs list commandChocobozzz2021-08-262-3/+3
|
* Optimize torrent URL updateChocobozzz2021-08-181-1/+5
|
* Add support for saving video files to object storage (#4290)Jelle Besseling2021-08-177-5/+183
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Search channels against handles and not namesChocobozzz2021-07-292-6/+4
|
* Refactor video links buildersChocobozzz2021-07-261-1/+1
|
* Use random names for VOD HLS playlistsChocobozzz2021-07-261-2/+1
|
* Generate random uuid for video filesChocobozzz2021-07-262-14/+13
|
* Simplify createServer argsChocobozzz2021-07-222-8/+9
|
* Upgrade server dependenciesChocobozzz2021-07-221-2/+1
|
* Add ability for instances to follow any actorChocobozzz2021-07-212-12/+27
|
* Reorganize importsChocobozzz2021-07-206-10/+6
|
* Refactor requestsChocobozzz2021-07-2010-11/+11
|
* Fix server runChocobozzz2021-07-201-6/+8
|
* Use an object to represent a serverChocobozzz2021-07-209-398/+411
|
* Shorter server command namesChocobozzz2021-07-206-124/+124
|
* Introduce videos commandChocobozzz2021-07-201-1/+4
|
* Introduce user commandChocobozzz2021-07-201-1/+3
|
* Introduce login commandChocobozzz2021-07-202-21/+3
|
* Introduce server commandsChocobozzz2021-07-206-100/+130
|
* Introduce notifications commandChocobozzz2021-07-201-2/+4
|
* Introduce sql commandChocobozzz2021-07-201-2/+8
|
* Fix CLI toolsChocobozzz2021-07-201-42/+47
|
* Introduce comments commandChocobozzz2021-07-201-0/+3
|
* Introduce channels commandChocobozzz2021-07-201-0/+3
|
* Introduce streaming playlists commandChocobozzz2021-07-201-1/+4
|
* Introduce import commandChocobozzz2021-07-201-1/+12
|
* Introduce history commandChocobozzz2021-07-201-1/+3
|
* Introduce playlist commandChocobozzz2021-07-201-1/+3
|
* Introduce change ownership commandChocobozzz2021-07-201-1/+3
|
* Introduce captions commandChocobozzz2021-07-201-1/+3
|
* Introduce blacklist commandChocobozzz2021-07-201-1/+3
|
* Specify if we want to fallback to the server tokenChocobozzz2021-07-208-7/+33
|
* Introduce services commandChocobozzz2021-07-201-1/+3
|
* Introduce live commandChocobozzz2021-07-201-0/+3
|
* Introduce subscriptions commandChocobozzz2021-07-201-1/+3
|