gitlabhq/app/controllers/hooks_controller.rb

46 lines
1 KiB
Ruby
Raw Normal View History

2012-01-03 23:42:14 +01:00
class HooksController < ApplicationController
before_filter :authenticate_user!
before_filter :project
layout "project"
# Authorize
before_filter :add_project_abilities
before_filter :authorize_read_project!
before_filter :authorize_admin_project!, :only => [:new, :create, :destroy]
respond_to :html
def index
@hooks = @project.hooks.all
@hook = ProjectHook.new
2012-01-03 23:42:14 +01:00
end
def create
@hook = @project.hooks.new(params[:hook])
2012-01-03 23:42:14 +01:00
@hook.save
if @hook.valid?
2012-04-26 19:43:12 +02:00
redirect_to project_hooks_path(@project)
2012-01-03 23:42:14 +01:00
else
@hooks = @project.hooks.all
2012-04-26 19:43:12 +02:00
render :index
2012-01-03 23:42:14 +01:00
end
end
def test
@hook = @project.hooks.find(params[:id])
commits = @project.commits(@project.default_branch, nil, 3)
2012-04-26 19:43:12 +02:00
data = @project.post_receive_data(commits.last.id, commits.first.id, "refs/heads/#{@project.default_branch}", current_user)
@hook.execute(data)
redirect_to :back
end
2012-01-03 23:42:14 +01:00
def destroy
@hook = @project.hooks.find(params[:id])
2012-01-03 23:42:14 +01:00
@hook.destroy
redirect_to project_hooks_path(@project)
end
end