2011-10-08 23:36:38 +02:00
|
|
|
require "base64"
|
|
|
|
|
|
|
|
class CommitsController < ApplicationController
|
|
|
|
before_filter :project
|
2011-11-01 10:22:16 +01:00
|
|
|
layout "project"
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :add_project_abilities
|
|
|
|
before_filter :authorize_read_project!
|
2012-02-21 23:31:18 +01:00
|
|
|
before_filter :authorize_code_access!
|
2011-10-15 17:51:58 +02:00
|
|
|
before_filter :require_non_empty_project
|
2011-11-11 00:28:26 +01:00
|
|
|
before_filter :load_refs, :only => :index # load @branch, @tag & @ref
|
2012-02-06 21:32:04 +01:00
|
|
|
before_filter :render_full_content
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2011-11-11 00:28:26 +01:00
|
|
|
def index
|
2011-10-08 23:36:38 +02:00
|
|
|
@repo = project.repo
|
2012-02-12 22:52:27 +01:00
|
|
|
@limit, @offset = (params[:limit] || 40), (params[:offset] || 0)
|
2011-11-27 16:35:49 +01:00
|
|
|
@commits = @project.commits(@ref, params[:path], @limit, @offset)
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html # index.html.erb
|
|
|
|
format.js
|
2011-11-11 09:11:27 +01:00
|
|
|
format.atom { render :layout => false }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2011-11-27 16:35:49 +01:00
|
|
|
@commit = project.commit(params[:id])
|
2012-02-22 06:14:54 +01:00
|
|
|
|
|
|
|
git_not_found! and return unless @commit
|
|
|
|
|
2012-04-16 00:10:09 +02:00
|
|
|
@commit = CommitDecorator.decorate(@commit)
|
|
|
|
|
2011-11-11 00:28:26 +01:00
|
|
|
@note = @project.build_commit_note(@commit)
|
2012-02-14 22:48:42 +01:00
|
|
|
@comments_allowed = true
|
2012-01-10 21:08:46 +01:00
|
|
|
@line_notes = project.commit_line_notes(@commit)
|
2012-03-26 21:41:56 +02:00
|
|
|
|
|
|
|
@notes_count = @line_notes.count + project.commit_notes(@commit).count
|
2012-04-06 00:00:15 +02:00
|
|
|
|
|
|
|
if @commit.diffs.size > 200 && !params[:force_show_diff]
|
|
|
|
@suppress_diff = true
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
2012-02-06 21:32:04 +01:00
|
|
|
|
|
|
|
def compare
|
2012-04-20 18:11:49 +02:00
|
|
|
first = project.commit(params[:to].try(:strip))
|
|
|
|
last = project.commit(params[:from].try(:strip))
|
2012-02-06 21:32:04 +01:00
|
|
|
|
|
|
|
@diffs = []
|
|
|
|
@commits = []
|
|
|
|
@line_notes = []
|
|
|
|
|
|
|
|
if first && last
|
|
|
|
commits = [first, last].sort_by(&:created_at)
|
|
|
|
younger = commits.first
|
|
|
|
older = commits.last
|
|
|
|
|
|
|
|
|
|
|
|
@commits = project.repo.commits_between(younger.id, older.id).map {|c| Commit.new(c)}
|
|
|
|
@diffs = project.repo.diff(younger.id, older.id) rescue []
|
2012-02-07 18:21:16 +01:00
|
|
|
@commit = Commit.new(older)
|
2012-02-06 21:32:04 +01:00
|
|
|
end
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|