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-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-10Use relative paths for group/project/user avatarsblackst0ne
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-05-01Streamline the path validation in groups & projectsBob Van Landuyt
`Project` uses `ProjectPathValidator` which is now a `NamespaceValidator` that skips the format validation. That way we're sure we are using the same collection of reserved paths. I updated the path constraints to reflect the changes: We now allow some values that are only used on a top level namespace as a name for a nested group/project.
2017-04-06Support 2FA requirement per-groupMarkus Koller
2017-03-07Merge branch 'master' into 'rs-carrierwave-db'Douwe Maan
# Conflicts: # spec/models/group_spec.rb
2017-03-06Add `has_many` associations for models that can have Upload recordsRobert Speicher
2017-02-16Create MM team for GitLab groupZ.J. van de Weg
2017-02-07Refresh authorizations when transferring projectsYorick Peterse
This ensures that project authorizations are refreshed when moving a project from one namespace to another. When doing so the permissions for all users of both the old and new namespaces are refreshed. See #26194 for more information.
2017-01-25Merge branch 'backport-ee-changes-for-build-minutes' into 'master' Grzegorz Bizon
Backport changes introduced by https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/1078 See merge request !8657
2017-01-24Fix 500 error for Group#web_url method if nested groupDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-01-20Backport changes introduced by ↵Kamil Trzcinski
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/1083
2016-12-26Include group parents into read access for project and groupDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-12-15Merge branch 'use-build-instead-create' into 'master' Rémy Coutable
Use build instead create in group spec See merge request !8068
2016-12-14Merge branch 'master' into 'dz-remove-namespaces-path-uniq'Dmitriy Zaporozhets
Merge Request - https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/8013 # Conflicts: # db/schema.rb
2016-12-13Use build instead create in group specSemyon Pupkov
2016-12-12Modify namespace name and path validationDmitriy Zaporozhets
Currently namespace name and path have uniq validaiton which does not allow us to use same group name/path inside different groups. This commit changes validation in next way: * Allow same namespace name with different parent_id * Allow same namespace path. Uniq validation should be handled by routes table Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-12-11Create nested group factoryDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-11-11Make access request specs explicitly enable or disable access requests as ↵Nick Thomas
required
2016-10-27Revert "Revert "Change "Group#web_url" to return "/groups/twitter" rather ↵Dmitriy Zaporozhets
than "/twitter"."" This reverts commit 9dbd5b3cfad10b214ae5ef27c39246bbb74a5077.
2016-10-24Revert "Change "Group#web_url" to return "/groups/twitter" rather than ↵Dmitriy Zaporozhets
"/twitter"." This reverts commit c81ff152e08d58c13efbd50c40dd2e083ac65083.
2016-10-21Change "Group#web_url" to return "/groups/twitter" rather than "/twitter".Adam Niedzielski
Bring back the old behaviour which was changed by 6b90ccb9. Fixes #23527.
2016-10-19Add GroupLabel modelDouglas Barbosa Alexandre
2016-09-15Syntax fixes and better tests for helper methods. Updated docs.Patricio Cano
2016-08-09adds second batch of tests changed to active tensetiagonbotelho
2016-07-12Avoid `describe`-ing symbols in specsRobert Speicher
2016-07-01Exclude requesters from Project#members, Group#members and User#membersRémy Coutable
And create new Project#requesters, Group#requesters scopes. Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-06-16Turn Group#owners into a has_many associationYorick Peterse
This allows the owners to be eager loaded where needed.
2016-06-14UI and copywriting improvementsRémy Coutable
+ Move 'Edit Project/Group' out of membership-related partial + Show the access request buttons only to logged-in users + Put the request access buttons out of in a more visible button + Improve the copy in the #remove_member_message helper Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-06-14Add request access for groupsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-05-09Remove the annotate gem and delete old annotationsJeroen van Baarsen
In 8278b763d96ef10c6494409b18b7eb541463af29 the default behaviour of annotation has changes, which was causing a lot of noise in diffs. We decided in #17382 that it is better to get rid of the whole annotate gem, and instead let people look at schema.rb for the columns in a table. Fixes: #17382
2016-03-22Address feedbackDouwe Maan
2016-03-21Fix specsDouwe Maan
2016-03-21Fix more specsDouwe Maan
2016-03-18Improve group visibility level featureZeger-Jan van de Weg
2016-03-17Merge 4009-external-users into issue_12658Felipe Artur
2016-03-11Use ILIKE/LIKE for searching groupsYorick Peterse
2016-03-10Add permission level to groupsFelipe Artur
2016-01-06Annotate modelsStan Hu
2016-01-04remove public field from namespace and refactoringValery Sizov
2015-12-09Tag model specsDouwe Maan
2015-11-18Group methods for filtering public/visible groupsYorick Peterse
These methods will be used to get a list of groups, optionally restricted to only those visible to a given user.
2015-11-13Annotate modelsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-05 Allow groups to appear in the search results if the group owner allows itValery Sizov
2015-05-26Add `to_reference` for models that support referencesRobert Speicher
Now there is a single source of information for which attribute a model uses to be referenced, and its special character.
2015-02-12Updated rspec to rspec 3.x syntaxJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2014-09-14Replace old references of users_project & users_groupDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-09-14Huge replace of old users_project and users_group referencesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-04-09Re-annotate modelsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>