summaryrefslogtreecommitdiff
path: root/app/services/projects
Commit message (Collapse)AuthorAgeFilesLines
* Move Contribution Analytics related spec in ↵Imre Farkas2019-04-052-0/+7
| | | | spec/features/groups/group_page_with_external_authorization_service_spec to EE
* Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhq into ↵jarv/dev-to-gitlab-2019-04-02John Jarvis2019-04-022-1/+33
|\ | | | | | | jarv/dev-to-gitlab-2019-04-02
| * Return cached languages if they've been detected beforeIgor Drozdov2019-03-202-1/+33
| |
* | Force a full GC after importing a projectsh-force-gc-after-importStan Hu2019-04-012-2/+5
|/ | | | | | | | | | | | 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
* Run rubocop -aNick Thomas2019-03-132-20/+16
|
* Merge branch '56618-hashed-storage-skip-validation' into 'master'Stan Hu2019-03-074-4/+4
|\ | | | | | | | | | | | | 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-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Adds the Rubocop ReturnNil copAndrew Newdigate2019-03-061-1/+1
| | | | | | | | | | This style change enforces `return if ...` instead of `return nil if ...` to save maintainers a few minor review points
* | Merge dev master into GitLab.com masterYorick Peterse2019-03-041-2/+8
|\ \ | |/ |/|
| * Merge branch ↵Yorick Peterse2019-03-041-2/+8
| |\ | | | | | | | | | | | | | | | | | | '2802-security-add-public-internal-groups-as-members-to-your-project-idor' into 'master' Add public/internal groups as members to your Project(IDOR) See merge request gitlab/gitlabhq!2898
| | * Change policy regarding group visibilityMałgorzata Ksionek2019-02-201-2/+8
| | |
* | | Merge branch '53966-make-hashed-storage-migration-safer-and-more-inviting' ↵Douglas Barbosa Alexandre2019-03-017-56/+191
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | into 'master' Hashed Storage rollback mechanism See merge request gitlab-org/gitlab-ce!23955
| * | | Improve migration/rollback logic for attachmentsGabriel Mazetto2019-03-012-6/+14
| | | |
| * | | Extract duplicated code into BaseAttachmentServiceGabriel Mazetto2019-03-013-93/+55
| | | | | | | | | | | | | | | | Exceptions were also simplified from 2 to 1.
| * | | Extract and simplify more code into BaseRepositoryService`Gabriel Mazetto2019-03-013-29/+12
| | | | | | | | | | | | | | | | | | | | `try_to_set_repository_read_only!` is now on the Base class. Simplified Exception classes from 2 to 1 with a more descriptive name.
| * | | Extract common logic to HashedStorage::BaseWorkerGabriel Mazetto2019-03-011-0/+2
| | | | | | | | | | | | | | | | | | | | New class contains the ExclusiveLease specifics that is shared among both the Migration and Rollback workers.
| * | | Edge case: upgrade/downgrade when repository doesn't existGabriel Mazetto2019-03-011-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | 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-014-8/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-013-0/+142
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-1/+22
|/ / / | | | | | | | | | | | | | | | - Move some specs into contexts - Let get_slugs method take a parameter and return a specific slug. - Add rescues when using Addressable::URI.
* | | Merge branch '42086-project-fetch-statistics-api-http-only' into 'master'57125-heatmap-chart-typeNick Thomas2019-02-271-0/+32
|\ \ \ | |/ / |/| | | | | | | | | | | | | | Resolve "Project fetch statistics API (HTTP only)" Closes #42086 See merge request gitlab-org/gitlab-ce!23596
| * | Add project http fetch statistics APIJacopo2019-02-271-0/+32
| |/ | | | | | | | | | | 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.
* | Let users set name/path on project fork using APIBalasankar "Balu" C2019-02-201-2/+10
|/
* Refactor use of Shell.import_repository for WikisStan Hu2019-02-051-1/+1
| | | | | | The previous behavior would pass in a list of parameters to Shell, but we can improve this by using the WikiFormatter and Project models to give us the same information.
* Send project name with Gitaly repository requestsStan Hu2019-02-051-1/+1
| | | | | | | 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/+27
|\ | | | | | | | | 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-15/+18
| |
| * Update pages config only when changedKamil Trzciński2019-01-161-3/+20
| |
* | Extract GitLab Pages using RubyZipKamil Trzciński2019-01-311-16/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-45/+85
| |
* | Fix path disclosure on Project ImportJames Lopez2019-01-312-2/+24
| |
* | Use Gitlab::AppLogger instead of Rails.loggerGabriel Mazetto2019-01-252-2/+2
| |
* | Track when MigrateAttachmentsService is skippedGabriel Mazetto2019-01-251-0/+6
| | | | | | | | We need this new state for the Geo event logic in EE
* | Refactor Storage MigrationGabriel Mazetto2019-01-252-12/+22
| | | | | | | | | | | | | | | | | | 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.
* | Extract BaseRepositoryService from MigrateRepositoryGabriel Mazetto2019-01-252-45/+58
| | | | | | | | This will serve as new base class for both Migrate and Rollback
* | Move MigrationService to HashedStorage moduleGabriel Mazetto2019-01-253-28/+30
| | | | | | | | | | 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/+94
|\ \ | | | | | | | | | | | | | | | | | | Container repository cleanup API Closes #55978 See merge request gitlab-org/gitlab-ce!24303
| * | Add Container Registry APIKamil Trzciński2019-01-251-0/+94
| |/ | | | | | | | | | | 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.
* | Refactored AfterRenameService to reduce couplingGabriel Mazetto2019-01-222-13/+21
| | | | | | | | | | | | | | | | | | | | | | 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-212-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 'raise-on-unfiltered-params' into 'master'Rémy Coutable2019-01-211-1/+1
|\ \ | | | | | | | | | | | | Set ActionController raise_on_unfiltered_parameters to true See merge request gitlab-org/gitlab-ce!24443
| * | Actually set raise_on_unfiltered_parameters to trueJasper Maes2019-01-161-1/+1
| | |
* | | Merge branch 'osw-enforces-project-removal-with-past-failed-attempts' into ↵Nick Thomas2019-01-181-5/+19
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '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-5/+19
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge branch '47988-improve-milestone-queries-with-subq' into 'master'Andreas Brandl2019-01-171-1/+1
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | Improve MilestonesFinder to accept project and group relations Closes #47988 See merge request gitlab-org/gitlab-ce!24325
| * | Fix MilestonesFinder to pass relations to scopeHeinrich Lee Yu2019-01-121-1/+1
| |/ | | | | | | | | | | | | Instead of querying relations into ids we just pass them to the model scope because the scope supports it now. Also changes other calls to `Milestone.for_projects_and_groups`
* | Refactor code for protecting default branchesYorick Peterse2019-01-161-0/+67
|/ | | | | | | | | | | | | | | 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.
* 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-1/+1
| | | | | | | | Re-use operations controller which already handles tracing settings.