repository.rb 27.3 KB
Newer Older
1 2
require 'securerandom'

3
class Repository
L
Lin Jen-Shin 已提交
4 5 6
  REF_MERGE_REQUEST = 'merge-requests'.freeze
  REF_KEEP_AROUND = 'keep-around'.freeze
  REF_ENVIRONMENTS = 'environments'.freeze
7
  MAX_DIVERGING_COUNT = 1000
8 9 10 11

  RESERVED_REFS_NAMES = %W[
    heads
    tags
12
    replace
13 14 15 16 17
    #{REF_ENVIRONMENTS}
    #{REF_KEEP_AROUND}
    #{REF_ENVIRONMENTS}
  ].freeze

18 19
  include Gitlab::ShellAdapter

20
  attr_accessor :full_path, :disk_path, :project, :is_wiki
21

22
  delegate :ref_name_for_sha, to: :raw_repository
23
  delegate :bundle_to_disk, :create_from_bundle, to: :raw_repository
24

25
  CreateTreeError = Class.new(StandardError)
26

27 28 29 30 31 32
  # Methods that cache data from the Git repository.
  #
  # Each entry in this Array should have a corresponding method with the exact
  # same name. The cache key used by those methods must also match method's
  # name.
  #
33 34 35
  # For example, for entry `:commit_count` there's a method called `commit_count` which
  # stores its data in the `commit_count` cache key.
  CACHED_METHODS = %i(size commit_count rendered_readme contribution_guide
36 37
                      changelog license_blob license_key gitignore koding_yml
                      gitlab_ci_yml branch_names tag_names branch_count
S
Sean McGivern 已提交
38 39
                      tag_count avatar exists? empty? root_ref has_visible_content?
                      issue_template_names merge_request_template_names).freeze
40 41

  # Methods that use cache_method but only memoize the value
42
  MEMOIZED_CACHED_METHODS = %i(license).freeze
43 44 45 46 47

  # Certain method caches should be refreshed when certain types of files are
  # changed. This Hash maps file types (as returned by Gitlab::FileDetector) to
  # the corresponding methods to call for refreshing caches.
  METHOD_CACHES_FOR_FILE_TYPES = {
48
    readme: :rendered_readme,
49
    changelog: :changelog,
50
    license: %i(license_blob license_key license),
51 52 53 54
    contributing: :contribution_guide,
    gitignore: :gitignore,
    koding: :koding_yml,
    gitlab_ci: :gitlab_ci_yml,
S
Sean McGivern 已提交
55 56 57
    avatar: :avatar,
    issue_template: :issue_template_names,
    merge_request_template: :merge_request_template_names
D
Douwe Maan 已提交
58
  }.freeze
59 60 61 62 63

  # Wraps around the given method and caches its output in Redis and an instance
  # variable.
  #
  # This only works for methods that do not take any arguments.
64
  def self.cache_method(name, fallback: nil, memoize_only: false)
65
    original = :"_uncached_#{name}"
66

67
    alias_method(original, name)
68

69
    define_method(name) do
70 71 72
      cache_method_output(name, fallback: fallback, memoize_only: memoize_only) do
        __send__(original) # rubocop:disable GitlabSecurity/PublicSend
      end
73
    end
74
  end
75

76
  def initialize(full_path, project, disk_path: nil, is_wiki: false)
77
    @full_path = full_path
78
    @disk_path = disk_path || full_path
79
    @project = project
80
    @commit_cache = {}
81
    @is_wiki = is_wiki
82
  end
83

84
  def ==(other)
H
http://jneen.net/ 已提交
85 86 87
    @disk_path == other.disk_path
  end

88
  def raw_repository
89
    return nil unless full_path
90

91
    @raw_repository ||= initialize_raw_repository
92 93
  end

94 95
  alias_method :raw, :raw_repository

96 97 98 99
  def cleanup
    @raw_repository&.cleanup
  end

100
  # Return absolute path to repository
101
  def path_to_repo
102
    @path_to_repo ||= File.expand_path(
103
      File.join(repository_storage_path, disk_path + '.git')
104
    )
105 106
  end

107 108 109 110
  def inspect
    "#<#{self.class.name}:#{@disk_path}>"
  end

111 112 113 114
  def create_hooks
    Gitlab::Git::Repository.create_hooks(path_to_repo, Gitlab.config.gitlab_shell.hooks_path)
  end

L
Lin Jen-Shin 已提交
115
  def commit(ref = 'HEAD')
116
    return nil unless exists?
117
    return ref if ref.is_a?(::Commit)
118

119 120
    find_commit(ref)
  end
121

122 123 124 125 126 127
  # Finding a commit by the passed SHA
  # Also takes care of caching, based on the SHA
  def commit_by(oid:)
    return @commit_cache[oid] if @commit_cache.key?(oid)

    @commit_cache[oid] = find_commit(oid)
128 129
  end

130 131 132 133 134 135 136 137 138 139 140 141
  def commits_by(oids:)
    return [] unless oids.present?

    commits = Gitlab::Git::Commit.batch_by_oid(raw_repository, oids)

    if commits.present?
      Commit.decorate(commits, @project)
    else
      []
    end
  end

142
  def commits(ref = nil, path: nil, limit: nil, offset: nil, skip_merges: false, after: nil, before: nil, all: nil)
143
    options = {
144 145 146 147 148
      repo: raw_repository,
      ref: ref,
      path: path,
      limit: limit,
      offset: offset,
149 150
      after: after,
      before: before,
151
      follow: Array(path).length == 1,
152 153
      skip_merges: skip_merges,
      all: all
154 155 156
    }

    commits = Gitlab::Git::Commit.where(options)
157
    commits = Commit.decorate(commits, @project) if commits.present?
158 159

    CommitCollection.new(project, commits, ref)
160 161
  end

162 163
  def commits_between(from, to)
    commits = Gitlab::Git::Commit.between(raw_repository, from, to)
164
    commits = Commit.decorate(commits, @project) if commits.present?
165 166 167
    commits
  end

168 169 170 171 172 173 174
  # Returns a list of commits that are not present in any reference
  def new_commits(newrev)
    refs = ::Gitlab::Git::RevList.new(raw, newrev: newrev).new_refs

    refs.map { |sha| commit(sha.strip) }
  end

J
Jacob Vosmaer 已提交
175
  # Gitaly migration: https://gitlab.com/gitlab-org/gitaly/issues/384
176
  def find_commits_by_message(query, ref = nil, path = nil, limit = 1000, offset = 0)
177 178 179 180
    unless exists? && has_visible_content? && query.present?
      return []
    end

181 182
    commits = raw_repository.find_commits_by_message(query, ref, path, limit, offset).map do |c|
      commit(c)
183
    end
184
    CommitCollection.new(project, commits, ref)
185 186
  end

187
  def find_branch(name, fresh_repo: true)
188
    raw_repository.find_branch(name, fresh_repo)
189 190 191
  end

  def find_tag(name)
192
    tags.find { |tag| tag.name == name }
193 194
  end

195
  def add_branch(user, branch_name, ref)
196
    branch = raw_repository.add_branch(branch_name, user: user, target: ref)
197

198
    after_create_branch
199 200 201 202

    branch
  rescue Gitlab::Git::Repository::InvalidRef
    false
203 204
  end

205
  def add_tag(user, tag_name, target, message = nil)
206
    raw_repository.add_tag(tag_name, user: user, target: target, message: message)
207 208
  rescue Gitlab::Git::Repository::InvalidRef
    false
209 210
  end

211
  def rm_branch(user, branch_name)
212
    before_remove_branch
213

214
    raw_repository.rm_branch(branch_name, user: user)
215

216
    after_remove_branch
217
    true
218 219
  end

L
Lin Jen-Shin 已提交
220
  def rm_tag(user, tag_name)
Y
Yorick Peterse 已提交
221
    before_remove_tag
222

223
    raw_repository.rm_tag(tag_name, user: user)
L
Lin Jen-Shin 已提交
224 225 226

    after_remove_tag
    true
227 228
  end

229 230 231 232
  def ref_names
    branch_names + tag_names
  end

233
  def branch_exists?(branch_name)
234 235
    return false unless raw_repository

236
    branch_names.include?(branch_name)
237 238
  end

239 240 241 242 243 244
  def tag_exists?(tag_name)
    return false unless raw_repository

    tag_names.include?(tag_name)
  end

245
  def ref_exists?(ref)
246 247
    !!raw_repository&.ref_exists?(ref)
  rescue ArgumentError
248
    false
249 250
  end

D
Douwe Maan 已提交
251 252 253 254
  # Makes sure a commit is kept around when Git garbage collection runs.
  # Git GC will delete commits from the repository that are no longer in any
  # branches or tags, but we want to keep some of these commits around, for
  # example if they have comments or CI builds.
255
  def keep_around(sha)
256
    return unless sha.present? && commit_by(oid: sha)
257 258 259

    return if kept_around?(sha)

260
    # This will still fail if the file is corrupted (e.g. 0 bytes)
261
    raw_repository.write_ref(keep_around_ref_name(sha), sha, shell: false)
262 263
  rescue Gitlab::Git::CommandError => ex
    Rails.logger.error "Unable to create keep-around reference for repository #{path}: #{ex}"
264 265 266
  end

  def kept_around?(sha)
267
    ref_exists?(keep_around_ref_name(sha))
268
  end
269

270
  def diverging_commit_counts(branch)
271
    root_ref_hash = raw_repository.commit(root_ref).id
J
Jeff Stubler 已提交
272
    cache.fetch(:"diverging_commit_counts_#{branch.name}") do
273 274
      # Rugged seems to throw a `ReferenceError` when given branch_names rather
      # than SHA-1 hashes
275 276 277 278 279 280
      number_commits_behind, number_commits_ahead =
        raw_repository.count_commits_between(
          root_ref_hash,
          branch.dereferenced_target.sha,
          left_right: true,
          max_count: MAX_DIVERGING_COUNT)
281

282 283 284
      { behind: number_commits_behind, ahead: number_commits_ahead }
    end
  end
285

286 287 288
  def expire_tags_cache
    expire_method_caches(%i(tag_names tag_count))
    @tags = nil
289
  end
290

291
  def expire_branches_cache
292
    expire_method_caches(%i(branch_names branch_count has_visible_content?))
293
    @local_branches = nil
294
    @branch_exists_memo = nil
295 296
  end

297 298
  def expire_statistics_caches
    expire_method_caches(%i(size commit_count))
299 300
  end

301 302
  def expire_all_method_caches
    expire_method_caches(CACHED_METHODS)
D
Douwe Maan 已提交
303 304
  end

305 306 307 308 309 310 311 312 313
  # Expires the caches of a specific set of methods
  def expire_method_caches(methods)
    methods.each do |key|
      cache.expire(key)

      ivar = cache_instance_variable_name(key)

      remove_instance_variable(ivar) if instance_variable_defined?(ivar)
    end
D
Douwe Maan 已提交
314 315
  end

316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
  def expire_avatar_cache
    expire_method_caches(%i(avatar))
  end

  # Refreshes the method caches of this repository.
  #
  # types - An Array of file types (e.g. `:readme`) used to refresh extra
  #         caches.
  def refresh_method_caches(types)
    to_refresh = []

    types.each do |type|
      methods = METHOD_CACHES_FOR_FILE_TYPES[type.to_sym]

      to_refresh.concat(Array(methods)) if methods
331
    end
332

333
    expire_method_caches(to_refresh)
334

335
    to_refresh.each { |method| send(method) } # rubocop:disable GitlabSecurity/PublicSend
336
  end
337

338 339 340 341 342 343 344
  def expire_branch_cache(branch_name = nil)
    # When we push to the root branch we have to flush the cache for all other
    # branches as their statistics are based on the commits relative to the
    # root branch.
    if !branch_name || branch_name == root_ref
      branches.each do |branch|
        cache.expire(:"diverging_commit_counts_#{branch.name}")
345
        cache.expire(:"commit_count_#{branch.name}")
346 347 348 349 350
      end
    # In case a commit is pushed to a non-root branch we only have to flush the
    # cache for said branch.
    else
      cache.expire(:"diverging_commit_counts_#{branch_name}")
351
      cache.expire(:"commit_count_#{branch_name}")
352
    end
D
Dmitriy Zaporozhets 已提交
353 354
  end

355
  def expire_root_ref_cache
356
    expire_method_caches(%i(root_ref))
357 358
  end

359 360
  # Expires the cache(s) used to determine if a repository is empty or not.
  def expire_emptiness_caches
361
    return unless empty?
362

363
    expire_method_caches(%i(empty? has_visible_content?))
Y
Yorick Peterse 已提交
364 365
  end

366 367 368 369
  def lookup_cache
    @lookup_cache ||= {}
  end

370
  def expire_exists_cache
371
    expire_method_caches(%i(exists?))
372 373
  end

374 375 376 377 378 379 380
  # expire cache that doesn't depend on repository data (when expiring)
  def expire_content_cache
    expire_tags_cache
    expire_branches_cache
    expire_root_ref_cache
    expire_emptiness_caches
    expire_exists_cache
381
    expire_statistics_caches
382 383 384 385 386
  end

  # Runs code after a repository has been created.
  def after_create
    expire_exists_cache
387 388
    expire_root_ref_cache
    expire_emptiness_caches
Y
Yorick Peterse 已提交
389 390

    repository_event(:create_repository)
391 392
  end

393 394
  # Runs code just before a repository is deleted.
  def before_delete
395
    expire_exists_cache
396 397
    expire_all_method_caches
    expire_branch_cache if exists?
398
    expire_content_cache
Y
Yorick Peterse 已提交
399 400

    repository_event(:remove_repository)
401 402 403 404 405 406 407
  end

  # Runs code just before the HEAD of a repository is changed.
  def before_change_head
    # Cached divergent commit counts are based on repository head
    expire_branch_cache
    expire_root_ref_cache
Y
Yorick Peterse 已提交
408 409

    repository_event(:change_default_branch)
410 411
  end

Y
Yorick Peterse 已提交
412 413
  # Runs code before pushing (= creating or removing) a tag.
  def before_push_tag
414 415
    expire_statistics_caches
    expire_emptiness_caches
416
    expire_tags_cache
Y
Yorick Peterse 已提交
417 418

    repository_event(:push_tag)
Y
Yorick Peterse 已提交
419 420 421 422 423
  end

  # Runs code before removing a tag.
  def before_remove_tag
    expire_tags_cache
424
    expire_statistics_caches
Y
Yorick Peterse 已提交
425 426

    repository_event(:remove_tag)
427 428
  end

L
Lin Jen-Shin 已提交
429 430 431 432 433
  # Runs code after removing a tag.
  def after_remove_tag
    expire_tags_cache
  end

434 435 436
  # Runs code after the HEAD of a repository is changed.
  def after_change_head
    expire_method_caches(METHOD_CACHES_FOR_FILE_TYPES.keys)
437 438
  end

439 440
  # Runs code after a repository has been forked/imported.
  def after_import
441
    expire_content_cache
442 443 444
  end

  # Runs code after a new commit has been pushed.
445 446 447
  def after_push_commit(branch_name)
    expire_statistics_caches
    expire_branch_cache(branch_name)
Y
Yorick Peterse 已提交
448 449

    repository_event(:push_commit, branch: branch_name)
450 451 452 453
  end

  # Runs code after a new branch has been created.
  def after_create_branch
454
    expire_branches_cache
Y
Yorick Peterse 已提交
455 456

    repository_event(:push_branch)
457 458
  end

459 460 461
  # Runs code before removing an existing branch.
  def before_remove_branch
    expire_branches_cache
Y
Yorick Peterse 已提交
462 463

    repository_event(:remove_branch)
464 465
  end

466 467
  # Runs code after an existing branch has been removed.
  def after_remove_branch
468
    expire_branches_cache
469 470
  end

471
  def method_missing(m, *args, &block)
472 473
    if m == :lookup && !block_given?
      lookup_cache[m] ||= {}
474
      lookup_cache[m][args.join(":")] ||= raw_repository.__send__(m, *args, &block) # rubocop:disable GitlabSecurity/PublicSend
475
    else
476
      raw_repository.__send__(m, *args, &block) # rubocop:disable GitlabSecurity/PublicSend
477
    end
478 479
  end

480 481
  def respond_to_missing?(method, include_private = false)
    raw_repository.respond_to?(method, include_private) || super
482
  end
D
Dmitriy Zaporozhets 已提交
483 484

  def blob_at(sha, path)
485
    Blob.decorate(raw_repository.blob_at(sha, path), project)
D
Douwe Maan 已提交
486 487
  rescue Gitlab::Git::Repository::NoRepository
    nil
D
Dmitriy Zaporozhets 已提交
488
  end
489

490 491 492 493 494
  # items is an Array like: [[oid, path], [oid1, path1]]
  def blobs_at(items)
    raw_repository.batch_blobs(items).map { |blob| Blob.decorate(blob, project) }
  end

495
  def root_ref
496 497
    # When the repo does not exist, or there is no root ref, we raise this error so no data is cached.
    raw_repository&.root_ref or raise Gitlab::Git::Repository::NoRepository # rubocop:disable Style/AndOr
498
  end
499
  cache_method :root_ref
500

501
  # Gitaly migration: https://gitlab.com/gitlab-org/gitaly/issues/314
502
  def exists?
503
    return false unless full_path
504

505
    raw_repository.exists?
506 507 508
  end
  cache_method :exists?

509 510 511 512 513
  def empty?
    return true unless exists?

    !has_visible_content?
  end
514 515 516 517 518 519 520 521 522 523 524 525 526
  cache_method :empty?

  # The size of this repository in megabytes.
  def size
    exists? ? raw_repository.size : 0.0
  end
  cache_method :size, fallback: 0.0

  def commit_count
    root_ref ? raw_repository.commit_count(root_ref) : 0
  end
  cache_method :commit_count, fallback: 0

527
  def commit_count_for_ref(ref)
528
    return 0 unless exists?
529

530
    cache.fetch(:"commit_count_#{ref}") { raw_repository.commit_count(ref) }
531 532
  end

533
  delegate :branch_names, to: :raw_repository
534 535
  cache_method :branch_names, fallback: []

D
Douwe Maan 已提交
536
  delegate :tag_names, to: :raw_repository
537 538
  cache_method :tag_names, fallback: []

539
  delegate :branch_count, :tag_count, :has_visible_content?, to: :raw_repository
540 541
  cache_method :branch_count, fallback: 0
  cache_method :tag_count, fallback: 0
542
  cache_method :has_visible_content?, fallback: false
543 544

  def avatar
545 546 547 548 549
    # n+1: https://gitlab.com/gitlab-org/gitlab-ce/issues/38327
    Gitlab::GitalyClient.allow_n_plus_1_calls do
      if tree = file_on_head(:avatar)
        tree.path
      end
550 551
    end
  end
552
  cache_method :avatar
553

S
Sean McGivern 已提交
554 555 556 557 558 559 560 561 562 563
  def issue_template_names
    Gitlab::Template::IssueTemplate.dropdown_names(project)
  end
  cache_method :issue_template_names, fallback: []

  def merge_request_template_names
    Gitlab::Template::MergeRequestTemplate.dropdown_names(project)
  end
  cache_method :merge_request_template_names, fallback: []

564
  def readme
565 566
    if readme = tree(:head)&.readme
      ReadmeBlob.new(readme, self)
567
    end
568 569
  end

570
  def rendered_readme
T
Toon Claes 已提交
571
    MarkupHelper.markup_unsafe(readme.name, readme.data, project: project) if readme
572 573
  end
  cache_method :rendered_readme
574

575
  def contribution_guide
576
    file_on_head(:contributing)
577
  end
578
  cache_method :contribution_guide
579 580

  def changelog
581
    file_on_head(:changelog)
582
  end
583
  cache_method :changelog
584

585
  def license_blob
586
    file_on_head(:license)
587
  end
588
  cache_method :license_blob
Z
Zeger-Jan van de Weg 已提交
589

590
  def license_key
591
    return unless exists?
592

593
    raw_repository.license_short_name
594
  end
595
  cache_method :license_key
596

D
Douwe Maan 已提交
597 598
  def license
    return unless license_key
599

600
    Licensee::License.new(license_key)
601
  end
602
  cache_method :license, memoize_only: true
603 604

  def gitignore
605
    file_on_head(:gitignore)
606
  end
607
  cache_method :gitignore
608 609

  def koding_yml
610
    file_on_head(:koding)
611
  end
612
  cache_method :koding_yml
613

614
  def gitlab_ci_yml
615
    file_on_head(:gitlab_ci)
616
  end
617
  cache_method :gitlab_ci_yml
618

619
  def head_commit
620 621 622 623
    @head_commit ||= commit(self.root_ref)
  end

  def head_tree
624 625 626
    if head_commit
      @head_tree ||= Tree.new(self, head_commit.sha, nil)
    end
627 628
  end

629
  def tree(sha = :head, path = nil, recursive: false)
630
    if sha == :head
631 632
      return unless head_commit

633 634 635 636 637
      if path.nil?
        return head_tree
      else
        sha = head_commit.sha
      end
638 639
    end

640
    Tree.new(self, sha, path, recursive: recursive)
641
  end
D
Dmitriy Zaporozhets 已提交
642 643

  def blob_at_branch(branch_name, path)
D
Dmitriy Zaporozhets 已提交
644
    last_commit = commit(branch_name)
D
Dmitriy Zaporozhets 已提交
645

D
Dmitriy Zaporozhets 已提交
646 647 648 649 650
    if last_commit
      blob_at(last_commit.sha, path)
    else
      nil
    end
D
Dmitriy Zaporozhets 已提交
651
  end
D
Dmitriy Zaporozhets 已提交
652

653
  def last_commit_for_path(sha, path)
654
    commit_by(oid: last_commit_id_for_path(sha, path))
655
  end
656

H
Hiroyuki Sato 已提交
657 658
  def last_commit_id_for_path(sha, path)
    key = path.blank? ? "last_commit_id_for_path:#{sha}" : "last_commit_id_for_path:#{sha}:#{Digest::SHA1.hexdigest(path)}"
H
Hiroyuki Sato 已提交
659

H
Hiroyuki Sato 已提交
660
    cache.fetch(key) do
661
      raw_repository.last_commit_id_for_path(sha, path)
H
Hiroyuki Sato 已提交
662 663 664
    end
  end

665
  def next_branch(name, opts = {})
P
P.S.V.R 已提交
666 667
    branch_ids = self.branch_names.map do |n|
      next 1 if n == name
668

P
P.S.V.R 已提交
669
      result = n.match(/\A#{name}-([0-9]+)\z/)
670 671 672
      result[1].to_i if result
    end.compact

P
P.S.V.R 已提交
673
    highest_branch_id = branch_ids.max || 0
674

P
P.S.V.R 已提交
675 676 677
    return name if opts[:mild] && 0 == highest_branch_id

    "#{name}-#{highest_branch_id + 1}"
678 679
  end

680
  def branches_sorted_by(value)
681
    raw_repository.local_branches(sort_by: value)
682
  end
683

684 685
  def tags_sorted_by(value)
    case value
H
haseeb 已提交
686 687 688
    when 'name_asc'
      VersionSorter.sort(tags) { |tag| tag.name }
    when 'name_desc'
689
      VersionSorter.rsort(tags) { |tag| tag.name }
690 691 692 693 694 695 696 697 698
    when 'updated_desc'
      tags_sorted_by_committed_date.reverse
    when 'updated_asc'
      tags_sorted_by_committed_date
    else
      tags
    end
  end

699 700 701 702 703
  # Params:
  #
  # order_by: name|email|commits
  # sort: asc|desc default: 'asc'
  def contributors(order_by: nil, sort: 'asc')
704
    commits = self.commits(nil, limit: 2000, offset: 0, skip_merges: true)
705

706
    commits = commits.group_by(&:author_email).map do |email, commits|
707 708
      contributor = Gitlab::Contributor.new
      contributor.email = email
709

D
Dmitriy Zaporozhets 已提交
710
      commits.each do |commit|
711
        if contributor.name.blank?
D
Dmitriy Zaporozhets 已提交
712
          contributor.name = commit.author_name
713 714
        end

715
        contributor.commits += 1
716 717
      end

718 719
      contributor
    end
720
    Commit.order_by(collection: commits, order_by: order_by, sort: sort)
721
  end
D
Dmitriy Zaporozhets 已提交
722

723
  def branch_names_contains(sha)
724
    raw_repository.branch_names_contains_sha(sha)
725
  end
H
Hannes Rosenögger 已提交
726

727
  def tag_names_contains(sha)
728
    raw_repository.tag_names_contains_sha(sha)
H
Hannes Rosenögger 已提交
729
  end
730

731
  def local_branches
732
    @local_branches ||= raw_repository.local_branches
733 734
  end

735 736
  alias_method :branches, :local_branches

737 738 739 740
  def tags
    @tags ||= raw_repository.tags
  end

D
Douwe Maan 已提交
741 742
  def create_dir(user, path, **options)
    options[:actions] = [{ action: :create_dir, file_path: path }]
743

744
    multi_action(user, **options)
S
Stan Hu 已提交
745 746
  end

D
Douwe Maan 已提交
747 748
  def create_file(user, path, content, **options)
    options[:actions] = [{ action: :create, file_path: path, content: content }]
749

750
    multi_action(user, **options)
S
Stan Hu 已提交
751
  end
752

D
Douwe Maan 已提交
753 754 755
  def update_file(user, path, content, **options)
    previous_path = options.delete(:previous_path)
    action = previous_path && previous_path != path ? :move : :update
756

D
Douwe Maan 已提交
757
    options[:actions] = [{ action: action, file_path: path, previous_path: previous_path, content: content }]
758

759
    multi_action(user, **options)
760 761
  end

D
Douwe Maan 已提交
762 763
  def delete_file(user, path, **options)
    options[:actions] = [{ action: :delete, file_path: path }]
764

765
    multi_action(user, **options)
766 767
  end

768 769
  def with_cache_hooks
    result = yield
770

771
    return unless result
772

773 774
    after_create if result.repo_created?
    after_create_branch if result.branch_created?
775

776 777 778
    result.newrev
  end

779 780
  def multi_action(user, **options)
    start_project = options.delete(:start_project)
M
Marc Siegfriedt 已提交
781

782 783
    if start_project
      options[:start_repository] = start_project.repository.raw_repository
M
Marc Siegfriedt 已提交
784 785
    end

786
    with_cache_hooks { raw.multi_action(user, **options) }
787 788
  end

789 790 791 792 793 794
  def merge(user, source_sha, merge_request, message)
    with_cache_hooks do
      raw_repository.merge(user, source_sha, merge_request.target_branch, message) do |commit_id|
        merge_request.update(in_progress_merge_commit_sha: commit_id)
        nil # Return value does not matter.
      end
795
    end
796 797
  end

798
  def ff_merge(user, source, target_branch, merge_request: nil)
799 800
    their_commit_id = commit(source)&.id
    raise 'Invalid merge source' if their_commit_id.nil?
801

802
    merge_request&.update(in_progress_merge_commit_sha: their_commit_id)
803

804
    with_cache_hooks { raw.ff_merge(user, their_commit_id, target_branch) }
805 806
  end

807
  def revert(
808
    user, commit, branch_name, message,
809
    start_branch_name: nil, start_project: project)
810

811 812 813 814 815 816 817 818 819
    with_cache_hooks do
      raw_repository.revert(
        user: user,
        commit: commit.raw,
        branch_name: branch_name,
        message: message,
        start_branch_name: start_branch_name,
        start_repository: start_project.repository.raw_repository
      )
820
    end
821 822
  end

823
  def cherry_pick(
824
    user, commit, branch_name, message,
825
    start_branch_name: nil, start_project: project)
P
P.S.V.R 已提交
826

827 828 829 830 831 832 833 834 835
    with_cache_hooks do
      raw_repository.cherry_pick(
        user: user,
        commit: commit.raw,
        branch_name: branch_name,
        message: message,
        start_branch_name: start_branch_name,
        start_repository: start_project.repository.raw_repository
      )
P
P.S.V.R 已提交
836 837 838
    end
  end

839
  def merged_to_root_ref?(branch_or_name)
840 841 842
    branch = Gitlab::Git::Branch.find(self, branch_or_name)

    if branch
843 844
      same_head = branch.target == root_ref_sha
      merged = ancestor?(branch.target, root_ref_sha)
845
      !same_head && merged
F
Florent (HP) 已提交
846 847 848 849 850
    else
      nil
    end
  end

851 852 853 854
  def root_ref_sha
    @root_ref_sha ||= commit(root_ref).sha
  end

855
  delegate :merged_branch_names, :can_be_merged?, to: :raw_repository
856

S
Stan Hu 已提交
857
  def merge_base(first_commit_id, second_commit_id)
858 859
    first_commit_id = commit(first_commit_id).try(:id) || first_commit_id
    second_commit_id = commit(second_commit_id).try(:id) || second_commit_id
860
    raw_repository.merge_base(first_commit_id, second_commit_id)
S
Stan Hu 已提交
861 862
  end

863
  def ancestor?(ancestor_id, descendant_id)
864
    return false if ancestor_id.nil? || descendant_id.nil?
865

866
    raw_repository.ancestor?(ancestor_id, descendant_id)
867 868
  end

D
Douwe Maan 已提交
869
  def fetch_as_mirror(url, forced: false, refmap: :all_refs, remote_name: nil)
870 871 872 873 874
    unless remote_name
      remote_name = "tmp-#{SecureRandom.hex}"
      tmp_remote_name = true
    end

875
    add_remote(remote_name, url, mirror_refmap: refmap)
876 877 878 879 880
    fetch_remote(remote_name, forced: forced)
  ensure
    remove_remote(remote_name) if tmp_remote_name
  end

881 882
  def fetch_remote(remote, forced: false, ssh_auth: nil, no_tags: false)
    gitlab_shell.fetch_remote(raw_repository, remote, ssh_auth: ssh_auth, forced: forced, no_tags: no_tags)
883 884
  end

885 886
  def fetch_source_branch!(source_repository, source_branch, local_ref)
    raw_repository.fetch_source_branch!(source_repository.raw_repository, source_branch, local_ref)
887
  end
888

889 890
  def compare_source_branch(target_branch_name, source_repository, source_branch_name, straight:)
    raw_repository.compare_source_branch(target_branch_name, source_repository.raw_repository, source_branch_name, straight: straight)
891
  end
892

893
  def create_ref(ref, ref_path)
894
    raw_repository.write_ref(ref_path, ref)
895 896
  end

897 898 899 900 901
  def ls_files(ref)
    actual_ref = ref || root_ref
    raw_repository.ls_files(actual_ref)
  end

902 903 904 905 906 907 908 909 910 911 912 913
  def search_files_by_content(query, ref)
    return [] if empty? || query.blank?

    raw_repository.search_files_by_content(query, ref)
  end

  def search_files_by_name(query, ref)
    return [] if empty?

    raw_repository.search_files_by_name(query, ref)
  end

914 915 916 917 918 919 920 921 922 923
  def copy_gitattributes(ref)
    actual_ref = ref || root_ref
    begin
      raw_repository.copy_gitattributes(actual_ref)
      true
    rescue Gitlab::Git::Repository::InvalidRef
      false
    end
  end

924 925 926 927 928 929 930 931 932 933 934
  # Caches the supplied block both in a cache and in an instance variable.
  #
  # The cache key and instance variable are named the same way as the value of
  # the `key` argument.
  #
  # This method will return `nil` if the corresponding instance variable is also
  # set to `nil`. This ensures we don't keep yielding the block when it returns
  # `nil`.
  #
  # key - The name of the key to cache the data in.
  # fallback - A value to fall back to in the event of a Git error.
935
  def cache_method_output(key, fallback: nil, memoize_only: false, &block)
936
    ivar = cache_instance_variable_name(key)
937

938 939 940
    if instance_variable_defined?(ivar)
      instance_variable_get(ivar)
    else
941 942 943 944
      # If the repository doesn't exist and a fallback was specified we return
      # that value inmediately. This saves us Rugged/gRPC invocations.
      return fallback unless fallback.nil? || exists?

945
      begin
946 947 948 949 950 951
        value =
          if memoize_only
            yield
          else
            cache.fetch(key, &block)
          end
952

953
        instance_variable_set(ivar, value)
954
      rescue Gitlab::Git::Repository::NoRepository
955 956 957
        # Even if the above `#exists?` check passes these errors might still
        # occur (for example because of a non-existing HEAD). We want to
        # gracefully handle this and not cache anything
958
        fallback
959 960 961
      end
    end
  end
962

963 964 965
  def cache_instance_variable_name(key)
    :"@#{key.to_s.tr('?!', '')}"
  end
966

967 968
  def file_on_head(type)
    if head = tree(:head)
D
Douwe Maan 已提交
969 970
      head.blobs.find do |blob|
        Gitlab::FileDetector.type_of(blob.path) == type
971 972 973 974
      end
    end
  end

D
Douwe Maan 已提交
975 976 977 978
  def route_map_for(sha)
    blob_data_at(sha, '.gitlab/route-map.yml')
  end

979 980
  def gitlab_ci_yml_for(sha, path = '.gitlab-ci.yml')
    blob_data_at(sha, path)
D
Douwe Maan 已提交
981 982
  end

983 984 985 986
  def fetch_ref(source_repository, source_ref:, target_ref:)
    raw_repository.fetch_ref(source_repository.raw_repository, source_ref: source_ref, target_ref: target_ref)
  end

987 988 989 990
  def repository_storage_path
    @project.repository_storage_path
  end

991 992 993 994 995 996 997
  def rebase(user, merge_request)
    raw.rebase(user, merge_request.id, branch: merge_request.source_branch,
                                       branch_sha: merge_request.source_branch_sha,
                                       remote_repository: merge_request.target_project.repository.raw,
                                       remote_branch: merge_request.target_branch)
  end

998 999
  private

1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
  # TODO Generice finder, later split this on finders by Ref or Oid
  # gitlab-org/gitlab-ce#39239
  def find_commit(oid_or_ref)
    commit = if oid_or_ref.is_a?(Gitlab::Git::Commit)
               oid_or_ref
             else
               Gitlab::Git::Commit.find(raw_repository, oid_or_ref)
             end

    ::Commit.new(commit, @project) if commit
  end

D
Douwe Maan 已提交
1012 1013
  def blob_data_at(sha, path)
    blob = blob_at(sha, path)
1014
    return unless blob
1015

1016
    blob.load_all_data!
1017
    blob.data
1018
  end
1019

1020
  def cache
1021 1022
    # TODO: should we use UUIDs here? We could move repositories without clearing this cache
    @cache ||= RepositoryCache.new(full_path, @project.id)
1023
  end
1024 1025

  def tags_sorted_by_committed_date
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037
    tags.sort_by do |tag|
      # Annotated tags can point to any object (e.g. a blob), but generally
      # tags point to a commit. If we don't have a commit, then just default
      # to putting the tag at the end of the list.
      target = tag.dereferenced_target

      if target
        target.committed_date
      else
        Time.now
      end
    end
1038
  end
D
Douwe Maan 已提交
1039 1040

  def keep_around_ref_name(sha)
1041
    "refs/#{REF_KEEP_AROUND}/#{sha}"
D
Douwe Maan 已提交
1042
  end
Y
Yorick Peterse 已提交
1043 1044

  def repository_event(event, tags = {})
1045
    Gitlab::Metrics.add_event(event, { path: full_path }.merge(tags))
Y
Yorick Peterse 已提交
1046
  end
1047

1048
  def initialize_raw_repository
1049
    Gitlab::Git::Repository.new(project.repository_storage, disk_path + '.git', Gitlab::GlRepository.gl_repository(project, is_wiki))
1050
  end
1051
end