Module: API::Helpers::LabelHelpers
- Extended by:
- Grape::API::Helpers
- Defined in:
- lib/api/helpers/label_helpers.rb
Instance Method Summary collapse
- #create_label(parent, entity) ⇒ Object
- #create_service_params(parent) ⇒ Object
- #delete_label(parent) ⇒ Object
- #find_label(parent, id_or_title, include_ancestor_groups: true) ⇒ Object
- #get_label(parent, entity, include_ancestor_groups: true) ⇒ Object
- #get_labels(parent, entity, include_ancestor_groups: true) ⇒ Object
- #params_id_or_title ⇒ Object
- #promote_label(parent) ⇒ Object
- #update_label(parent, entity) ⇒ Object
Instance Method Details
#create_label(parent, entity) ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/api/helpers/label_helpers.rb', line 52 def create_label(parent, entity) :admin_label, parent label = available_labels_for(parent).find_by_title(params[:name]) conflict!('Label already exists') if label priority = params.delete(:priority) label_params = declared_params(include_missing: false) label = ::Labels::CreateService.new(label_params).execute(create_service_params(parent)) if label.persisted? if parent.is_a?(Project) label.prioritize!(parent, priority) if priority end present label, with: entity, current_user: current_user, parent: parent else render_validation_error!(label) end end |
#create_service_params(parent) ⇒ Object
129 130 131 132 133 134 135 136 137 |
# File 'lib/api/helpers/label_helpers.rb', line 129 def create_service_params(parent) if parent.is_a?(Project) { project: parent } elsif parent.is_a?(Group) { group: parent } else raise TypeError, 'Parent type is not supported' end end |
#delete_label(parent) ⇒ Object
99 100 101 102 103 104 105 |
# File 'lib/api/helpers/label_helpers.rb', line 99 def delete_label(parent) :admin_label, parent label = find_label(parent, params_id_or_title, include_ancestor_groups: false) destroy_conditionally!(label) end |
#find_label(parent, id_or_title, include_ancestor_groups: true) ⇒ Object
31 32 33 34 35 36 |
# File 'lib/api/helpers/label_helpers.rb', line 31 def find_label(parent, id_or_title, include_ancestor_groups: true) labels = available_labels_for(parent, include_ancestor_groups: include_ancestor_groups) label = labels.find_by_id(id_or_title) || labels.find_by_title(id_or_title) label || not_found!('Label') end |
#get_label(parent, entity, include_ancestor_groups: true) ⇒ Object
46 47 48 49 50 |
# File 'lib/api/helpers/label_helpers.rb', line 46 def get_label(parent, entity, include_ancestor_groups: true) label = find_label(parent, params_id_or_title, include_ancestor_groups: include_ancestor_groups) present label, with: entity, current_user: current_user, parent: parent end |
#get_labels(parent, entity, include_ancestor_groups: true) ⇒ Object
38 39 40 41 42 43 44 |
# File 'lib/api/helpers/label_helpers.rb', line 38 def get_labels(parent, entity, include_ancestor_groups: true) present paginate(available_labels_for(parent, include_ancestor_groups: include_ancestor_groups)), with: entity, current_user: current_user, parent: parent, with_counts: params[:with_counts] end |
#params_id_or_title ⇒ Object
125 126 127 |
# File 'lib/api/helpers/label_helpers.rb', line 125 def params_id_or_title @params_id_or_title ||= params[:label_id] || params[:name] end |
#promote_label(parent) ⇒ Object
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/api/helpers/label_helpers.rb', line 107 def promote_label(parent) :admin_label, parent label = find_label(parent, params[:name], include_ancestor_groups: false) begin group_label = ::Labels::PromoteService.new(parent, current_user).execute(label) if group_label present group_label, with: Entities::GroupLabel, current_user: current_user, parent: parent.group else render_api_error!('Failed to promote project label to group label', 400) end rescue => error render_api_error!(error.to_s, 400) end end |
#update_label(parent, entity) ⇒ Object
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/api/helpers/label_helpers.rb', line 74 def update_label(parent, entity) :admin_label, parent label = find_label(parent, params_id_or_title, include_ancestor_groups: false) update_priority = params.key?(:priority) priority = params.delete(:priority) # params is used to update the label so we need to remove this field here params.delete(:label_id) params.delete(:name) label = ::Labels::UpdateService.new(declared_params(include_missing: false)).execute(label) render_validation_error!(label) unless label.valid? if parent.is_a?(Project) && update_priority if priority.nil? label.unprioritize!(parent) else label.prioritize!(parent, priority) end end present label, with: entity, current_user: current_user, parent: parent end |