gitlabhq/app/controllers/commits_controller.rb

66 lines
1.6 KiB
Ruby
Raw Normal View History

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!
before_filter :authorize_code_access!
2011-10-15 17:51:58 +02:00
before_filter :require_non_empty_project
before_filter :load_refs, only: :index # load @branch, @tag & @ref
2011-10-08 23:36:38 +02: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)
2012-07-22 13:08:24 +02:00
@commits = CommitDecorator.decorate(@commits)
2011-10-08 23:36:38 +02:00
respond_to do |format|
format.html # index.html.erb
format.js
format.atom { render layout: false }
2011-10-08 23:36:38 +02: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!
# end
# if result[:status] == :huge_commit
# render "huge_commit" and return
# end
# end
2012-02-06 21:32:04 +01:00
def patch
@commit = project.commit(params[:id])
send_data(
@commit.to_patch,
type: "text/plain",
disposition: 'attachment',
2012-09-14 15:57:25 +02:00
filename: "#{@commit.id}.patch"
)
end
protected
def load_refs
@ref ||= params[:ref].presence || params[:branch].presence || params[:tag].presence
@ref ||= @ref || @project.try(:default_branch) || 'master'
end
2011-10-08 23:36:38 +02:00
end