summaryrefslogtreecommitdiff
path: root/app/models/merge_request_diff.rb
Commit message (Collapse)AuthorAgeFilesLines
* Inherit from ApplicationRecord instead of ActiveRecord::BaseNick Thomas2019-03-281-1/+1
|
* Allow external diffs to be used conditionallyNick Thomas2019-03-271-21/+151
| | | | | | | | | | Since external diffs are likely to be a bit slower than in-database ones, add a mode that makes diffs external after they've been obsoleted by events. This should strike a balance between performance and disk space. A background cron drives the majority of migrations, since diffs become outdated through user actions.
* Fix error creating a merge request when diff includes a null byteStan Hu2019-03-141-1/+6
| | | | | | | | | If a diff happened to include a single null byte anywhere, insertion into the database would fail with an Error 500 since the column is text and not a byte array. To fix this, we mark the diff as binary if we detect a single null byte and Base64-encode it. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/57710
* Run rubocop -aNick Thomas2019-03-131-6/+4
|
* Arbitrary file read via MergeRequestDiffFrancisco Javier López2019-03-041-0/+2
|
* Remove two ignored columnsNick Thomas2019-02-141-3/+0
|
* Allow MR diffs to be placed into an object storeNick Thomas2019-02-051-9/+107
|
* Passing an argument to force an association to reload is now deprecatedJasper Maes2018-11-261-1/+2
|
* Fix MergeRequestService erroring out on deleted branchStan Hu2018-11-121-1/+1
| | | | | | | | When a branch is deleted, the push commit IDs is an empty array. The previous change would attempt to call `[].exists?`, which is invalid. Fix this by returning `MergeRequestDiffCommit.none` instead. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/53853
* Allow getting all paths (old & new) involved in MRMark Chao2018-11-071-0/+7
| | | | Fetch database columns directly if available
* Optimize merge request refresh by using the database to check commit SHAssh-optimize-mr-commit-sha-lookupStan Hu2018-11-021-0/+6
| | | | | | | | | | | | | | Previously for a given merge request, we would: 1. Create the array of commit SHAs involved in the push (A) 2. Request all merge request commits and map the SHA (B) 3. Reload the diff if there were any common commits between A and B We can avoid additional database querying and overhead by checking with the database whether the merge request contains any of the commit SHAs. Relates to https://gitlab.com/gitlab-org/gitlab-ce/issues/53213
* Disable existing offenses for the CodeReuse copsYorick Peterse2018-09-111-0/+2
| | | | | This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
* Backport Repository#keep_around changes from EE to CEMichael Kozono2018-08-271-3/+1
|
* Merge branch 'frozen-string-enable-app-models' into 'master'Rémy Coutable2018-08-021-0/+2
|\ | | | | | | | | Enable frozen string in app/models/*.rb See merge request gitlab-org/gitlab-ce!20851
| * Enable frozen string in app/models/*.rbrepo-forks/gitlab-ce-frozen-string-enable-app-modelsgfyoung2018-07-261-0/+2
| | | | | | | | Partially addresses #47424.
* | Only serializes diff files found by paths queryOswaldo Ferreira2018-08-011-5/+3
|/
* Render MR page when no persisted diff_refs or diffs sizeOswaldo Ferreira2018-07-181-1/+1
|
* Delete non-latest merge request diff files upon diffs reloadosw-delete-non-latest-mr-diff-files-upon-mergeOswaldo Ferreira2018-06-241-0/+27
|
* Cleanup after adding MR diff's commit_count (try 2)Jan Provaznik2018-04-251-4/+0
| | | | | | * processes any pending records which are not migrated yet * bumps import_export version because of new commits_count attribute * removes commits_count fallback method
* Revert "Cleanup after adding MR diff's commit_count"Jan Provaznik2018-03-081-0/+4
| | | | This reverts commit 0b7d10851456018328da137beeca931767b4fd0a.
* Cleanup after adding MR diff's commit_countJan Provaznik2018-03-051-4/+0
| | | | | | * processes any pending records which are not migrated yet * bumps import_export version because of new commits_count attribute * removes commits_count fallback method
* Check for keep-around commits once if target and source projects are the sameAhmad Sherif2018-02-071-1/+1
| | | | This reduces the number of RefExists RPC call.
* Display related merge requests in commit detail pageHiroyuki Sato2018-01-121-0/+3
|
* Denormalize commits count for merge request diffs38068-commits-countJan Provaznik2018-01-101-4/+7
| | | | | | | | | For each MR diff an extra 'SELECT COUNT()' is executed to get number of commits for the diff. Overall time to get counts for all MR diffs may be quite expensive. To speed up loading of MR info, information about number of commits is stored in a MR diff's extra column. Closes #38068
* Use memoization for commits on diffsZeger-Jan van de Weg2017-12-121-3/+3
| | | | | | | | | | | | | | | | The Gitaly CommitService is being hammered by n + 1 calls, mostly when finding commits. This leads to this gRPC being turned of on production: https://gitlab.com/gitlab-org/gitaly/issues/514#note_48991378 Hunting down where it came from, most of them were due to MergeRequest#show. To prove this, I set a script to request the MergeRequest#show page 50 times. The GDK was being scraped by Prometheus, where we have metrics on controller#action and their Gitaly calls performed. On both occations I've restarted the full GDK so all caches had to be rebuild. Current master, 806a68a81f1baee, needed 435 requests After this commit, 154 requests
* Remove serialised diff and commit columnsSean McGivern2017-11-281-62/+10
| | | | | | | | | | | | | | | | The st_commits and st_diffs columns on merge_request_diffs historically held the YAML-serialised data for a merge request diff, in a variety of formats. Since 9.5, these have been migrated in the background to two new tables: merge_request_diff_commits and merge_request_diff_files. That has the advantage that we can actually query the data (for instance, to find out how many commits we've stored), and that it can't be in a variety of formats, but must match the new schema. This is the final step of that journey, where we drop those columns and remove all references to them. This is a breaking change to the importer, because we can no longer import diffs created in the old format, and we cannot guarantee the export will be in the new format unless it was generated after this commit.
* Use latest_merge_request_diff associationSean McGivern2017-11-231-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Compared to the merge_request_diff association: 1. It's simpler to query. The query uses a foreign key to the merge_request_diffs table, so no ordering is necessary. 2. It's faster for preloading. The merge_request_diff association has to load every diff for the MRs in the set, then discard all but the most recent for each. This association means that Rails can just query for N diffs from N MRs. 3. It's more complicated to update. This is a bidirectional foreign key, so we need to update two tables when adding a diff record. This also means we need to handle this as a special case when importing a GitLab project. There is some juggling with this association in the merge request model: * `MergeRequest#latest_merge_request_diff` is _always_ the latest diff. * `MergeRequest#merge_request_diff` reuses `MergeRequest#latest_merge_request_diff` unless: * Arguments are passed. These are typically to force-reload the association. * It doesn't exist. That means we might be trying to implicitly create a diff. This only seems to happen in specs. * The association is already loaded. This is important for the reasons explained in the comment, which I'll reiterate here: if we a) load a non-latest diff, then b) get its `merge_request`, then c) get that MR's `merge_request_diff`, we should get the diff we loaded in c), even though that's not the latest diff. Basically, `MergeRequest#merge_request_diff` is the latest diff in most cases, but not quite all.
* Optimise getting the pipeline status of commitsci-pipeline-status-queryYorick Peterse2017-11-161-1/+3
| | | | | This adds an optimised way of getting the latest pipeline status for a list of Commit objects (or just a single one).
* Set merge_request_diff_id on MR when creatingSean McGivern2017-11-021-0/+4
| | | | | | Once we migrate existing MRs to have this column, we will be able to get the latest diff for a single merge request more efficiently, and (more importantly) get all latest diffs for a collection of MRs efficiently.
* Move `fetch_ref` from MergeRequestDiff#ensure_commit_shas to MergeRequestRémy Coutable2017-10-051-2/+0
| | | | | | | | | | | | MergeRequest#create_merge_request_diff and MergeRequest#reload_diff are the only places where we generate a new MR diff so that's where we should fetch the ref. This also ensures that the ref is not fetched when we call merge_request.merge_request_diffs.create in Github::Import#fetch_pull_requests. Signed-off-by: Rémy Coutable <remy@rymai.me>
* Keep only the changes that are known to work wellRémy Coutable2017-10-051-1/+1
| | | | | | | | | | | | Also, improved a bit the method names in Github::Representation::PullRequest. Last but not least, ensure temp branch names doesn't contain a `/` as this would create the ref in a subfolder in `refs/heads` (e.g. `refs/heads/gh-123/456/rymai/foo`), and would leave empty directories upon branch deletion (e.g. `refs/heads/gh-123/456/rymai/`. Signed-off-by: Rémy Coutable <remy@rymai.me>
* Fetch and map refs/pull to refs/merge-requests in the GH importJames Lopez2017-10-051-1/+2
| | | | update MR diff
* Refactor Gitlab::Git::Commit to include a repositoryAlejandro Rodríguez2017-08-071-3/+1
|
* Migrate MR commits and diffs to new tablesmerge-request-commits-background-migrationSean McGivern2017-08-031-5/+1
| | | | | | | | | | | | Previously, we stored these as serialised fields - `st_{commits,diffs}` - on the `merge_request_diffs` table. These now have their own tables - `merge_request_diff_{commits,diffs}` - with a column for each attribute of the serialised data. Add a background migration to go through the existing MR diffs and migrate them to the new format. Ignore any contents that cannot be displayed. Assuming that we have 5 million rows to migrate, and each batch of 2,500 rows can be completed in 5 minutes, this will take about 7 days to migrate everything.
* Fix saving diffs that are not valid UTF-835539-can-t-create-a-merge-request-containing-a-binary-file-with-non-utf-8-charactersSean McGivern2017-07-261-4/+13
| | | | | | | | | | Previously, we used Psych, which would: 1. Check if a string was encoded as binary, and not ASCII-compatible. 2. Add the !binary tag in that case. 3. Convert to base64. We need to do the same thing, using a new column in place of the tag.
* Add table for merge request commitsSean McGivern2017-07-061-65/+34
| | | | | | | | | | | This is an ID-less table with just three columns: an association to the merge request diff the commit belongs to, the relative order of the commit within the merge request diff, and the commit SHA itself. Previously we stored much more information about the commits, so that we could display them even when they were deleted from the repo. Since 8.0, we ensure that those commits are kept around for as long as the target repo itself is, so we don't need to duplicate that data in the database.
* Rename ActiverecordSerialize copYorick Peterse2017-07-061-2/+2
| | | | | This cop has been renamed to ActiveRecordSerialize to match the way "ActiveRecord" is usually written.
* Add table for files in merge request diffsSean McGivern2017-06-161-17/+37
| | | | | | | | | | | | | | | | This adds an ID-less table containing one row per file, per merge request diff. It has a column for each attribute on Gitlab::Git::Diff that is serialised currently, with the advantage that we can easily query the attributes of this new table. It does not migrate existing data, so we have fallback code when the legacy st_diffs column is present instead. For a merge request diff to be valid, it should have at most one of: * Rows in this new table, with the correct merge_request_diff_id. * A non-NULL st_diffs column. It may have neither, if the diff is empty.
* Rename `Gitlab::Git::EncodingHelper` to `Gitlab::EncodingHelper`Bob Van Landuyt2017-06-011-1/+1
|
* Added Cop to blacklist the use of serializedocument-not-using-serializeYorick Peterse2017-05-311-2/+2
| | | | | This Cop blacklists the use of ActiveRecord's "serialize" method, except for cases where we already use this.
* Merge branch 'dm-diff-cleanup' into 'master'Robert Speicher2017-05-251-0/+23
|\ | | | | | | | | 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-231-0/+18
| |
* | Add system note with link to diff comparison when MR discussion becomes outdatedDouwe Maan2017-05-231-3/+2
|/
* Show correct size when MR diff overflowsSean McGivern2017-04-251-1/+1
| | | | | | | The problem is that we often go via a diff object constructed from the diffs stored in the DB. Those diffs, by definition, don't overflow, so we don't have access to the 'correct' `real_size` - that is stored on the MR diff object iself.
* Statisfy Robertcop and Seancopdm-outdated-diff-linkDouwe Maan2017-04-111-9/+3
|
* Add specsDouwe Maan2017-04-101-0/+12
|
* Fix find_by_diff_refsDouwe Maan2017-04-081-1/+1
|
* Fix specs and make tweaksDouwe Maan2017-04-081-1/+4
|