gitlab-org--gitlab-foss/app/controllers/projects/network_controller.rb

34 lines
965 B
Ruby
Raw Normal View History

class Projects::NetworkController < Projects::ApplicationController
include ExtractsPath
2013-02-28 05:56:27 +00:00
include ApplicationHelper
before_action :require_non_empty_project
before_action :assign_ref_vars
before_action :authorize_download_code!
2016-11-07 20:12:17 +00:00
before_action :assign_commit
def show
@url = project_network_path(@project, @ref, @options.merge(format: :json))
@commit_url = project_commit_path(@project, 'ae45ca32').gsub("ae45ca32", "%s")
respond_to do |format|
format.html do
2016-11-07 11:44:15 +00:00
if @options[:extended_sha1] && !@commit
flash.now[:alert] = "Git revision '#{@options[:extended_sha1]}' does not exist."
2016-10-28 12:48:40 +00:00
end
end
format.json do
2013-04-12 08:49:11 +00:00
@graph = Network::Graph.new(project, @ref, @commit, @options[:filter_ref])
end
end
end
2016-11-07 11:44:15 +00:00
2016-11-07 20:12:17 +00:00
def assign_commit
2016-11-07 11:44:15 +00:00
return if params[:extended_sha1].blank?
@options[:extended_sha1] = params[:extended_sha1]
@commit = @repo.commit(@options[:extended_sha1])
end
end