aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/account
Commit message (Collapse)AuthorAgeFilesLines
* Cache user tokenChocobozzz2018-09-201-0/+9
|
* Limit associations fetch when loading tokenChocobozzz2018-09-201-2/+2
|
* Add federation to ownership changeChocobozzz2018-09-041-15/+17
|
* Users can change ownership of their video [#510] (#888)Gaëtan Rizio2018-09-041-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [#510] Create a new route to get the list of user names To be able to transfer ownership to a user, we need to be able to select him from the list of users. Because the list could be too big, we add a autocomplete feature. This commit does the following: * Add a API endpoint to get a list of user names by searching its name * [#510] The user can choose the next owner of the video To be able to transfer ownership to a user, we need the owner to be able to select the user. The server can autocomplete the name of the user to give the ownership. We add a dialog for the user to actually select it. This commit does the following: * Create a modal for the owner to select the next one * Opens this modal with a button into the menu *more* * Make the dependency injection * [#510] When the user choose the next owner, create a request in database For the change of ownership to happen, we need to store the temporary requests. When the user make the request, save it to database. This commit does the following: * Create the model to persist change ownership requests * Add an API to manage ownership operations * Add a route to persist an ownership request * [#510] A user can fetch its ownership requests sent to him To be able to accept or refuse a change of ownership, the user must be able to fetch them. This commit does the following: * Add an API to list ownership for a user * Add the query to database model * [#510] A user can validate an ownership requests sent to him - server The user can accept or refuse any ownership request that was sent to him. This commit focus only on the server part. This commit does the following: * Add an API for the user to accept or refuse a video ownership * Add validators to ensure security access * Add a query to load a specific video change ownership request * [#510] A user can validate an ownership requests sent to him - web The user can accept or refuse any ownership request that was sent to him. This commit focus only on the web part. This commit does the following: * Add a page to list user ownership changes * Add actions to accept or refuse them * When accepting, show a modal requiring the channel to send the video * Correct lint - to squash * [#510] PR reviews - to squash This commit does the following: * Search parameter for user autocompletion is required from middleware directly * [#510] PR reviews - to squash with creation in database commit This commit does the following: * Add the status attribute in model * Set this attribute on instance creation * Use AccountModel method `loadLocalByName` * [#510] PR reviews - to squash with fetch ownership This commit does the following: * Add the scope `FULL` for database queries with includes * Add classic pagination middlewares * [#510] PR reviews - to squash with ownership validation - server This commit does the following: * Add a middleware to validate whether a user can validate an ownership * Change the ownership status instead of deleting the row * [#510] PR reviews - to squash with ownership validation - client This commit does the following: * Correct indentation of html files with two-spaces indentation * Use event emitter instead of function for accept event * Update the sort of ownership change table for a decreasing order by creation date * Add the status in ownership change table * Use classic method syntax * code style - to squash * Add new user right - to squash * Move the change to my-account instead of video-watch - to squash As requested in pull-request, move the action to change ownership into my videos page. The rest of the logic was not really changed. This commit does the following: - Move the modal into my video page - Create the generic component `button` to keep some styles and logic * [#510] Add tests for the new feature To avoid regression, we add tests for all api of ownership change. This commit does the following: - Create an end-to-end test for ownership change - Divide it to one test per request * [#510] Do not send twice the same request to avoid spam We can send several time the same request to change ownership. However, it will spam the user. To avoid this, we do not save a request already existing in database. This commit does the following: - Check whether the request exist in database - Add tests to verify this new condition * [#510] Change icons Change icons so they remains logic with the rest of the application. This commit does the following: - Add svg for missing icons - Add icons in `my-button` component - Use these new icons * [#510] Add control about the user quota The user should be able to accept a new video only if his quota allows it. This commit does the following: - Update the middleware to control the quota - Add tests verifying the control * Correct merge - Use new modal system - Move button to new directory `buttons` * PR reviews - to squash
* add user account email verificiation (#977)Josh Morel2018-08-311-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * add user account email verificiation includes server and client code to: * enable verificationRequired via custom config * send verification email with registration * ask for verification email * verify via email * prevent login if not verified and required * conditional client links to ask for new verification email * allow login for verified=null these are users created when verification not required should still be able to login when verification is enabled * refactor email verifcation pr * change naming from verified to emailVerified * change naming from askVerifyEmail to askSendVerifyEmail * undo unrelated automatic prettier formatting on api/config * use redirectService for home * remove redundant success notification on email verified * revert test.yaml smpt host
* Refractor user quota SQL queriesChocobozzz2018-08-281-38/+35
|
* Fix oauth server moduleChocobozzz2018-08-281-5/+0
|
* Implement daily upload limit (#956)Felix Ableitner2018-08-281-9/+59
| | | | | | | | | | | | | | | | | | | | * Implement daily upload limit (ref #652) * remove duplicate code * review fixes * fix tests? * whitespace fixes, finish leftover todo * fix tests * added some new tests * use different config value for tests * remove todo
* Add ability to search video channelsChocobozzz2018-08-271-12/+2
|
* Add ability to set a name to a channelChocobozzz2018-08-271-1/+1
|
* Add quota used in users listChocobozzz2018-08-141-3/+27
|
* Add reason when banning a userChocobozzz2018-08-081-0/+9
|
* Implement user blocking on server sideChocobozzz2018-08-081-0/+7
|
* Add import.video.torrent configurationChocobozzz2018-08-081-1/+1
|
* Add ability to import video with youtube-dlChocobozzz2018-08-061-1/+0
|
* Add more info loggingChocobozzz2018-07-301-1/+0
|
* Revert "Delete actor too when deleting account/video channel"Chocobozzz2018-07-301-7/+14
| | | | | | This reverts commit e04551d796adf69703a41af123207b2624237292. See https://github.com/Chocobozzz/PeerTube/issues/870#issuecomment-408814420
* Delete actor too when deleting account/video channelChocobozzz2018-07-301-14/+7
|
* Optimize SQL queriesChocobozzz2018-07-242-1/+22
|
* Update iso639 translations for french and deutchChocobozzz2018-06-191-2/+6
|
* Fix offset/limit on some SQL queries :facepalm:Chocobozzz2018-06-131-2/+2
|
* Refractor and optimize AP collectionsChocobozzz2018-05-251-0/+29
| | | | | Only display urls in general object, and paginate video comments, shares, likes and dislikes
* Add ability to choose what policy we have for NSFW videosChocobozzz2018-04-191-6/+8
| | | | There is a global instance setting and a per user setting
* feature: initial syndication feeds supportRigel Kent2018-04-171-1/+5
| | | | | | | | | | | | | | | | | | Provides rss 2.0, atom 1.0 and json 1.0 feeds for videos (instance and account-wide) on listings and video-watch views. * still lacks redis caching * still lacks lastBuildDate support * still lacks channel-wide support * still lacks semantic annotation (for licenses, NSFW warnings, etc.) * still lacks love ( ˘ ³˘) * RSS: has MRSS support for torrent lists! * RSS: includes the first torrent in an enclosure * JSON: lists all torrents in the 'attachments' object * ATOM: lacking torrent listing support Advances #23 Partial implementation for the accountId generation in the client, which will need a hotfix to add a way to get the proper account id.
* Improve playback speed styleChocobozzz2018-03-011-4/+21
|
* Add stats routeChocobozzz2018-02-281-0/+9
|
* Add links to comment mentionsChocobozzz2018-02-211-2/+35
|
* Fix lintChocobozzz2018-02-192-2/+2
|
* Fix sort inconsistencyChocobozzz2018-02-192-2/+2
|
* Implement support field in video and video channelChocobozzz2018-02-151-3/+26
|
* Send an email on video abuse reportChocobozzz2018-02-011-1/+22
|
* Add ability to reset our passwordChocobozzz2018-01-301-0/+10
|
* Add ability to login with emailChocobozzz2018-01-291-12/+3
|
* Don't show videos of remote instance after unfollowChocobozzz2018-01-182-6/+23
|
* Add scores to follows and remove bad onesChocobozzz2018-01-111-1/+0
|
* Support video quota on clientChocobozzz2018-01-081-1/+1
|
* Send comment to followers and parentsChocobozzz2018-01-081-13/+2
|
* Fix account names validationChocobozzz2018-01-051-1/+0
|
* Send account activitypub update eventsChocobozzz2018-01-031-1/+22
|
* Begin to add avatar to actorsChocobozzz2017-12-292-5/+9
|
* Propagate old comment on new followChocobozzz2017-12-281-1/+1
|
* Begin moving video channel to actorChocobozzz2017-12-193-324/+38
|
* SaveChocobozzz2017-12-191-201/+33
|
* Enh #106 : Add an autoPlayVideo user attribute (#159)Andréas Livet2017-12-191-1/+8
| | | | | | | | | Warning : I was not able to run the tests on my machine. It uses a different approach to handle databse connexion and didn't find where to configure it... - create a migration file to add a boolean column in user table - add autoPlayVideo attribute everywhere it is needed (both on client and server side) - add tests - add a way to configure this attribute in account-settings - use the attribute in video-watch component to actually autoplay or not the video
* Use sequelize scopesChocobozzz2017-12-141-23/+27
|
* Move models to typescript-sequelizeChocobozzz2017-12-139-1104/+728
|
* Fix lintChocobozzz2017-12-041-1/+0
|
* Add account avatarChocobozzz2017-12-043-5/+30
|
* Put activity pub sends inside transactionsChocobozzz2017-11-305-16/+28
|
* Add ability to list jobsChocobozzz2017-11-301-5/+3
|