Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | First typescript iteration | Chocobozzz | 2017-05-20 | 1 | -858/+0 |
| | |||||
* | Server: add job scheduler to transcode video files | Chocobozzz | 2017-05-04 | 1 | -22/+94 |
| | |||||
* | Server: little refractoring when listing videos | Chocobozzz | 2017-05-01 | 1 | -10/+12 |
| | |||||
* | Format video blacklist | Chocobozzz | 2017-04-26 | 1 | -1/+0 |
| | |||||
* | Add ability for an administrator to remove any video (#61) | Green-Star | 2017-04-26 | 1 | -10/+38 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add ability for an admin to remove every video on the pod. * Server: add BlacklistedVideos relation. * Server: Insert in BlacklistedVideos relation upon deletion of a video. * Server: Modify BlacklistedVideos schema to add Pod id information. * Server: Moving insertion of a blacklisted video from the `afterDestroy` hook into the process of deletion of a video. To avoid inserting a video when it is removed on its origin pod. When a video is removed on its origin pod, the `afterDestroy` hook is fire, but no request is made on the delete('/:videoId') interface. Hence, we insert into `BlacklistedVideos` only on request on delete('/:videoId') (if requirements for insertion are met). * Server: Add removeVideoFromBlacklist hook on deletion of a video. We are going to proceed in another way :). We will add a new route : /:videoId/blacklist to blacklist a video. We do not blacklist a video upon its deletion now (to distinguish a video blacklist from a regular video delete) When we blacklist a video, the video remains in the DB, so we don't have any concern about its update. It just doesn't appear in the video list. When we remove a video, we then have to remove it from the blacklist too. We could also remove a video from the blacklist to 'unremove' it and make it appear again in the video list (will be another feature). * Server: Add handler for new route post(/:videoId/blacklist) * Client: Add isBlacklistable method * Client: Update isRemovableBy method. * Client: Move 'Delete video' feature from the video-list to the video-watch module. * Server: Exclude blacklisted videos from the video list * Server: Use findAll() in BlacklistedVideos.list() method * Server: Fix addVideoToBlacklist function. * Client: Add blacklist feature. * Server: Use JavaScript Standard Style. * Server: In checkUserCanDeleteVideo, move the callback call inside the db callback function * Server: Modify BlacklistVideo relation * Server: Modifiy Videos methods. * Server: Add checkVideoIsBlacklistable method * Server: Rewrite addVideoToBlacklist method * Server: Fix checkVideoIsBlacklistable method * Server: Add return to addVideoToBlacklist method | ||||
* | Server: add video language attribute | Chocobozzz | 2017-04-07 | 1 | -0/+19 |
| | |||||
* | Server: add nsfw attribute | Chocobozzz | 2017-03-28 | 1 | -0/+13 |
| | |||||
* | Server: add licence video attribute | Chocobozzz | 2017-03-27 | 1 | -0/+18 |
| | |||||
* | Add video category support | Chocobozzz | 2017-03-22 | 1 | -0/+18 |
| | |||||
* | Add like/dislike system for videos | Chocobozzz | 2017-03-08 | 1 | -2/+29 |
| | |||||
* | Server: add views attribute when sending videos to friends | Chocobozzz | 2017-03-04 | 1 | -2/+4 |
| | |||||
* | Server: make a basic "quick and dirty update" for videos | Chocobozzz | 2017-02-26 | 1 | -0/+13 |
| | | | | | | | | This system will be useful to to update some int video attributes (likes, dislikes, views...) The classic system is not used because we need some optimization for scaling | ||||
* | Fix update host script | Chocobozzz | 2017-02-08 | 1 | -1/+1 |
| | |||||
* | Server: paths refractoring | Chocobozzz | 2017-01-17 | 1 | -13/+18 |
| | |||||
* | Server: fix single pod tests | Chocobozzz | 2017-01-12 | 1 | -1/+1 |
| | |||||
* | Server: fix update remote video infohash | Chocobozzz | 2017-01-12 | 1 | -1/+2 |
| | |||||
* | Server: we don't need the video name when removing a remote video | Chocobozzz | 2017-01-04 | 1 | -1/+0 |
| | |||||
* | Server: add video abuse support | Chocobozzz | 2017-01-04 | 1 | -0/+8 |
| | |||||
* | Server: add updatedAt attribute to videos | Chocobozzz | 2016-12-30 | 1 | -2/+4 |
| | |||||
* | Server: propagate video update to other pods | Chocobozzz | 2016-12-30 | 1 | -3/+3 |
| | |||||
* | Server: add ability to update a video | Chocobozzz | 2016-12-29 | 1 | -2/+19 |
| | |||||
* | Server: use binary data instead of base64 to send thumbnails | Chocobozzz | 2016-12-29 | 1 | -5/+6 |
| | |||||
* | Server: use video hook to send information to other pods when a video is | Chocobozzz | 2016-12-29 | 1 | -0/+14 |
| | | | | deleted | ||||
* | Server: Add postgresql indexes | Chocobozzz | 2016-12-29 | 1 | -0/+20 |
| | |||||
* | Server: add database field validations | Chocobozzz | 2016-12-28 | 1 | -18/+56 |
| | |||||
* | Server: correctly sort tags by name asc | Chocobozzz | 2016-12-26 | 1 | -2/+2 |
| | |||||
* | Update migrations code | Chocobozzz | 2016-12-25 | 1 | -1/+6 |
| | |||||
* | Move tags in another table | Chocobozzz | 2016-12-24 | 1 | -40/+57 |
| | |||||
* | First version with PostgreSQL | Chocobozzz | 2016-12-19 | 1 | -118/+270 |
| | |||||
* | Server: set manually the post host of a remote video throught the | Chocobozzz | 2016-11-27 | 1 | -1/+0 |
| | | | | signature | ||||
* | Server: fix magnet tracker websocket url for remote videos | Bigard Florian | 2016-11-23 | 1 | -1/+1 |
| | |||||
* | Server: add extname video information to remote pods | Chocobozzz | 2016-11-22 | 1 | -1/+2 |
| | |||||
* | Server: fix thumbnail in remote videos | Chocobozzz | 2016-11-16 | 1 | -15/+16 |
| | |||||
* | Server: Remove unused console log | Chocobozzz | 2016-11-16 | 1 | -1/+0 |
| | |||||
* | Pod URL -> pod host. HTTPS is required to make friends. | Chocobozzz | 2016-11-16 | 1 | -19/+13 |
| | | | | | Reason: in a network with mix http/https pods, https pods won't be able to play videos from http pod (insecure requests). | ||||
* | Server: use preview image for opengraph | Chocobozzz | 2016-11-16 | 1 | -1/+1 |
| | |||||
* | Server: adapt magnet uri search | Chocobozzz | 2016-11-16 | 1 | -1/+6 |
| | |||||
* | Server: generate magnet uri on the fly | Chocobozzz | 2016-11-16 | 1 | -30/+72 |
| | |||||
* | Server: use _id for image and video files. Add remoteId field | Chocobozzz | 2016-11-16 | 1 | -70/+76 |
| | |||||
* | Server: add video preview | Chocobozzz | 2016-11-16 | 1 | -1/+26 |
| | |||||
* | Server: videos search case insensitive | Chocobozzz | 2016-10-26 | 1 | -1/+1 |
| | |||||
* | Server: host -> hostname (host = hostname + port) | Chocobozzz | 2016-10-26 | 1 | -1/+1 |
| | |||||
* | Server: Uploads -> Videos | Chocobozzz | 2016-10-21 | 1 | -2/+2 |
| | |||||
* | Server: pod removing refractoring | Chocobozzz | 2016-10-21 | 1 | -3/+3 |
| | |||||
* | Server: handle tls websockets | Chocobozzz | 2016-10-17 | 1 | -7/+10 |
| | |||||
* | Server: update to webseed implementation (tests, lint...) | Chocobozzz | 2016-10-07 | 1 | -5/+2 |
| | |||||
* | Merge branch 'master' into webseed-merged | Chocobozzz | 2016-10-02 | 1 | -49/+36 |
|\ | |||||
| * | Server: remove useless hash affectations | Chocobozzz | 2016-10-02 | 1 | -13/+13 |
| | | |||||
| * | Server: put config in constants | Chocobozzz | 2016-08-19 | 1 | -15/+8 |
| | | |||||
| * | Server: add user list sort/pagination | Chocobozzz | 2016-08-16 | 1 | -2/+2 |
| | |