summaryrefslogtreecommitdiff
path: root/app/models
Commit message (Collapse)AuthorAgeFilesLines
* Introduce source to pipeline entitytrigger-sourceKamil Trzcinski2017-05-312-9/+11
|
* Merge branch '30892-add-api-support-for-pipeline-schedule' into 'master'Kamil Trzciński2017-05-311-0/+4
|\ | | | | | | | | | | | | Add API support for pipeline schedule Closes #30892 See merge request !11307
| * Define last_pipeline in PipelineScheduleEntityShinya Maeda2017-05-301-4/+0
| |
| * Remove bang from update!Shinya Maeda2017-05-301-1/+1
| |
| * Add own! method on PipleineScheduleShinya Maeda2017-05-301-0/+4
| |
| * Add API support for pipeline scheduleShinya Maeda2017-05-301-0/+4
| |
* | Merge branch '30410-revert-9347-and-10079' into 'master'Douwe Maan2017-05-302-9/+4
|\ \ | | | | | | | | | | | | | | | | | | Resolve "Allow to disable username on checkout url" Closes #30410 and #30174 See merge request !11792
| * | Don't allow to pass a user to ProjectWiki#http_url_to_repoRémy Coutable2017-05-301-5/+2
| | | | | | | | | | | | | | | | | | This partially reverts be25bbc4d2c7e3d5cf3da6f51cb7f7355295ef52. Signed-off-by: Rémy Coutable <remy@rymai.me>
| * | Revert "Merge branch '1937-https-clone-url-username' into 'master' "Rémy Coutable2017-05-301-4/+2
| | | | | | | | | | | | | | | | | | | | | This reverts commit c425f366bfa84efab92b5d5e1d0721f16a2890bc, reversing changes made to 82f6c0f5ac4ed29390ed90592d2c431f3494d93f. Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | Don’t create comment on JIRA if link already existsJarka Kadlecova2017-05-301-3/+12
| |/ |/|
* | Merge branch ↵Douwe Maan2017-05-301-0/+1
|\ \ | |/ |/| | | | | | | | | | | | | '19107-404-when-creating-new-milestone-or-issue-for-project-that-has-issues-disabled' into 'master' 'New issue'/'New merge request' dropdowns should show only projects with issues/merge requests feature enabled Closes #19107 See merge request !11754
| * 'New issue'/'New merge request' dropdowns should show only projects with ↵19107-404-when-creating-new-milestone-or-issue-for-project-that-has-issues-disabledblackst0ne2017-05-301-0/+1
| | | | | | | | issues/merge requests feature enabled
* | Merge branch '32790-pipeline_schedules-pages-throwing-error-500' into 'master'Kamil Trzciński2017-05-291-7/+3
|\ \ | | | | | | | | | | | | | | | | | | Resolve "pipeline_schedules pages throwing error 500" Closes #32790 See merge request !11706
| * | Validate parameters when active is falseShinya Maeda2017-05-291-7/+3
| |/
* | Merge branch 'rework-authorizations-performance' into 'master'Douwe Maan2017-05-296-121/+38
|\ \ | | | | | | | | | | | | Rework project authorizations and nested groups for better performance See merge request !10885
| * | Hide nested group UI/API support for MySQLYorick Peterse2017-05-172-5/+1
| | | | | | | | | | | | | | | | | | This hides/disables some UI elements and API parameters related to nested groups when MySQL is used, since nested groups are not supported for MySQL.
| * | Use CTEs for nested groups and authorizationsYorick Peterse2017-05-176-121/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Fix: Milestone - Participants list is showing duplicate assigneesfix_duplicated_assignees_on_milestone_pageValery Sizov2017-05-291-1/+1
| |/ |/|
* | Merge branch 'fix_counter_cache_invalidation' into 'master'Douwe Maan2017-05-261-2/+2
|\ \ | | | | | | | | | | | | | | | | | | Fix counter cache invalidation Closes #32854 and #32870 See merge request !11736
| * | Set "expire_in" for counters cacheValery Sizov2017-05-261-2/+2
| | |
* | | Add API URL to JIRA settings31448-jira-urlsJarka Kadlecova2017-05-261-12/+25
|/ /
* | Merge branch 'dm-diff-cleanup' into 'master'Robert Speicher2017-05-255-40/+33
|\ \ | | | | | | | | | | | | Clean up diff rendering See merge request !11390
| * | Change code comment formattingdm-diff-cleanupDouwe Maan2017-05-231-1/+3
| | |
| * | Remove @commit in compare and MR controllersDouwe Maan2017-05-231-0/+3
| | |
| * | Pass fallback_diff_refs to Diff::File instead of using view helpersDouwe Maan2017-05-235-40/+28
| | |
* | | Merge branch 'winh-label-textcolor-default' into 'master'Grzegorz Bizon2017-05-251-0/+4
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Provide default for calculating label text color Closes #32728 See merge request !11681
| * | | Provide default for calculating label text color (!11681)winh2017-05-251-0/+4
| | | |
* | | | Merge branch 'revert-b0498c17' into 'master'Robert Speicher2017-05-252-7/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Refactor `DynamicPathValidator` and `GitLab::Regex` some more See merge request !11693
| * | | | Revert "Remove changes that are not absolutely necessary"Douwe Maan2017-05-242-7/+5
| | | | | | | | | | | | | | | This reverts commit b0498c176fa134761d899c9b369be12f1ca789c5
* | | | | Merge branch 'fix-kubernetes-namespace' into 'master'Grzegorz Bizon2017-05-251-12/+12
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix terminals support for Kubernetes service Closes #31754 See merge request !11653
| * | | | | Fix terminals support for Kubernetes serviceKamil Trzcinski2017-05-251-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | It was broken, because we introduced a default namespace, which was not used by terminal methods.
* | | | | | Merge branch '17848-web-hook-logging' into 'master'Dmitriy Zaporozhets2017-05-254-44/+18
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement Web Hooks calls logging Closes #17848 See merge request !11027
| * | | | | Implement web hooks loggingAlexander Randa2017-05-254-44/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * implemented logging of project and system web hooks * implemented UI for user area (project hooks) * implemented UI for admin area (system hooks) * implemented retry of logged webhook * NOT imeplemented log remover
* | | | | | ensure rss token on readAlexis Reigel2017-05-241-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | we do this on attribute read since migrating all existing users is not a feasible solution.
* | | | | | add rss_token attribute to user modelAlexis Reigel2017-05-241-1/+2
| |/ / / / |/| | | |
* | | | | Merge branch 'dm-outdated-system-note' into 'master'Grzegorz Bizon2017-05-247-29/+39
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add system note with link to diff comparison when MR discussion becomes outdated Closes #30058 See merge request !11584
| * | | | | Address reviewDouwe Maan2017-05-242-6/+9
| | | | | |
| * | | | | Fix specsdm-outdated-system-noteDouwe Maan2017-05-231-2/+5
| | | | | |
| * | | | | Add system note with link to diff comparison when MR discussion becomes outdatedDouwe Maan2017-05-236-31/+35
| | |_|/ / | |/| | |
* | | | | Merge branch 'dm-fix-routes' into 'master'Robert Speicher2017-05-241-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix ambiguous routing issues by teaching router about reserved words See merge request !11570
| * | | | | Remove changes that are not absolutely necessarydm-fix-routesDouwe Maan2017-05-232-5/+7
| | | | | |
| * | | | | Fix ambiguous routing issues by teaching router about reserved wordsDouwe Maan2017-05-232-7/+5
| | |_|/ / | |/| | |
* | | | | Merge branch 'mrchrisw-catch-openssl' into 'master'Douwe Maan2017-05-242-2/+2
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | Rescue OpenSSL::SSL::SSLError in JiraService See merge request !11467
| * | | | Rescue OpenSSL::SSL::SSLError in JiraService and IssueTrackerServicemrchrisw-catch-opensslChris Wilson2017-05-232-2/+2
| | |/ / | |/| | | | | | | | | | | | | | | | | | Add OpenSSL::SSL::SSLError to rescue in JiraService & IssueTrackerService. This will prevent an exception in production and instead display a message to the user.
* | | | Test the ExpireJobCacheWorker and related changeszj-fix-pipeline-etagZ.J. van de Weg2017-05-221-1/+1
| | | | | | | | | | | | | | | | These were untested by the cherry picked commit.
* | | | Add MISSING e-tag refresh of resource for Job, and Pipeline GraphKamil Trzcinski2017-05-221-0/+1
| |/ / |/| |
* | | Exclude manual actions from cancelable jobs scopefix/gb/exclude-manual-actions-from-cancelable-jobsGrzegorz Bizon2017-05-191-1/+1
| | |
* | | Merge branch 'dm-fix-readme-project-view' into 'master'Dmitriy Zaporozhets2017-05-191-2/+7
|\ \ \ | | | | | | | | | | | | | | | | Remove readme project_view option See merge request !11425
| * | | Remove readme project_view optionDouwe Maan2017-05-191-2/+7
| | | |
* | | | Merge branch 'dm-render-plain-readme' into 'master'Rémy Coutable2017-05-191-0/+1
|\ \ \ \ | |/ / / |/| | | | | | | | | | | Render plain README using Markup viewer so it is displayed below tree See merge request !11510