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

  def create_milestone_note(issuable)
F
Felipe Artur 已提交
5 6 7
    milestone = issuable.milestone
    return if milestone && milestone.is_group_milestone?

8
    SystemNoteService.change_milestone(
F
Felipe Artur 已提交
9
      issuable, issuable.project, current_user, milestone)
10
  end
N
Nikita Verkhovin 已提交
11

12 13 14 15
  def create_labels_note(issuable, old_labels)
    added_labels = issuable.labels - old_labels
    removed_labels = old_labels - issuable.labels

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

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

25 26 27 28
  def create_description_change_note(issuable)
    SystemNoteService.change_description(issuable, issuable.project, current_user)
  end

29 30 31 32 33
  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
34

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

41 42 43 44 45 46 47 48
  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

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

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

    filter_assignee(issuable)
    filter_milestone
    filter_labels
66
  end
67

68 69 70 71 72 73 74 75 76
  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)
77 78 79
    end
  end

80 81 82
  def assignee_can_read?(issuable, assignee_id)
    new_assignee = User.find_by_id(assignee_id)

83
    return false unless new_assignee
84 85 86 87 88 89 90

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

    can?(new_assignee, ability_name, resource)
  end

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

F
Felipe Artur 已提交
95 96 97 98 99 100
    params[:milestone_id] = '' if milestone_id == IssuableFinder::NONE

    milestone =
      Milestone.for_projects_and_groups([project.id], [project.group&.id]).find_by_id(milestone_id)

    params[:milestone_id] = '' unless milestone
101 102 103
  end

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

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

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

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

119 120
    return unless labels

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

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

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

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

136 137 138 139 140 141
    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
142 143 144 145

    new_label_ids
  end

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

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

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

    params.merge!(command_params)
159 160
  end

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

169
  def create(issuable)
170
    merge_quick_actions_into_params!(issuable)
171
    filter_params(issuable)
172

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

176 177 178 179 180 181 182 183
    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)
184 185
      issuable.create_cross_references!(current_user)
      execute_hooks(issuable)
186
      invalidate_cache_counts(issuable.assignees, issuable)
187 188 189 190
    end

    issuable
  end
191

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

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

200
  def before_update(issuable)
201 202 203
    # To be overridden by subclasses
  end

204 205
  def after_update(issuable)
    # To be overridden by subclasses
206 207
  end

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

218 219
    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)
220

221
    if issuable.changed? || params.present?
222 223
      issuable.assign_attributes(params.merge(updated_by: current_user))

224
      if has_title_or_description_changed?(issuable)
225
        issuable.assign_attributes(last_edited_at: Time.now, last_edited_by: current_user)
226 227
      end

228
      before_update(issuable)
229

230 231 232 233 234 235
      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

236 237 238 239 240 241 242
        handle_changes(
          issuable,
          old_labels: old_labels,
          old_mentioned_users: old_mentioned_users,
          old_assignees: old_assignees
        )

243
        if old_assignees != issuable.assignees
244 245 246
          new_assignees = issuable.assignees.to_a
          affected_assignees = (old_assignees + new_assignees) - (old_assignees & new_assignees)
          invalidate_cache_counts(affected_assignees.compact, issuable)
247 248
        end

249 250 251 252
        after_update(issuable)
        issuable.create_new_cross_references!(current_user)
        execute_hooks(issuable, 'update')
      end
253 254 255 256 257
    end

    issuable
  end

258 259 260 261
  def labels_changing?(old_label_ids, new_label_ids)
    old_label_ids.sort != new_label_ids.sort
  end

262 263 264 265
  def has_title_or_description_changed?(issuable)
    issuable.title_changed? || issuable.description_changed?
  end

266 267 268 269 270 271 272 273
  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
274

275 276 277
  def change_subscription(issuable)
    case params.delete(:subscription_event)
    when 'subscribe'
278
      issuable.subscribe(current_user, project)
279
    when 'unsubscribe'
280
      issuable.unsubscribe(current_user, project)
281 282 283
    end
  end

284 285
  def change_todo(issuable)
    case params.delete(:todo_event)
286
    when 'add'
287 288 289
      todo_service.mark_todo(issuable, current_user)
    when 'done'
      todo = TodosFinder.new(current_user).execute.find_by(target: issuable)
290
      todo_service.mark_todos_as_done([todo], current_user) if todo
291 292 293
    end
  end

M
mhasbini 已提交
294 295 296 297 298 299 300 301
  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

302
  def has_changes?(issuable, old_labels: [], old_assignees: [])
303 304 305 306 307 308
    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

309
    labels_changed = issuable.labels != old_labels
310

311 312 313
    assignees_changed = issuable.assignees != old_assignees

    attrs_changed || labels_changed || assignees_changed
314 315
  end

316
  def handle_common_system_notes(issuable, old_labels: [])
317 318 319 320
    if issuable.previous_changes.include?('title')
      create_title_change_note(issuable, issuable.previous_changes['title'].first)
    end

321
    if issuable.previous_changes.include?('description')
322 323 324 325 326 327 328
      if issuable.tasks? && issuable.updated_tasks.any?
        create_task_status_note(issuable)
      else
        # TODO: Show this note if non-task content was modified.
        # https://gitlab.com/gitlab-org/gitlab-ce/issues/33577
        create_description_change_note(issuable)
      end
329
    end
330

331 332 333 334 335 336 337 338
    if issuable.previous_changes.include?('time_estimate')
      create_time_estimate_note(issuable)
    end

    if issuable.time_spent?
      create_time_spent_note(issuable)
    end

339
    create_labels_note(issuable, old_labels) if issuable.labels != old_labels
340
  end
341 342 343 344 345 346

  def invalidate_cache_counts(users, issuable)
    users.each do |user|
      user.public_send("invalidate_#{issuable.model_name.singular}_cache_counts")
    end
  end
347
end