Module: API::Helpers::WebHooksHelpers

Extended by:
Grape::API::Helpers
Defined in:
lib/api/helpers/web_hooks_helpers.rb

Instance Method Summary collapse

Instance Method Details

#create_hook_paramsObject



27
28
29
30
31
32
33
34
35
36
# File 'lib/api/helpers/web_hooks_helpers.rb', line 27

def create_hook_params
  hook_params = declared_params(include_missing: false)
  url_variables = hook_params.delete(:url_variables)

  if url_variables.present?
    hook_params[:url_variables] = url_variables.to_h { [_1[:key], _1[:value]] }
  end

  hook_params
end

#find_hookObject



23
24
25
# File 'lib/api/helpers/web_hooks_helpers.rb', line 23

def find_hook
  hook_scope.find(params.delete(:hook_id))
end

#save_hook(hook, entity) ⇒ Object



58
59
60
61
62
63
64
65
66
67
# File 'lib/api/helpers/web_hooks_helpers.rb', line 58

def save_hook(hook, entity)
  if hook.save
    present hook, with: entity
  else
    error!("Invalid url given", 422) if hook.errors[:url].present?
    error!("Invalid branch filter given", 422) if hook.errors[:push_events_branch_filter].present?

    render_validation_error!(hook, 422)
  end
end

#update_hook(entity:) ⇒ Object



38
39
40
41
42
43
44
45
# File 'lib/api/helpers/web_hooks_helpers.rb', line 38

def update_hook(entity:)
  hook = find_hook
  update_params = update_hook_params(hook)

  hook.assign_attributes(update_params)

  save_hook(hook, entity)
end

#update_hook_params(hook) ⇒ Object



47
48
49
50
51
52
53
54
55
56
# File 'lib/api/helpers/web_hooks_helpers.rb', line 47

def update_hook_params(hook)
  update_params = declared_params(include_missing: false)
  url_variables = update_params.delete(:url_variables) || []
  url_variables = url_variables.to_h { [_1[:key], _1[:value]] }
  update_params[:url_variables] = hook.url_variables.merge(url_variables) if url_variables.present?

  error!('No parameters provided', :bad_request) if update_params.empty?

  update_params
end