Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-06-02Fix hard-deleting users when they have authored issuesNick Thomas
2017-05-31Remove some deprecated methodsToon Claes
To avoid the use of slow queries, remove some deprecated methods and encourage the use of ProjectFinder to find projects.
2017-05-29Merge branch 'rework-authorizations-performance' into 'master'Douwe Maan
Rework project authorizations and nested groups for better performance See merge request !10885
2017-05-24ensure rss token on readAlexis Reigel
we do this on attribute read since migrating all existing users is not a feasible solution.
2017-05-24add missing spec for incoming email token presenceAlexis Reigel
2017-05-24add rss_token attribute to user modelAlexis Reigel
2017-05-18Fixes #32474Michael Kozono
Older namespace records may be both `type == ‘Group` AND `owner_id` is not null.
2017-05-17Use CTEs for nested groups and authorizationsYorick Peterse
This commit introduces the usage of Common Table Expressions (CTEs) to efficiently retrieve nested group hierarchies, without having to rely on the "routes" table (which is an _incredibly_ inefficient way of getting the data). This requires a patch to ActiveRecord (found in the added initializer) to work properly as ActiveRecord doesn't support WITH statements properly out of the box. Unfortunately MySQL provides no efficient way of getting nested groups. For example, the old routes setup could easily take 5-10 seconds depending on the amount of "routes" in a database. Providing vastly different logic for both MySQL and PostgreSQL will negatively impact the development process. Because of this the various nested groups related methods return empty relations when used in combination with MySQL. For project authorizations the logic is split up into two classes: * Gitlab::ProjectAuthorizations::WithNestedGroups * Gitlab::ProjectAuthorizations::WithoutNestedGroups Both classes get the fresh project authorizations (= as they should be in the "project_authorizations" table), including nested groups if PostgreSQL is used. The logic of these two classes is quite different apart from their public interface. This complicates development a bit, but unfortunately there is no way around this. This commit also introduces Gitlab::GroupHierarchy. This class can be used to get the ancestors and descendants of a base relation, or both by using a UNION. This in turn is used by methods such as: * Namespace#ancestors * Namespace#descendants * User#all_expanded_groups Again this class relies on CTEs and thus only works on PostgreSQL. The Namespace methods will return an empty relation when MySQL is used, while User#all_expanded_groups will return only the groups a user is a direct member of. Performance wise the impact is quite large. For example, on GitLab.com Namespace#descendants used to take around 580 ms to retrieve data for a particular user. Using CTEs we are able to reduce this down to roughly 1 millisecond, returning the exact same data. == On The Fly Refreshing Refreshing of authorizations on the fly (= when users.authorized_projects_populated was not set) is removed with this commit. This simplifies the code, and ensures any queries used for authorizations are not mutated because they are executed in a Rails scope (e.g. Project.visible_to_user). This commit includes a migration to schedule refreshing authorizations for all users, ensuring all of them have their authorizations in place. Said migration schedules users in batches of 5000, with 5 minutes between every batch to smear the load around a bit. == Spec Changes This commit also introduces some changes to various specs. For example, some specs for ProjectTeam assumed that creating a personal project would _not_ lead to the owner having access, which is incorrect. Because we also no longer refresh authorizations on the fly for new users some code had to be added to the "empty_project" factory. This chunk of code ensures that the owner's permissions are refreshed after creating the project, something that is normally done in Projects::CreateService.
2017-05-15Invalidate cache for issue and MR counters more granularlyValery Sizov
2017-05-10Enable the Style/TrailingCommaInLiteral copRémy Coutable
Use the EnforcedStyleForMultiline: no_comma option. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-10Use relative paths for group/project/user avatarsblackst0ne
2017-05-08Devise can assign trackable fields, but only allow writes once/hourToon Claes
Not assigning the trackable fields seems to cause strange side-effects.
2017-05-08Limit `update_tracked_fields` to write to database once/hourToon Claes
Every time a user logs in or out, the Trackable attributes are written to the database. This is causing a lot of load on the database, for data that isn't really critical. So to avoid the database being hammered, add a Gitlab::ExclusiveLease before writing trackable attributes to the database. This lease expires after an hour, so only when the attributes were written more than an hour ago, they can be written again. Otherwise they are ignored.
2017-05-05Redirect from redirect routes to canonical routesMichael Kozono
2017-05-05Merge branch 'backport-ee-4b464eaaee' into 'master' Robert Speicher
Backport avatar-related spec changes from gitlab-org/gitlab-ee@4b464eaaee See merge request !11072
2017-05-05Add CHANGELOG entry, some specs and locale file for German.Ruben Davila
2017-05-04Backport avatar-related spec changes from gitlab-org/gitlab-ee@4b464eaaeeRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-01Reject group-routes as names of child namespacesBob Van Landuyt
2017-04-26Skip validation when creating internal (ghost, service desk) usersDouwe Maan
2017-04-20Merge branch 'uassign_on_member_removing' into 'master' Sean McGivern
Unassign all Issues and Merge Requests when member leaves a team Closes #30768 and #24117 See merge request !10755
2017-04-19Fix active user countJames Lopez
2017-04-18Remove assigned_(issues|merge_requests) methods from the issuableValery Sizov
2017-04-09Remove the User#is_admin? methodblackst0ne
2017-04-06Merge branch '28695-move-all-associated-records-to-ghost-user' into 'master' Douwe Maan
Resolve "Deleting a user shouldn't delete associated records" Closes #28695 and #30514 See merge request !10467
2017-04-06Implement review comments from @DouweM for !10467.Timothy Andrew
1. Have `MigrateToGhostUser` be a service rather than a mixed-in module, to keep things explicit. Specs testing the behavior of this class are moved into a separate service spec file. 2. Add a `user.reported_abuse_reports` association to make the `migrate_abuse_reports` method more consistent with the other `migrate_` methods.
2017-04-06Fix a bug with the User#abuse_report association.Timothy Andrew
Introduction ------------ 1. The foreign key was not explicitly specified on the association. 2. The `AbuseReport` model contains two references to user - `reporter_id` and `user_id` 3. `user.abuse_report` is supposed to return the single abuse report where `user_id` refers to the given user. Bug Description --------------- 1. `user.abuse_report` would return an abuse report where `reporter_id` referred to the current user, if such an abuse report was present. 2. This implies a slightly more serious bug as well: - Assume User A filed an abuse report against User B - We have an abuse report where `reporter_id` is User A and `user_id` is User B - If User A is updated (`user_a.block`, for example), the abuse report would also be updated, such that both `reporter_id` _and_ `user_id` point to User A. Fix --- Explicitly declare the foreign key `user_id` in the `has_one` declaration
2017-04-06rename cache db column with `_cached` suffixAlexis Reigel
2017-04-06check all groups for 2fa requirementAlexis Reigel
2017-04-06Support 2FA requirement per-groupMarkus Koller
2017-03-27Implement new service for creating userGeorge Andrinopoulos
2017-03-24Fix projects_limit RangeError on user createAlexander Randa
2017-03-17Make sure alias email would never match:Lin Jen-Shin
Hopefully this could fix: https://gitlab.com/gitlab-org/gitlab-ce/builds/12431186 To make sure that the email would never contain "joh" otherwise it would match to this `another_user`.
2017-03-13Merge branch 'refactor/global-permissions-for-internal-users' into 'master' Sean McGivern
Refactor/global permissions for internal users See merge request !9598
2017-03-13Resolve transient failure in spec/models/user_spec.rbGeorge Andrinopoulos
2017-03-09don't require ghost users to be blockedhttp://jneen.net/
2017-03-06Add `has_many` associations for models that can have Upload recordsRobert Speicher
2017-03-05Make triggers to be user awareKamil Trzcinski
2017-02-28Fix access to projects shared with a nested groupDouwe Maan
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-02-24Fix specs for the ghost user feature.Timothy Andrew
2017-02-24Use a `ghost` boolean to track ghost users.Timothy Andrew
Rather than using a separate `ghost` state. This lets us have the benefits of both ghost and blocked users (ghost: true, state: blocked) without having to rewrite a number of queries to include cases for `state: ghost`.
2017-02-24Extract code from `Namespace#clean_path` for ghost user generation.Timothy Andrew
1. Create a `Uniquify` class, which generalizes the process of generating unique strings, by accepting a function that defines what "uniqueness" means in a given context. 2. WIP: Make sure tests for `Namespace` pass, add more if necessary. 3. WIP: Add tests for `Uniquify`
2017-02-24Deleting a user shouldn't delete associated issues.Timothy Andrew
- "Associated" issues are issues the user has created + issues that the user is assigned to. - Issues that a user owns are transferred to a "Ghost User" (just a regular user with `state = 'ghost'` that is created when `User.ghost` is called). - Issues that a user is assigned to are moved to the "Unassigned" state. - Fix a spec failure in `profile_spec` — a spec was asserting that when a user is deleted, `User.count` decreases by 1. After this change, deleting a user creates (potentially) a ghost user, causing `User.count` not to change. The spec has been updated to look for the relevant user in the assertion.
2017-02-23Revert "Enable Style/DotPosition"Douwe Maan
This reverts commit e00fb2bdc2090e9cabeb1eb35a2672a882cc96e9. # Conflicts: # .rubocop.yml # .rubocop_todo.yml # lib/gitlab/ci/config/entry/global.rb # lib/gitlab/ci/config/entry/jobs.rb # spec/lib/gitlab/ci/config/entry/factory_spec.rb # spec/lib/gitlab/ci/config/entry/global_spec.rb # spec/lib/gitlab/ci/config/entry/job_spec.rb # spec/lib/gitlab/ci/status/build/factory_spec.rb # spec/lib/gitlab/incoming_email_spec.rb
2017-02-23Revert "Prefer leading style for Style/DotPosition"Douwe Maan
This reverts commit cb10b725c8929b8b4460f89c9d96c773af39ba6b.
2017-02-23Enable Rails/DelegateDouwe Maan
2017-02-23Prefer leading style for Style/DotPositionDouwe Maan
2017-02-23Enable Style/DotPositionDouwe Maan
2017-02-15Remove all instances of theme_id; require downtimeAnnabel Dunstone Gray
2017-02-15Drop theme ID from users tableAnnabel Dunstone Gray
2017-02-13Make deploy key not show in User's keys listPawel Chojnacki