aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/video/video.ts
Commit message (Collapse)AuthorAgeFilesLines
* Add ability to remove hls/webtorrent filesChocobozzz2021-11-181-2/+2
|
* Add ability to filter out public videos from adminChocobozzz2021-11-121-2/+13
|
* Fix video update transactionChocobozzz2021-11-101-2/+2
|
* Fix thumbnail updateChocobozzz2021-11-101-3/+1
|
* Add migrate-to-object-storage script (#4481)kontrollanten2021-11-091-2/+7
| | | | | | | | | | | | | | | | | | * add migrate-to-object-storage-script closes #4467 * add migrate-to-unique-playlist-filenames script * fix(migrate-to-unique-playlist-filenames): update master/segments256 run updateMasterHLSPlaylist and updateSha256VODSegments after file rename. * Improve move to object storage scripts * PR remarks Co-authored-by: Chocobozzz <me@florianbigard.com>
* Add ability to filter by file typeChocobozzz2021-11-031-11/+33
|
* Add video file size info in admin videos listChocobozzz2021-10-291-14/+20
|
* Deprecate filter video queryChocobozzz2021-10-291-57/+29
| | | | Introduce include and isLocal instead
* Fix sequelize order typingsChocobozzz2021-10-221-1/+1
|
* Fix my live videos filterChocobozzz2021-10-201-2/+2
|
* Add channel filters for my videos/followersChocobozzz2021-10-201-1/+8
|
* Fix notification on create transcoding jobChocobozzz2021-10-111-2/+2
|
* esModuleInterop to trueChocobozzz2021-08-271-1/+1
|
* Add support for saving video files to object storage (#4290)Jelle Besseling2021-08-171-13/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Refactor options in modelsChocobozzz2021-07-291-57/+53
|
* Refactor search query optionsChocobozzz2021-07-291-1/+2
|
* Add ability to search by uuids/actor namesChocobozzz2021-07-281-0/+3
|
* Filter host for channels and playlists searchChocobozzz2021-07-281-1/+1
|
* Add ability to search by host in serverChocobozzz2021-07-271-2/+4
|
* Refactor video links buildersChocobozzz2021-07-261-3/+4
|
* Use random names for VOD HLS playlistsChocobozzz2021-07-261-5/+7
|
* Fix hooks definitionChocobozzz2021-07-011-1/+0
|
* Fix missing delete cascade video -> channelChocobozzz2021-07-011-1/+2
|
* Don't check enum for video modelChocobozzz2021-06-291-6/+0
| | | | Licence, language and category could be extended by a remote plugin
* Refactor live managerChocobozzz2021-06-171-1/+1
|
* Include transaction in video hooksChocobozzz2021-06-111-11/+6
|
* Cleanup video model scopesChocobozzz2021-06-111-55/+7
|
* Move get* video methods to formatterChocobozzz2021-06-111-20/+0
|
* Use raw SQL for most of video queriesChocobozzz2021-06-111-120/+30
|
* Fetch directly all video attributes for get APIChocobozzz2021-06-111-3/+3
|
* Use raw SQL for video get requestChocobozzz2021-06-101-26/+3
|
* Refactor video query builderChocobozzz2021-06-101-168/+19
|
* Try to speed up AP update transactionChocobozzz2021-06-081-1/+1
|
* Add tags to live loggerChocobozzz2021-05-281-3/+3
|
* Support '/w/' and '/w/p/' for watch pageChocobozzz2021-05-281-1/+1
| | | | And use them as default in client
* Merge branch 'release/3.2.0' into developChocobozzz2021-05-261-0/+1
|\
| * Fix broken lives handlingChocobozzz2021-05-261-0/+1
| |
* | Stricter models typingChocobozzz2021-05-121-4/+5
| |
* | Cleanup models directory organizationChocobozzz2021-05-111-4/+4
|/
* Update channel updatedAt when uploading a videoChocobozzz2021-05-101-5/+2
|
* Add ability to filter my videos by liveChocobozzz2021-05-031-13/+39
|
* Don't save other attributes when set as refreshedChocobozzz2021-04-121-2/+4
|
* Merge branch 'release/3.1.0' into developChocobozzz2021-04-081-1/+1
|\
| * Fix outbox fetch with subtitled videosChocobozzz2021-04-081-1/+1
| |
* | Update data in DB when regenerate thumbnailsChocobozzz2021-04-081-9/+0
| |
* | Agnostic actor image storageChocobozzz2021-04-081-4/+6
|/
* Fix abuse testsChocobozzz2021-03-091-12/+12
|
* Optimize views sort sql queryChocobozzz2021-03-031-1/+6
|
* Add ability to cleanup remote AP interactionsChocobozzz2021-03-031-1/+19
|
* Fix separate SQL query for video getChocobozzz2021-02-251-2/+3
|