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

59 lines
1.4 KiB
Ruby
Raw Normal View History

2011-10-08 21:36:38 +00:00
require "base64"
class CommitsController < ApplicationController
before_filter :project
2011-11-01 09:22:16 +00:00
layout "project"
2011-10-08 21:36:38 +00:00
# Authorize
before_filter :add_project_abilities
before_filter :authorize_read_project!
2011-10-15 15:51:58 +00:00
before_filter :require_non_empty_project
before_filter :load_refs, :only => :index # load @branch, @tag & @ref
2012-02-06 20:32:04 +00:00
before_filter :render_full_content
2011-10-08 21:36:38 +00:00
def index
2011-10-08 21:36:38 +00:00
@repo = project.repo
@limit, @offset = (params[:limit] || 20), (params[:offset] || 0)
2011-11-27 15:35:49 +00:00
@commits = @project.commits(@ref, params[:path], @limit, @offset)
2011-10-08 21:36:38 +00:00
respond_to do |format|
format.html # index.html.erb
format.js
2011-11-11 08:11:27 +00:00
format.atom { render :layout => false }
2011-10-08 21:36:38 +00:00
end
end
def show
2011-11-27 15:35:49 +00:00
@commit = project.commit(params[:id])
@notes = project.commit_notes(@commit).fresh.limit(20)
@note = @project.build_commit_note(@commit)
2011-10-08 21:36:38 +00:00
2012-01-10 20:08:46 +00:00
@line_notes = project.commit_line_notes(@commit)
2011-11-11 08:11:27 +00:00
respond_to do |format|
2011-11-04 15:46:51 +00:00
format.html
2011-11-05 11:59:43 +00:00
format.js { respond_with_notes }
2011-10-08 21:36:38 +00:00
end
end
2012-02-06 20:32:04 +00:00
def compare
first = project.commit(params[:to])
last = project.commit(params[:from])
@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 17:21:16 +00:00
@commit = Commit.new(older)
2012-02-06 20:32:04 +00:00
end
end
2011-10-08 21:36:38 +00:00
end