aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models
Commit message (Collapse)AuthorAgeFilesLines
...
* Update upload message filter hook nameChocobozzz2021-08-251-1/+1
|
* Alert user for low quota and video auto-block on upload page (#4336)Ms Kimsible2021-08-251-0/+3
| | | | | | | | | | | | | | | | | | | | | | | * Replace wording of instance contact * Add contact-us button to no-quota alert on upload page * Add alert for accounts with auto-blocked videos on upload page * Add alert for accounts without enough quota + refacto on upload page * Using ng-container and ng-template * Add alert for daily quota * Add hook filter for upload page alert messages * Add instance name as subtitle in contact modal * Fix eslint max-len on string * Fix missing word in quota left daily message - upload page Co-authored-by: Kimsible <kimsible@users.noreply.github.com>
* Add support for saving video files to object storage (#4290)Jelle Besseling2021-08-174-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-062-92/+13
|
* Limit live bitrateChocobozzz2021-08-061-0/+1
|
* Filter videos by live in custom markupChocobozzz2021-08-021-0/+2
|
* Refactor search query optionsChocobozzz2021-07-294-1/+27
|
* Search channels against handles and not namesChocobozzz2021-07-291-1/+1
|
* Add ability to search by uuids/actor namesChocobozzz2021-07-283-2/+7
|
* Cleanup shared models importsChocobozzz2021-07-286-6/+6
|
* Filter host for channels and playlists searchChocobozzz2021-07-282-0/+4
|
* Add ability to search by host in serverChocobozzz2021-07-272-5/+4
|
* Add new filter hooks to /overviews/videosMichael Williams2021-07-211-0/+4
| | | | | | This change adds new filter hooks `filter:api.overviews.videos.list.params` and `filter:api.overviews.videos.list.params` to /overviews/videos. The motivation is to make a plugin to [use `originallyPublishedAt` in all places where `publishedAt` is used](https://github.com/ahdinosaur/peertube-plugin-originally-published-at).
* Merge branch 'next' into developChocobozzz2021-07-2119-5/+421
|\
| * Add ability for instances to follow any actorChocobozzz2021-07-212-0/+5
| |
| * Refactor requestsChocobozzz2021-07-205-1/+389
| |
| * Introduce videos commandChocobozzz2021-07-202-0/+3
| |
| * Introduce user commandChocobozzz2021-07-202-0/+8
| |
| * Introduce comments commandChocobozzz2021-07-203-4/+7
| |
| * Introduce channels commandChocobozzz2021-07-202-0/+4
| |
| * Introduce playlist commandChocobozzz2021-07-202-0/+4
| |
| * Introduce debug commandChocobozzz2021-07-201-0/+1
| |
* | Introduce generic video constant manager for pluginslutangar2021-07-166-12/+51
|/ | | | | Allow a plugin developer to get back constants values, and reset constants deletions or additions.
* Support accountHandle and channelHandleChocobozzz2021-07-011-1/+4
|
* Support short uuid for GET video/playlistChocobozzz2021-06-2912-8/+26
|
* Add video-playlist-element.created hook (#4196)kontrollanten2021-06-281-1/+4
| | | | | | | | | | | | | | | | | | | * add playlists.videos.list.params/results hooks closes #4192 * Revert "add playlists.videos.list.params/results hooks" This reverts commit ebd822ca0b769d88dbc5ae0062b286238cbced92. * add video-playlist-element.created hook closes #4192 * test: add playlist-element.created * Fix tests Co-authored-by: Chocobozzz <me@florianbigard.com>
* Add ability to search playlistsChocobozzz2021-06-258-5/+25
|
* add client hook filter:videojs.optionskontrollanten2021-06-141-1/+4
| | | | closes #4086
* Cache refresh actor promiseChocobozzz2021-06-091-1/+0
|
* Add max rows to videos listChocobozzz2021-06-091-1/+3
|
* Improve channel card custom markupChocobozzz2021-06-091-0/+4
|
* Add more filters for video miniaturesChocobozzz2021-06-091-5/+12
|
* Create peertube-container html tagChocobozzz2021-06-091-2/+6
|
* Add ability to filter menu linksChocobozzz2021-06-071-1/+4
|
* add video upload types, add doc middleware to more routesRigel Kent2021-06-061-1/+14
|
* Refactor AP playlistsChocobozzz2021-06-031-0/+4
|
* Fix lintChocobozzz2021-06-031-1/+0
|
* Refactor server errors handlerChocobozzz2021-06-023-1/+42
|
* refactor error code values for URI compatibilityRigel Kent2021-06-021-4/+50
|
* correct error codes and backward compatRigel Kent2021-06-021-4/+4
|
* Support peertube button in custom markupChocobozzz2021-05-281-0/+7
|
* Implemented configurable minimum signup agePoslovitch2021-05-282-0/+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-277-0/+39
| | | | | | | | | | | | | | | | | * 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
* Inject server config in HTMLChocobozzz2021-05-141-0/+2
|
* Error if importing a torrent with multiple filesChocobozzz2021-05-111-0/+1
|
* Reorganize plugin modelsChocobozzz2021-05-1133-33/+40
|
* Cleanup shared modelsChocobozzz2021-05-1114-14/+16
|
* Resumable video uploads (#3933)kontrollanten2021-05-101-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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 channel updatedAt when uploading a videoChocobozzz2021-05-103-1/+5
|
* Fix remote actor creation dateChocobozzz2021-05-071-0/+2
|