summaryrefslogtreecommitdiff
path: root/app/controllers/hooks_controller.rb
blob: 7c5f7631f4e02bcf86d59b463c40ad085478023f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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.web_hooks
  end

  def new
    @hook = @project.web_hooks.new
  end

  def create
    @hook = @project.web_hooks.new(params[:hook])
    @hook.save

    if @hook.valid?
      redirect_to project_hook_path(@project, @hook)
    else
      render :new
    end
  end

  def test
    @hook = @project.web_hooks.find(params[:id])
    commits = @project.commits(@project.default_branch, nil, 3)
    data = @project.web_hook_data(commits.last.id, commits.first.id, "refs/heads/#{@project.default_branch}")
    @hook.execute(data)

    redirect_to :back
  end

  def show
    @hook = @project.web_hooks.find(params[:id])
  end

  def destroy
    @hook = @project.web_hooks.find(params[:id])
    @hook.destroy

    redirect_to project_hooks_path(@project)
  end
end