aboutsummaryrefslogtreecommitdiffhomepage
path: root/yarn.lock
Commit message (Collapse)AuthorAgeFilesLines
* Update server depencenciesChocobozzz2021-11-101-1191/+663
|
* Fix dependency security alertChocobozzz2021-10-261-268/+27
|
* Update server dependenciesChocobozzz2021-10-261-847/+1357
|
* Remove unnecessary packageChocobozzz2021-10-261-14/+9
| | | | https://github.com/standard/standard/issues/1316
* Add missing dependency proxy-addrChocobozzz2021-10-261-1/+1
|
* Rewrite youtube-dl importChocobozzz2021-10-221-384/+13
| | | | | | | | 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
* Update server dependenciesChocobozzz2021-10-121-1233/+1180
|
* Remove peertube watch and peertube replChocobozzz2021-09-101-10/+0
| | | | | I don't have time to maintain these scripts that cause some install issues/maintenance difficulties
* esModuleInterop to trueChocobozzz2021-08-271-0/+14
|
* Update server dependenciesChocobozzz2021-08-261-366/+406
|
* Support proxies for PeerTube (#4346)smilekison2021-08-251-1/+45
| | | | | | | | | | | * Updated with latest code * Updated Support proxies for PeerTube * Support Proxies for PeerTube (Updated with change request) * Cleanup proxy PR Co-authored-by: Chocobozzz <me@florianbigard.com>
* Add support for saving video files to object storage (#4290)Jelle Besseling2021-08-171-3/+777
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Try to fix openapi scriptChocobozzz2021-08-111-287/+20
|
* Update server dependenciesChocobozzz2021-08-111-310/+424
|
* Upgrade server dependenciesChocobozzz2021-07-221-455/+441
|
* Move apicache in peertubeChocobozzz2021-07-221-5/+0
| | | | Allow us to upgrade to node 16
* Support short uuid for GET video/playlistChocobozzz2021-06-291-0/+8
|
* Upgrade server dependenciesChocobozzz2021-06-251-133/+140
|
* Upgrade server depChocobozzz2021-06-151-801/+772
|
* refactor deprecated body-parser usageRigel Kent2021-06-021-1/+1
|
* refactor API errors to standard error formatRigel Kent2021-06-021-0/+5
|
* Resumable video uploads (#3933)kontrollanten2021-05-101-2/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Update server dependenciesChocobozzz2021-05-051-257/+301
|
* Remove scriptyChocobozzz2021-05-051-31/+2
| | | | It breaks our tests with the latest npm release
* Upgrade server dep'Chocobozzz2021-04-121-588/+534
|
* Also decache configChocobozzz2021-04-091-1/+8
|
* Remove libxmljs in favour of pure JS implemChocobozzz2021-04-061-147/+12
|
* Upgrade to latest oauth2-serverChocobozzz2021-03-241-19/+24
|
* Update yarn lockChocobozzz2021-03-241-211/+171
|
* Refactor auth flowChocobozzz2021-03-241-12/+3
| | | | | Reimplement some node-oauth2-server methods to remove hacky code needed by our external login workflow
* Use got instead of requestChocobozzz2021-03-241-20/+29
|
* Upgrade server dependenciesChocobozzz2021-03-031-629/+1175
|
* Add benchmark scriptChocobozzz2021-02-221-7/+173
|
* Support NodeJS 14 and 15, deprecate Node 10Chocobozzz2021-02-041-4/+4
|
* Update server dependenciesChocobozzz2021-02-031-1281/+1020
|
* prettify SQL queries during debug (#3635)Rigel Kent2021-01-251-0/+7
| | | | | | | * prettify SQL queries during debug * Use sql-formatter Co-authored-by: Chocobozzz <me@florianbigard.com>
* Upgrade sequelize to v6Chocobozzz2020-12-091-44/+24
|
* Update server dependenciesChocobozzz2020-11-191-480/+739
|
* Fix prod deployChocobozzz2020-11-101-4/+4
|
* Add live notification testsChocobozzz2020-11-091-0/+22
|
* Live streaming implementation first stepChocobozzz2020-11-091-1088/+1051
|
* render html/markdown for new comment notification email (#3255)Kimsible2020-11-071-23/+117
| | | | Co-authored-by: kimsible <kimsible@users.noreply.github.com> Co-authored-by: Rigel Kent <sendmemail@rigelk.eu>
* Fix transcoding errors in readonly docker containersGirish Ramakrishnan2020-10-231-4/+4
| | | | | | ffmpeg seems to create some temporary files in the cwd. When PeerTube is run in a read-only docker container, this causes all transcoding to fail. As a workaround, we set the cwd to the configured tmp dir.
* Update server dependenciesChocobozzz2020-08-251-890/+786
|
* Add unicode emoji to markdownkimsible2020-08-141-0/+5
|
* Update server dependenciesChocobozzz2020-06-171-1370/+1604
|
* space optimizations for `node_modules` and client stats removalRigel Kent2020-06-101-180/+476
| | | | | | | - replace sharp with lighter jimp alternative - remove stats in builds fixes #2807
* Use tslib in serverChocobozzz2020-06-091-0/+5
|
* Switch emails to pug templates and provide richer html/text-only versionsRigel Kent2020-05-081-21/+978
|
* Update server dependenciesChocobozzz2020-04-011-320/+411
|