system_hooks.rb 1.57 KB
Newer Older
1
module API
Andrey Kumanyaev's avatar
Andrey Kumanyaev committed
2 3
  # Hooks API
  class SystemHooks < Grape::API
4
    before do
Andrey Kumanyaev's avatar
Andrey Kumanyaev committed
5 6
      authenticate!
      authenticated_as_admin!
7
    end
Andrey Kumanyaev's avatar
Andrey Kumanyaev committed
8 9

    resource :hooks do
10 11 12
      desc 'Get the list of system hooks' do
        success Entities::Hook
      end
Andrey Kumanyaev's avatar
Andrey Kumanyaev committed
13
      get do
14 15
        hooks = SystemHook.all
        present hooks, with: Entities::Hook
Andrey Kumanyaev's avatar
Andrey Kumanyaev committed
16 17
      end

18 19 20 21 22 23
      desc 'Create a new system hook' do
        success Entities::Hook
      end
      params do
        requires :url, type: String, desc: 'The URL for the system hook'
      end
Andrey Kumanyaev's avatar
Andrey Kumanyaev committed
24
      post do
25 26 27 28
        hook = SystemHook.new declared(params).to_h

        if hook.save
          present hook, with: Entities::Hook
Andrey Kumanyaev's avatar
Andrey Kumanyaev committed
29 30 31 32 33
        else
          not_found!
        end
      end

34 35 36 37
      desc 'Test a hook'
      params do
        requires :id, type: Integer, desc: 'The ID of the system hook'
      end
Andrey Kumanyaev's avatar
Andrey Kumanyaev committed
38
      get ":id" do
39
        hook = SystemHook.find(params[:id])
Andrey Kumanyaev's avatar
Andrey Kumanyaev committed
40 41 42 43 44 45 46 47
        data = {
          event_name: "project_create",
          name: "Ruby",
          path: "ruby",
          project_id: 1,
          owner_name: "Someone",
          owner_email: "example@gitlabhq.com"
        }
48
        hook.execute(data, 'system_hooks')
Andrey Kumanyaev's avatar
Andrey Kumanyaev committed
49 50 51
        data
      end

52 53 54 55 56 57
      desc 'Delete a hook' do
        success Entities::Hook
      end
      params do
        requires :id, type: Integer, desc: 'The ID of the system hook'
      end
Andrey Kumanyaev's avatar
Andrey Kumanyaev committed
58 59
      delete ":id" do
        begin
60 61
          hook = SystemHook.find(params[:id])
          present hook.destroy, with: Entities::Hook
Andrey Kumanyaev's avatar
Andrey Kumanyaev committed
62 63 64 65 66 67 68
        rescue
          # SystemHook raises an Error if no hook with id found
        end
      end
    end
  end
end