summaryrefslogtreecommitdiff
path: root/app/controllers/projects/network_controller.rb
blob: 3dbc7a492b522e52e0d7a059325bfc56363e6404 (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
class Projects::NetworkController < Projects::ApplicationController
  include ExtractsPath
  include ApplicationHelper

  before_action :require_non_empty_project
  before_action :assign_ref_vars
  before_action :authorize_download_code!

  def show
    @url = namespace_project_network_path(@project.namespace, @project, @ref, @options.merge(format: :json))
    @commit_url = namespace_project_commit_path(@project.namespace, @project, 'ae45ca32').gsub("ae45ca32", "%s")

    respond_to do |format|
      format.html do
        if params[:extended_sha1].present? && !@commit
          flash.now[:alert] = "Git revision '#{params[:extended_sha1]}' does not exist."
        end
      end

      format.json do
        @graph = Network::Graph.new(project, @ref, @commit, @options[:filter_ref])
      end
    end
  end
end