Merge branch '8784-dir-listings'
[arvados.git] / services / api / app / models / commit.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 class Commit < ActiveRecord::Base
6   extend CurrentApiClient
7
8   class GitError < StandardError
9     def http_status
10       422
11     end
12   end
13
14   def self.git_check_ref_format(e)
15     if !e or e.empty? or e[0] == '-' or e[0] == '$'
16       # definitely not valid
17       false
18     else
19       `git check-ref-format --allow-onelevel #{e.shellescape}`
20       $?.success?
21     end
22   end
23
24   # Return an array of commits (each a 40-char sha1) satisfying the
25   # given criteria.
26   #
27   # Return [] if the revisions given in minimum/maximum are invalid or
28   # don't exist in the given repository.
29   #
30   # Raise ArgumentError if the given repository is invalid, does not
31   # exist, or cannot be read for any reason. (Any transient error that
32   # prevents commit ranges from resolving must raise rather than
33   # returning an empty array.)
34   #
35   # repository can be the name of a locally hosted repository or a git
36   # URL (see git-fetch(1)). Currently http, https, and git schemes are
37   # supported.
38   def self.find_commit_range repository, minimum, maximum, exclude
39     if minimum and minimum.empty?
40       minimum = nil
41     end
42
43     if minimum and !git_check_ref_format(minimum)
44       logger.warn "find_commit_range called with invalid minimum revision: '#{minimum}'"
45       return []
46     end
47
48     if maximum and !git_check_ref_format(maximum)
49       logger.warn "find_commit_range called with invalid maximum revision: '#{maximum}'"
50       return []
51     end
52
53     if !maximum
54       maximum = "HEAD"
55     end
56
57     gitdir, is_remote = git_dir_for repository
58     fetch_remote_repository gitdir, repository if is_remote
59     ENV['GIT_DIR'] = gitdir
60
61     commits = []
62
63     # Get the commit hash for the upper bound
64     max_hash = nil
65     git_max_hash_cmd = "git rev-list --max-count=1 #{maximum.shellescape} --"
66     IO.foreach("|#{git_max_hash_cmd}") do |line|
67       max_hash = line.strip
68     end
69
70     # If not found, nothing else to do
71     if !max_hash
72       logger.warn "no refs found looking for max_hash: `GIT_DIR=#{gitdir} #{git_max_hash_cmd}` returned no output"
73       return []
74     end
75
76     # If string is invalid, nothing else to do
77     if !git_check_ref_format(max_hash)
78       logger.warn "ref returned by `GIT_DIR=#{gitdir} #{git_max_hash_cmd}` was invalid for max_hash: #{max_hash}"
79       return []
80     end
81
82     resolved_exclude = nil
83     if exclude
84       resolved_exclude = []
85       exclude.each do |e|
86         if git_check_ref_format(e)
87           IO.foreach("|git rev-list --max-count=1 #{e.shellescape} --") do |line|
88             resolved_exclude.push(line.strip)
89           end
90         else
91           logger.warn "find_commit_range called with invalid exclude invalid characters: '#{exclude}'"
92           return []
93         end
94       end
95     end
96
97     if minimum
98       # Get the commit hash for the lower bound
99       min_hash = nil
100       git_min_hash_cmd = "git rev-list --max-count=1 #{minimum.shellescape} --"
101       IO.foreach("|#{git_min_hash_cmd}") do |line|
102         min_hash = line.strip
103       end
104
105       # If not found, nothing else to do
106       if !min_hash
107         logger.warn "no refs found looking for min_hash: `GIT_DIR=#{gitdir} #{git_min_hash_cmd}` returned no output"
108         return []
109       end
110
111       # If string is invalid, nothing else to do
112       if !git_check_ref_format(min_hash)
113         logger.warn "ref returned by `GIT_DIR=#{gitdir} #{git_min_hash_cmd}` was invalid for min_hash: #{min_hash}"
114         return []
115       end
116
117       # Now find all commits between them
118       IO.foreach("|git rev-list #{min_hash.shellescape}..#{max_hash.shellescape} --") do |line|
119         hash = line.strip
120         commits.push(hash) if !resolved_exclude or !resolved_exclude.include? hash
121       end
122
123       commits.push(min_hash) if !resolved_exclude or !resolved_exclude.include? min_hash
124     else
125       commits.push(max_hash) if !resolved_exclude or !resolved_exclude.include? max_hash
126     end
127
128     commits
129   end
130
131   # Given a repository (url, or name of hosted repo) and commit sha1,
132   # copy the commit into the internal git repo and tag it with the
133   # given tag (typically a job UUID).
134   #
135   # The repo can be a remote url, but in this case sha1 must already
136   # be present in our local cache for that repo: e.g., sha1 was just
137   # returned by find_commit_range.
138   def self.tag_in_internal_repository repo_name, sha1, tag
139     unless git_check_ref_format tag
140       raise ArgumentError.new "invalid tag #{tag}"
141     end
142     unless /^[0-9a-f]{40}$/ =~ sha1
143       raise ArgumentError.new "invalid sha1 #{sha1}"
144     end
145     src_gitdir, _ = git_dir_for repo_name
146     unless src_gitdir
147       raise ArgumentError.new "no local repository for #{repo_name}"
148     end
149     dst_gitdir = Rails.configuration.git_internal_dir
150     must_pipe("echo #{sha1.shellescape}",
151               "git --git-dir #{src_gitdir.shellescape} pack-objects -q --revs --stdout",
152               "git --git-dir #{dst_gitdir.shellescape} unpack-objects -q")
153     must_git(dst_gitdir,
154              "tag --force #{tag.shellescape} #{sha1.shellescape}")
155   end
156
157   protected
158
159   def self.remote_url? repo_name
160     /^(https?|git):\/\// =~ repo_name
161   end
162
163   # Return [local_git_dir, is_remote]. If is_remote, caller must use
164   # fetch_remote_repository to ensure content is up-to-date.
165   #
166   # Raises an exception if the latest content could not be fetched for
167   # any reason.
168   def self.git_dir_for repo_name
169     if remote_url? repo_name
170       return [cache_dir_for(repo_name), true]
171     end
172     repos = Repository.readable_by(current_user).where(name: repo_name)
173     if repos.count == 0
174       raise ArgumentError.new "Repository not found: '#{repo_name}'"
175     elsif repos.count > 1
176       logger.error "Multiple repositories with name=='#{repo_name}'!"
177       raise ArgumentError.new "Name conflict"
178     else
179       return [repos.first.server_path, false]
180     end
181   end
182
183   def self.cache_dir_for git_url
184     File.join(cache_dir_base, Digest::SHA1.hexdigest(git_url) + ".git").to_s
185   end
186
187   def self.cache_dir_base
188     Rails.root.join 'tmp', 'git'
189   end
190
191   def self.fetch_remote_repository gitdir, git_url
192     # Caller decides which protocols are worth using. This is just a
193     # safety check to ensure we never use urls like "--flag" or wander
194     # into git's hardlink features by using bare "/path/foo" instead
195     # of "file:///path/foo".
196     unless /^[a-z]+:\/\// =~ git_url
197       raise ArgumentError.new "invalid git url #{git_url}"
198     end
199     begin
200       must_git gitdir, "branch"
201     rescue GitError => e
202       raise unless /Not a git repository/ =~ e.to_s
203       # OK, this just means we need to create a blank cache repository
204       # before fetching.
205       FileUtils.mkdir_p gitdir
206       must_git gitdir, "init"
207     end
208     must_git(gitdir,
209              "fetch --no-progress --tags --prune --force --update-head-ok #{git_url.shellescape} 'refs/heads/*:refs/heads/*'")
210   end
211
212   def self.must_git gitdir, *cmds
213     # Clear token in case a git helper tries to use it as a password.
214     orig_token = ENV['ARVADOS_API_TOKEN']
215     ENV['ARVADOS_API_TOKEN'] = ''
216     begin
217       git = "git --git-dir #{gitdir.shellescape}"
218       cmds.each do |cmd|
219         must_pipe git+" "+cmd
220       end
221     ensure
222       ENV['ARVADOS_API_TOKEN'] = orig_token
223     end
224   end
225
226   def self.must_pipe *cmds
227     cmd = cmds.join(" 2>&1 |") + " 2>&1"
228     out = IO.read("| </dev/null #{cmd}")
229     if not $?.success?
230       raise GitError.new "#{cmd}: #{$?}: #{out}"
231     end
232   end
233 end