summaryrefslogtreecommitdiff
path: root/app/controllers/projects/refs_controller.rb
blob: 82f7ccb6afa4c56955d0d4d121d0cc04e946615f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
class Projects::RefsController < Projects::ApplicationController
  include ExtractsPath
  include TreeHelper

  before_action :require_non_empty_project
  before_action :validate_ref_id
  before_action :assign_ref_vars
  before_action :authorize_download_code!

  def switch
    respond_to do |format|
      format.html do
        new_path =
          case params[:destination]
          when "tree"
            project_tree_path(@project, @id)
          when "blob"
            project_blob_path(@project, @id)
          when "graph"
            project_network_path(@project, @id, @options)
          when "graphs"
            project_graph_path(@project, @id)
          when "find_file"
            project_find_file_path(@project, @id)
          when "graphs_commits"
            commits_project_graph_path(@project, @id)
          when "badges"
            project_pipelines_settings_path(@project, ref: @id)
          else
            project_commits_path(@project, @id)
          end

        redirect_to new_path
      end
    end
  end

  def logs_tree
    @offset = if params[:offset].present?
                params[:offset].to_i
              else
                0
              end

    @limit = 25

    @path = params[:path]

    contents = []
    contents.push(*tree.trees)
    contents.push(*tree.blobs)
    contents.push(*tree.submodules)

    # n+1: https://gitlab.com/gitlab-org/gitlab-ce/issues/37433
    @logs = Gitlab::GitalyClient.allow_n_plus_1_calls do
      contents[@offset, @limit].to_a.map do |content|
        file = @path ? File.join(@path, content.name) : content.name
        last_commit = @repo.last_commit_for_path(@commit.id, file)
        {
          file_name: content.name,
          commit: last_commit,
          type: content.type,
          commit_path: (project_commit_path(@project, last_commit) unless last_commit.nil?)
        }
      end
    end

    offset = (@offset + @limit)
    if contents.size > offset
      @more_log_url = logs_file_project_ref_path(@project, @ref, @path || '', offset: offset)
    end

    respond_to do |format|
      format.html { render_404 }
      format.json do
        response.headers["More-Logs-Url"] = @more_log_url

        render json: @logs
      end
      format.js
    end
  end

  private

  def validate_ref_id
    return not_found! if params[:id].present? && params[:id] !~ Gitlab::PathRegex.git_reference_regex
  end
end