gitlab-org--gitlab-foss/app/controllers/commits_controller.rb

70 lines
1.6 KiB
Ruby
Raw Normal View History

2011-10-08 17:36:38 -04:00
require "base64"
class CommitsController < ApplicationController
before_filter :project
2011-11-01 05:22:16 -04:00
layout "project"
2011-10-08 17:36:38 -04:00
# Authorize
before_filter :add_project_abilities
before_filter :authorize_read_project!
before_filter :authorize_code_access!
2011-10-15 11:51:58 -04:00
before_filter :require_non_empty_project
before_filter :load_refs, :only => :index # load @branch, @tag & @ref
2012-02-06 15:32:04 -05:00
before_filter :render_full_content
2011-10-08 17:36:38 -04:00
def index
2011-10-08 17:36:38 -04:00
@repo = project.repo
2012-02-12 16:52:27 -05:00
@limit, @offset = (params[:limit] || 40), (params[:offset] || 0)
2011-11-27 10:35:49 -05:00
@commits = @project.commits(@ref, params[:path], @limit, @offset)
2012-07-22 07:08:24 -04:00
@commits = CommitDecorator.decorate(@commits)
2011-10-08 17:36:38 -04:00
respond_to do |format|
format.html # index.html.erb
format.js
2011-11-11 03:11:27 -05:00
format.atom { render :layout => false }
2011-10-08 17:36:38 -04:00
end
end
def show
result = CommitLoad.new(project, current_user, params).execute
@commit = result[:commit]
if @commit
@suppress_diff = result[:suppress_diff]
@note = result[:note]
@line_notes = result[:line_notes]
@notes_count = result[:notes_count]
@comments_allowed = true
else
return git_not_found!
2012-04-05 18:00:15 -04:00
end
2012-06-20 13:08:18 -04:00
rescue Grit::Git::GitTimeout
render "huge_commit"
2011-10-08 17:36:38 -04:00
end
2012-02-06 15:32:04 -05:00
def compare
result = Commit.compare(project, params[:from], params[:to])
2012-02-06 15:32:04 -05:00
@commits = result[:commits]
@commit = result[:commit]
@diffs = result[:diffs]
2012-02-06 15:32:04 -05:00
@line_notes = []
@commits = CommitDecorator.decorate(@commits)
2012-02-06 15:32:04 -05:00
end
def patch
@commit = project.commit(params[:id])
send_data(
@commit.to_patch,
:type => "text/plain",
:disposition => 'attachment',
:filename => (@commit.id.to_s + ".patch")
)
end
2011-10-08 17:36:38 -04:00
end