summaryrefslogtreecommitdiff
path: root/spec/services/projects
Commit message (Collapse)AuthorAgeFilesLines
* Move Contribution Analytics related spec in ↵Imre Farkas2019-04-092-0/+78
| | | | spec/features/groups/group_page_with_external_authorization_service_spec to EE
* Merge branch 'delay-update-statictics' into 'master'Douwe Maan2019-04-091-0/+40
|\ | | | | | | | | Fix the bug that the project statistics is not updated See merge request gitlab-org/gitlab-ce!26854
| * Refactor: extract duplicate steps to a service classHiroyuki Sato2019-04-051-0/+40
| |
* | Revert "Merge branch 'if-57131-external_auth_to_ce' into 'master'"Andreas Brandl2019-04-052-78/+0
| | | | | | This reverts merge request !26823
* | Move Contribution Analytics related spec in ↵Imre Farkas2019-04-052-0/+78
| | | | | | | | spec/features/groups/group_page_with_external_authorization_service_spec to EE
* | Autocorrect with RSpec/ExampleWording copThong Kuah2019-04-052-7/+7
|/ | | | | | | - rewords examples starting with 'should' - rewords examples starting with 'it' Note: I had to manually fixup "onlies" to "only"
* Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhq into ↵jarv/dev-to-gitlab-2019-04-02John Jarvis2019-04-022-0/+58
|\ | | | | | | jarv/dev-to-gitlab-2019-04-02
| * Merge branch 'security-id-potential-denial-languages' into 'master'GitLab Release Tools Bot2019-04-022-0/+58
| |\ | | | | | | | | | | | | Return cached languages if they've been detected before See merge request gitlab/gitlabhq!2998
| | * Return cached languages if they've been detected beforeIgor Drozdov2019-03-202-0/+58
| | |
* | | Force a full GC after importing a projectsh-force-gc-after-importStan Hu2019-04-012-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During a project import, it's possible that new branches are created by the importer to handle pull requests that have been created from forked projects, which would increment the `pushes_since_gc` value via `HousekeepingService.increment!` before a full garbage collection gets to run. This causes HousekeepingService to skip the full `git gc` and move to the incremental repack mode. To ensure that a garbage collection is run to pack refs and objects, explicitly execute the task. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/59477
* | | Remove N+1 queries from users autocompleteSean McGivern2019-03-251-13/+40
|/ / | | | | | | | | | | | | | | | | | | | | Both of these were related to groups: 1. We need to preload routes (using the `with_route` scope) if we're going to get the group's path. 2. We were counting each group's members separately. They're in the same commit because the spec for N+1 detection wouldn't pass with only one of these fixes.
* | Add feature flag for build preparing stateTiger2019-03-202-0/+2
|/ | | | | The flag is on by default, but allows us to revert back to the old behaviour if we encounter any problems.
* Run rubocop -aNick Thomas2019-03-131-4/+2
|
* Merge branch '56618-hashed-storage-skip-validation' into 'master'Stan Hu2019-03-074-0/+24
|\ | | | | | | | | | | | | Resolve "Hashed storage migration should not be attempted if project does not validate" Closes #56618 See merge request gitlab-org/gitlab-ce!25753
| * Skip project validation when switching storage layoutsGabriel Mazetto2019-03-054-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | This is a fix for the Hashed Storage migration and Rollback procedure to ignore any project-level validation error that can happen in a long-running instance. There are many situations where defaults and acceptable values changed but, because we didn't provide a migration to "valid" attributes, it can happen that project will not be `valid? => true`. Because the changes we are making are limited to setting a project as read_only or changing the storage_level, it's safe to bypass validation.
* | Merge dev master into GitLab.com masterYorick Peterse2019-03-041-0/+8
|\ \ | |/ |/|
| * Change policy regarding group visibilityMałgorzata Ksionek2019-02-201-0/+8
| |
* | Merge branch '53966-make-hashed-storage-migration-safer-and-more-inviting' ↵Douglas Barbosa Alexandre2019-03-015-3/+283
|\ \ | | | | | | | | | | | | | | | | | | into 'master' Hashed Storage rollback mechanism See merge request gitlab-org/gitlab-ce!23955
| * | Extract duplicated code into BaseAttachmentServiceGabriel Mazetto2019-03-012-4/+4
| | | | | | | | | | | | Exceptions were also simplified from 2 to 1.
| * | Extract and simplify more code into BaseRepositoryService`Gabriel Mazetto2019-03-012-2/+2
| | | | | | | | | | | | | | | `try_to_set_repository_read_only!` is now on the Base class. Simplified Exception classes from 2 to 1 with a more descriptive name.
| * | Edge case: upgrade/downgrade when repository doesn't existGabriel Mazetto2019-03-012-0/+20
| | | | | | | | | | | | | | | | | | This change takes the case where repository doesn't exist on disk and make it ignore but succeed the step, increasing or decreasing the version depending on the operation.
| * | Added Rollbacker workers and support on the rake taskGabriel Mazetto2019-03-013-1/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | Rollback is done similar to Migration for the Hashed Storage. It also shares the same ExclusiveLease key to prevent both happening at the same time. All Hashed Storage related workers now share the same queue namespace which allows for assigning dedicated workers easily.
| * | Adds Rollback functionality to HashedStorage migrationGabriel Mazetto2019-03-012-0/+158
| | | | | | | | | | | | | | | | | | | | | We are adding sidekiq workers and service classes to allow to rollback a hashed storage migration. There are some refactoring involved as well as part of the code can be reused by both the migration and the rollback logic.
* | | Refactor model and specReuben Pereira2019-03-011-6/+44
|/ / | | | | | | | | | | - Move some specs into contexts - Let get_slugs method take a parameter and return a specific slug. - Add rescues when using Addressable::URI.
* | Add project http fetch statistics APIJacopo2019-02-271-0/+36
|/ | | | | | The API get projects/:id/traffic/fetches allows user with write access to the repository to get the number of clones for the last 30 days.
* Send project name with Gitaly repository requestsStan Hu2019-02-054-6/+6
| | | | | | | When hashed storage is in use, it's helpful to have the project name associated with the request. Closes https://gitlab.com/gitlab-org/gitaly/issues/1394
* Merge branch 'update-pages-config-only-when-changed' into 'master'Grzegorz Bizon2019-02-051-7/+25
|\ | | | | | | | | Update pages config only when changed See merge request gitlab-org/gitlab-ce!24424
| * Do not reload daemon if configuration file of pages does not changeKamil Trzciński2019-01-161-7/+25
| |
* | Fix template labelsFelipe Artur2019-02-041-1/+5
| |
* | Extract GitLab Pages using RubyZipKamil Trzciński2019-01-311-9/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | RubyZip allows us to perform strong validation of expanded paths where we do extract file. We introduce the following additional checks to extract routines: 1. None of path components can be symlinked, 2. We drop privileges support for directories, 3. Symlink source needs to point within the target directory, like `public/`, 4. The symlink source needs to exist ahead of time.
* | Added validations to prevent LFS object forgeryFrancisco Javier López2019-01-313-42/+147
| |
* | Fix path disclosure on Project ImportJames Lopez2019-01-312-2/+19
| |
* | Track when MigrateAttachmentsService is skippedGabriel Mazetto2019-01-251-2/+12
| | | | | | | | We need this new state for the Geo event logic in EE
* | Refactor Storage MigrationGabriel Mazetto2019-01-252-18/+38
| | | | | | | | | | | | | | | | | | Specs were reviewed and improved to better cover the current behavior. There was some standardization done as well to facilitate the implementation of the rollback functionality. StorageMigratorWorker was extracted to HashedStorage namespace were RollbackerWorker will live one as well.
* | Move MigrationService to HashedStorage moduleGabriel Mazetto2019-01-252-3/+3
| | | | | | | | | | This is part of the refactor to include a RollbackService into HashedStorage module
* | Merge branch 'container-repository-cleanup-api' into 'master'Grzegorz Bizon2019-01-251-0/+162
|\ \ | | | | | | | | | | | | | | | | | | Container repository cleanup API Closes #55978 See merge request gitlab-org/gitlab-ce!24303
| * | Add Container Registry APIKamil Trzciński2019-01-251-0/+162
| |/ | | | | | | | | | | This includes a set of APIs to manipulate container registry. This includes also an ability to delete tags based on requested criteria, like keep-last-n, matching-name, older-than.
* | Enable the Layout/ExtraSpacing cop56392-enable-the-layout-extraspacing-copRémy Coutable2019-01-241-1/+1
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Refactored AfterRenameService to reduce couplingGabriel Mazetto2019-01-221-21/+26
| | | | | | | | | | | | | | | | | | | | | | We still rely on the Dirty API for project rename (before/after) values, but we don't access the dirty api from the service class anymore. The previous value is now part of the initialization, which makes it easier to test and the behavior is clearer. The same was done with the `rename_repo` on the Storage classes, we now provide before and after values as part of the method signature.
* | Fixed legacy storage renaming codeGabriel Mazetto2019-01-211-48/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During a previous refactor on project model, code related to the hashed storage was extracted into AfterRenameService, see 4b9c17f196bab6075563f62d01f9db65c1a0515c. The "path_before" was changed from using `previous_changes['path']` to `path_was`. They are not equivalent. `path_was` exists reliably only *before* persisting to the database. After database persistence is confirmed, the value is moved to `previous_changes[:attribute_name]`. Because the repository/attachments rename or storage upgrade happens after it was persisted to the database, we were in fact not informing the right parameters (and therefore not doing what it was supposed to).
* | Merge branch 'osw-enforces-project-removal-with-past-failed-attempts' into ↵Nick Thomas2019-01-181-0/+34
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 'master' Cleanup stale +deleted repo paths on project removal (adjusts project removal bug) Closes #46146 See merge request gitlab-org/gitlab-ce!24269
| * | Cleanup stale +deleted repo paths on project removalOswaldo Ferreira2019-01-181-0/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. When removing projects, we can end-up leaving the +deleted repo path dirty and not successfully removing the non-deleted namespace (mv process is not atomic and can be killed without fully moving the path). 2. In order to solve that, we're adding a clean-up phase on ensure which will schedule possible staled +deleted path deletion. Note that we don't check the current state (if there is or not a repo) in order to schedule the deletion. That's intentional in order to leverage Gitlab::GitalyClient::NamespaceService#remove idempotency and ensure consistency.
* | | Refactor code for protecting default branchesYorick Peterse2019-01-161-0/+242
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | This refactors some of the logic used for protecting default branches, in particular Project#after_create_default_branch. The logic for this method is moved into a separate service class. Ideally we'd get rid of Project#after_create_default_branch entirely, but unfortunately Project#after_import depends on it. This means it has to stick around until we also refactor Project#after_import. For branch protection levels we introduce Gitlab::Access::BranchProtection, which provides a small wrapper around Integer based branch protection levels. Using this class removes the need for having to constantly refer to Gitlab::Access::PROTECTION_* constants.
* | Service for calling Sentry issues apiReuben Pereira2019-01-091-4/+4
|/
* Merge branch '53966-hashed-storage-read-only' into 'master'Douglas Barbosa Alexandre2019-01-081-0/+14
|\ | | | | | | | | Hashed Storage: Only set as `read_only` when starting the per-project migration See merge request gitlab-org/gitlab-ce!24128
| * Only set as `read_only` when starting the per-project migration53966-hashed-storage-read-onlyGabriel Mazetto2019-01-071-0/+14
| | | | | | | | | | | | | | | | | | | | In the previous code, we locked the project during the migration scheduling step, which works fine for small setups, but can be problematic in really big installations. We now moved the logic to inside the worker, so we minimize the time a project will be read-only. We also make sure we only do that if reference counter is `0` (no current operation is in progress).
* | Implement error tracking configurationPeter Leitzen2019-01-071-0/+61
| | | | | | | | Re-use operations controller which already handles tracing settings.
* | Move settings operations controller from EE to CEmove-settings-oprations-to-cePeter Leitzen2019-01-061-0/+25
|/ | | | | This commit prepares the structure for the upcoming feature error tracking.
* Merge branch 'security-todos_not_redacted_for_guests' into 'master'John Jarvis2019-01-021-2/+2
|\ | | | | | | | | [master] Security todos not redacted for guests See merge request gitlab/gitlabhq!2697
| * Delete confidential issue todos for guestsFelipe Artur2018-12-141-2/+2
| | | | | | | | | | Fix leaking information of confidential issues on TODOs when user is downgraded to guest access.