issuable_base_service.rb 8.7 KB
Newer Older
1 2 3 4
class IssuableBaseService < BaseService
  private

  def create_assignee_note(issuable)
5
    SystemNoteService.change_assignee(
6 7 8 9
      issuable, issuable.project, current_user, issuable.assignee)
  end

  def create_milestone_note(issuable)
10
    SystemNoteService.change_milestone(
11 12
      issuable, issuable.project, current_user, issuable.milestone)
  end
N
Nikita Verkhovin 已提交
13

14 15 16 17
  def create_labels_note(issuable, old_labels)
    added_labels = issuable.labels - old_labels
    removed_labels = old_labels - issuable.labels

18
    SystemNoteService.change_label(
N
Nikita Verkhovin 已提交
19 20
      issuable, issuable.project, current_user, added_labels, removed_labels)
  end
21 22 23 24 25

  def create_title_change_note(issuable, old_title)
    SystemNoteService.change_title(
      issuable, issuable.project, current_user, old_title)
  end
26

27 28 29 30
  def create_description_change_note(issuable)
    SystemNoteService.change_description(issuable, issuable.project, current_user)
  end

31 32 33 34 35
  def create_branch_change_note(issuable, branch_type, old_branch, new_branch)
    SystemNoteService.change_branch(
      issuable, issuable.project, current_user, branch_type,
      old_branch, new_branch)
  end
36

37 38 39 40 41 42
  def create_task_status_note(issuable)
    issuable.updated_tasks.each do |task|
      SystemNoteService.change_task_status(issuable, issuable.project, current_user, task)
    end
  end

43 44 45 46 47 48 49 50
  def create_time_estimate_note(issuable)
    SystemNoteService.change_time_estimate(issuable, issuable.project, current_user)
  end

  def create_time_spent_note(issuable)
    SystemNoteService.change_time_spent(issuable, issuable.project, current_user)
  end

51 52
  def filter_params(issuable)
    ability_name = :"admin_#{issuable.to_ability_name}"
53

54
    unless can?(current_user, ability_name, project)
55
      params.delete(:milestone_id)
56
      params.delete(:labels)
57 58
      params.delete(:add_label_ids)
      params.delete(:remove_label_ids)
59 60
      params.delete(:label_ids)
      params.delete(:assignee_id)
61
      params.delete(:due_date)
62
    end
63 64 65 66

    filter_assignee(issuable)
    filter_milestone
    filter_labels
67
  end
68

69 70 71 72 73 74 75 76 77
  def filter_assignee(issuable)
    return unless params[:assignee_id].present?

    assignee_id = params[:assignee_id]

    if assignee_id.to_s == IssuableFinder::NONE
      params[:assignee_id] = ""
    else
      params.delete(:assignee_id) unless assignee_can_read?(issuable, assignee_id)
78 79 80
    end
  end

81 82 83 84 85 86 87 88 89 90 91
  def assignee_can_read?(issuable, assignee_id)
    new_assignee = User.find_by_id(assignee_id)

    return false unless new_assignee.present?

    ability_name = :"read_#{issuable.to_ability_name}"
    resource     = issuable.persisted? ? issuable : project

    can?(new_assignee, ability_name, resource)
  end

92
  def filter_milestone
93 94
    milestone_id = params[:milestone_id]
    return unless milestone_id
95

96 97
    if milestone_id == IssuableFinder::NONE ||
        project.milestones.find_by(id: milestone_id).nil?
98 99 100 101 102
      params[:milestone_id] = ''
    end
  end

  def filter_labels
103 104 105
    filter_labels_in_param(:add_label_ids)
    filter_labels_in_param(:remove_label_ids)
    filter_labels_in_param(:label_ids)
106
    find_or_create_label_ids
107 108
  end

109 110
  def filter_labels_in_param(key)
    return if params[key].to_a.empty?
111

112
    params[key] = available_labels.where(id: params[key]).pluck(:id)
113 114
  end

115 116
  def find_or_create_label_ids
    labels = params.delete(:labels)
117

118 119
    return unless labels

120
    params[:label_ids] = labels.split(",").map do |label_name|
121
      service = Labels::FindOrCreateService.new(current_user, project, title: label_name.strip)
122
      label   = service.execute
123

124 125
      label.try(:id)
    end.compact
126 127
  end

128
  def process_label_ids(attributes, existing_label_ids: nil)
129 130 131
    label_ids = attributes.delete(:label_ids)
    add_label_ids = attributes.delete(:add_label_ids)
    remove_label_ids = attributes.delete(:remove_label_ids)
132

133
    new_label_ids = existing_label_ids || label_ids || []
134

135 136 137 138 139 140
    if add_label_ids.blank? && remove_label_ids.blank?
      new_label_ids = label_ids if label_ids
    else
      new_label_ids |= add_label_ids if add_label_ids
      new_label_ids -= remove_label_ids if remove_label_ids
    end
141 142 143 144

    new_label_ids
  end

145 146 147 148
  def available_labels
    LabelsFinder.new(current_user, project_id: @project.id).execute
  end

149
  def merge_slash_commands_into_params!(issuable)
D
Douwe Maan 已提交
150 151
    description, command_params =
      SlashCommands::InterpretService.new(project, current_user).
152
        execute(params[:description], issuable)
153

154 155
    # Avoid a description already set on an issuable to be overwritten by a nil
    params[:description] = description if params.has_key?(:description)
D
Douwe Maan 已提交
156 157

    params.merge!(command_params)
158 159
  end

160
  def create_issuable(issuable, attributes, label_ids:)
161
    issuable.with_transaction_returning_status do
162 163 164 165 166
      if issuable.save
        issuable.update_attributes(label_ids: label_ids)
      end
    end
  end
167

168
  def create(issuable)
169
    merge_slash_commands_into_params!(issuable)
170
    filter_params(issuable)
171

172 173
    params.delete(:state_event)
    params[:author] ||= current_user
174

175 176 177 178 179 180 181 182
    label_ids = process_label_ids(params)

    issuable.assign_attributes(params)

    before_create(issuable)

    if params.present? && create_issuable(issuable, params, label_ids: label_ids)
      after_create(issuable)
183 184 185 186 187 188
      issuable.create_cross_references!(current_user)
      execute_hooks(issuable)
    end

    issuable
  end
189

190 191 192 193 194 195 196
  def before_create(issuable)
    # To be overridden by subclasses
  end

  def after_create(issuable)
    # To be overridden by subclasses
  end
197

198
  def before_update(issuable)
199 200 201
    # To be overridden by subclasses
  end

202 203
  def after_update(issuable)
    # To be overridden by subclasses
204 205
  end

206 207
  def update(issuable)
    change_state(issuable)
208
    change_subscription(issuable)
209
    change_todo(issuable)
M
mhasbini 已提交
210
    toggle_award(issuable)
211
    filter_params(issuable)
212
    old_labels = issuable.labels.to_a
213
    old_mentioned_users = issuable.mentioned_users.to_a
214

215 216
    label_ids = process_label_ids(params, existing_label_ids: issuable.label_ids)
    params[:label_ids] = label_ids if labels_changing?(issuable.label_ids, label_ids)
217

218
    if issuable.changed? || params.present?
219 220 221
      issuable.assign_attributes(params.merge(updated_by: current_user))

      before_update(issuable)
222

223 224 225 226 227 228 229 230 231 232 233
      if issuable.with_transaction_returning_status { issuable.save }
        # We do not touch as it will affect a update on updated_at field
        ActiveRecord::Base.no_touching do
          handle_common_system_notes(issuable, old_labels: old_labels)
        end

        handle_changes(issuable, old_labels: old_labels, old_mentioned_users: old_mentioned_users)
        after_update(issuable)
        issuable.create_new_cross_references!(current_user)
        execute_hooks(issuable, 'update')
      end
234 235 236 237 238
    end

    issuable
  end

239 240 241 242
  def labels_changing?(old_label_ids, new_label_ids)
    old_label_ids.sort != new_label_ids.sort
  end

243 244 245 246 247 248 249 250
  def change_state(issuable)
    case params.delete(:state_event)
    when 'reopen'
      reopen_service.new(project, current_user, {}).execute(issuable)
    when 'close'
      close_service.new(project, current_user, {}).execute(issuable)
    end
  end
251

252 253 254
  def change_subscription(issuable)
    case params.delete(:subscription_event)
    when 'subscribe'
255
      issuable.subscribe(current_user, project)
256
    when 'unsubscribe'
257
      issuable.unsubscribe(current_user, project)
258 259 260
    end
  end

261 262
  def change_todo(issuable)
    case params.delete(:todo_event)
263
    when 'add'
264 265 266
      todo_service.mark_todo(issuable, current_user)
    when 'done'
      todo = TodosFinder.new(current_user).execute.find_by(target: issuable)
267
      todo_service.mark_todos_as_done([todo], current_user) if todo
268 269 270
    end
  end

M
mhasbini 已提交
271 272 273 274 275 276 277 278
  def toggle_award(issuable)
    award = params.delete(:emoji_award)
    if award
      todo_service.new_award_emoji(issuable, current_user)
      issuable.toggle_award_emoji(award, current_user)
    end
  end

279
  def has_changes?(issuable, old_labels: [])
280 281 282 283 284 285
    valid_attrs = [:title, :description, :assignee_id, :milestone_id, :target_branch]

    attrs_changed = valid_attrs.any? do |attr|
      issuable.previous_changes.include?(attr.to_s)
    end

286
    labels_changed = issuable.labels != old_labels
287 288 289 290

    attrs_changed || labels_changed
  end

291
  def handle_common_system_notes(issuable, old_labels: [])
292 293 294 295
    if issuable.previous_changes.include?('title')
      create_title_change_note(issuable, issuable.previous_changes['title'].first)
    end

296 297 298 299
    if issuable.previous_changes.include?('description')
      create_description_change_note(issuable)
    end

300 301 302
    if issuable.previous_changes.include?('description') && issuable.tasks?
      create_task_status_note(issuable)
    end
303

304 305 306 307 308 309 310 311
    if issuable.previous_changes.include?('time_estimate')
      create_time_estimate_note(issuable)
    end

    if issuable.time_spent?
      create_time_spent_note(issuable)
    end

312
    create_labels_note(issuable, old_labels) if issuable.labels != old_labels
313
  end
314
end