aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade common server dependenciesChocobozzz2017-08-252-2/+2
|
* Remove one pod (#76)Green-Star2017-08-021-1/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Client: Fix typo * Client: Add removeFriend feature * Server: Add removeFriend feature * Server: Update method name * Fix rebase onto develop issues * Server: Fix error message * Server: Remove useless methods in removeFriend method * Server: Finish remove on pod feature after rebase * Server: Type pod parameter * Fix Travis build * Add friend-basic test for the remove one pod feature * Add check-params tests for the remove one pod feature * Fix typos * Add friend-advanced test for the remove one pod feature * Client: Trailing new line * Move to promises * Add undefined id test * Use find method instead of a for loop to find the friend to remove * Remove setTimeout method * Server: Remove requestScheduler operations * Server: Fix logging messages * Server: Remove sign request parameter
* Add ability to limit user registrationsChocobozzz2017-07-253-23/+13
|
* Remove "function" in favor of () => {}Chocobozzz2017-07-114-17/+17
|
* Use global uuid instead of remoteId for videosChocobozzz2017-07-112-9/+30
|
* Better typescript typing for a better worldChocobozzz2017-07-101-4/+7
|
* Fix error loggingChocobozzz2017-07-074-9/+9
|
* Async signature and various fixesChocobozzz2017-07-071-1/+1
|
* Move to promisesChocobozzz2017-07-054-114/+113
| | | | Closes https://github.com/Chocobozzz/PeerTube/issues/74
* Move ensureRegistrationEnabled to middlewaresChocobozzz2017-06-252-0/+21
|
* Use shared modelsChocobozzz2017-06-111-1/+3
|
* Type functionsChocobozzz2017-06-1016-50/+93
|
* require -> importChocobozzz2017-06-051-1/+1
|
* Type modelsChocobozzz2017-05-258-18/+18
|
* First typescript iterationChocobozzz2017-05-2021-240/+140
|
* Server: move requests lib in their own directoryChocobozzz2017-05-051-0/+2
|
* Format video blacklistChocobozzz2017-04-262-17/+16
|
* Add ability for an administrator to remove any video (#61)Green-Star2017-04-261-10/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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 attributeChocobozzz2017-04-071-0/+2
|
* Server: Add NSFW in user profileChocobozzz2017-04-031-1/+2
|
* Server: add nsfw attributeChocobozzz2017-03-281-0/+2
|
* Server: add licence video attributeChocobozzz2017-03-271-0/+2
|
* Relax on tags (accept any characters and not required anymore)Chocobozzz2017-03-221-1/+1
|
* Add video category supportChocobozzz2017-03-221-0/+2
|
* Add like/dislike system for videosChocobozzz2017-03-082-2/+35
|
* Server: little sort refractoringChocobozzz2017-02-261-9/+14
|
* Server: implement video viewsChocobozzz2017-02-261-2/+10
|
* Server: make a basic "quick and dirty update" for videosChocobozzz2017-02-261-1/+10
| | | | | | | | 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
* Add email to usersChocobozzz2017-02-181-1/+2
|
* Add email to podsChocobozzz2017-02-161-1/+2
|
* Server: update express-validatorChocobozzz2017-02-101-3/+1
|
* Server: error if we add a pod that already existsChocobozzz2017-01-272-7/+23
|
* Server: fix update right checksChocobozzz2017-01-111-7/+10
|
* Server: rights check for update a videoChocobozzz2017-01-111-0/+8
|
* Server: use crypto instead of ursa for pod signatureChocobozzz2017-01-042-2/+9
|
* Server: add video abuse supportChocobozzz2017-01-046-21/+74
|
* Server: fix video remoe validationChocobozzz2016-12-301-1/+1
|
* Server: optimization for videoGet and videoRemoveChocobozzz2016-12-301-7/+8
|
* Server: add ability to update a videoChocobozzz2016-12-291-10/+31
|
* Server: little refractoringChocobozzz2016-12-291-0/+4
|
* First version with PostgreSQLChocobozzz2016-12-195-25/+16
|
* Server: remove encryption when seending requests to other podsChocobozzz2016-11-272-34/+4
| | | | We don't need it anymore since HTTPS is mandatory now
* Server: forbid to make friends with a non https serverChocobozzz2016-11-161-0/+7
|
* Pod URL -> pod host. HTTPS is required to make friends.Chocobozzz2016-11-164-39/+33
| | | | | Reason: in a network with mix http/https pods, https pods won't be able to play videos from http pod (insecure requests).
* Server: forbid to remove the root userChocobozzz2016-10-071-0/+2
|
* Server: remove useless hash affectationsChocobozzz2016-10-0214-27/+27
|
* Server: add port when making friends if it is not specifiedChocobozzz2016-10-012-0/+64
|
* Server: do not forget to check the signature when another pod wants toChocobozzz2016-10-011-20/+25
| | | | quit us
* Fix client peer dependenciesChocobozzz2016-09-201-1/+1
|
* Client: fix error display for componentChocobozzz2016-08-231-3/+12
|