summaryrefslogtreecommitdiff
path: root/lib/gitlab/conflict/file_collection.rb
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2016-09-01 13:59:10 +0100
committerAlfredo Sumaran <alfredo@gitlab.com>2016-10-13 14:16:34 -0500
commit3f71c43e88c56bb5310c8814cd9f95cafb4f53ef (patch)
treea2f79497d1aa44c0bbcee6eb5d9f3b18b4f38647 /lib/gitlab/conflict/file_collection.rb
parent5c5259335f8bcc4de117c1e36648a269911281fb (diff)
downloadgitlab-ce-3f71c43e88c56bb5310c8814cd9f95cafb4f53ef.tar.gz
Allow setting content for resolutions
When reading conflicts: 1. Add a `type` field. `text` works as before, and has `sections`; `text-editor` is a file with ambiguous conflict markers that can only be resolved in an editor. 2. Add a `content_path` field pointing to a JSON representation of the file's content for a single file. 3. Hitting `content_path` returns a similar datastructure to the `file`, but without the `content_path` and `sections` fields, and with a `content` field containing the full contents of the file (with conflict markers). When writing conflicts: 1. Instead of `sections` being at the top level, they are now in a `files` array. This matches the read format better. 2. The `files` array contains file hashes, each of which must contain: a. `new_path` b. `old_path` c. EITHER `sections` (which works as before) or `content` (with the full content of the resolved file).
Diffstat (limited to 'lib/gitlab/conflict/file_collection.rb')
-rw-r--r--lib/gitlab/conflict/file_collection.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/gitlab/conflict/file_collection.rb b/lib/gitlab/conflict/file_collection.rb
index bbd0427a2c8..fa5bd4649d4 100644
--- a/lib/gitlab/conflict/file_collection.rb
+++ b/lib/gitlab/conflict/file_collection.rb
@@ -30,6 +30,10 @@ module Gitlab
end
end
+ def file_for_path(old_path, new_path)
+ files.find { |file| file.their_path == old_path && file.our_path == new_path }
+ end
+
def as_json(opts = nil)
{
target_branch: merge_request.target_branch,