2011-10-09 00:36:38 +03:00
|
|
|
require "base64"
|
|
|
|
|
|
|
|
class CommitsController < ApplicationController
|
|
|
|
before_filter :project
|
2011-11-01 11:22:16 +02:00
|
|
|
layout "project"
|
2011-10-09 00:36:38 +03:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :add_project_abilities
|
|
|
|
before_filter :authorize_read_project!
|
2012-02-22 00:31:18 +02:00
|
|
|
before_filter :authorize_code_access!
|
2011-10-15 18:51:58 +03:00
|
|
|
before_filter :require_non_empty_project
|
2012-08-10 18:07:50 -04:00
|
|
|
before_filter :load_refs, only: :index # load @branch, @tag & @ref
|
2012-02-06 22:32:04 +02:00
|
|
|
before_filter :render_full_content
|
2011-10-09 00:36:38 +03:00
|
|
|
|
2011-11-11 01:28:26 +02:00
|
|
|
def index
|
2011-10-09 00:36:38 +03:00
|
|
|
@repo = project.repo
|
2012-02-12 23:52:27 +02:00
|
|
|
@limit, @offset = (params[:limit] || 40), (params[:offset] || 0)
|
2012-05-21 23:17:41 +03:00
|
|
|
|
2011-11-27 17:35:49 +02:00
|
|
|
@commits = @project.commits(@ref, params[:path], @limit, @offset)
|
2012-07-22 13:08:24 +02:00
|
|
|
@commits = CommitDecorator.decorate(@commits)
|
2011-10-09 00:36:38 +03:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html # index.html.erb
|
|
|
|
format.js
|
2012-08-10 18:07:50 -04:00
|
|
|
format.atom { render layout: false }
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2012-07-20 08:39:34 +03:00
|
|
|
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-06 01:00:15 +03:00
|
|
|
end
|
2012-07-20 08:39:34 +03:00
|
|
|
|
2012-08-11 15:59:36 +03:00
|
|
|
if result[:status] == :huge_commit
|
|
|
|
render "huge_commit" and return
|
|
|
|
end
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
2012-02-06 22:32:04 +02:00
|
|
|
|
|
|
|
def compare
|
2012-07-20 08:39:34 +03:00
|
|
|
result = Commit.compare(project, params[:from], params[:to])
|
2012-02-06 22:32:04 +02:00
|
|
|
|
2012-07-20 08:39:34 +03:00
|
|
|
@commits = result[:commits]
|
|
|
|
@commit = result[:commit]
|
|
|
|
@diffs = result[:diffs]
|
2012-02-06 22:32:04 +02:00
|
|
|
@line_notes = []
|
2012-07-25 21:45:53 +03:00
|
|
|
|
|
|
|
@commits = CommitDecorator.decorate(@commits)
|
2012-02-06 22:32:04 +02:00
|
|
|
end
|
2012-06-28 12:51:50 +03:00
|
|
|
|
|
|
|
def patch
|
|
|
|
@commit = project.commit(params[:id])
|
|
|
|
|
|
|
|
send_data(
|
|
|
|
@commit.to_patch,
|
2012-08-10 18:07:50 -04:00
|
|
|
type: "text/plain",
|
|
|
|
disposition: 'attachment',
|
|
|
|
filename: (@commit.id.to_s + ".patch")
|
2012-06-28 12:51:50 +03:00
|
|
|
)
|
|
|
|
end
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|