debian-mirror-gitlab/app/services/issuable_base_service.rb

307 lines
8.6 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
class IssuableBaseService < BaseService
private
2017-08-17 22:00:37 +05:30
def filter_params(issuable)
ability_name = :"admin_#{issuable.to_ability_name}"
2015-09-11 14:41:01 +05:30
2018-03-17 18:26:18 +05:30
unless can?(current_user, ability_name, issuable)
2015-09-11 14:41:01 +05:30
params.delete(:milestone_id)
2016-09-29 09:46:39 +05:30
params.delete(:labels)
params.delete(:add_label_ids)
params.delete(:remove_label_ids)
2015-09-11 14:41:01 +05:30
params.delete(:label_ids)
2017-08-17 22:00:37 +05:30
params.delete(:assignee_ids)
2015-09-11 14:41:01 +05:30
params.delete(:assignee_id)
2016-11-03 12:29:30 +05:30
params.delete(:due_date)
2017-09-10 17:25:29 +05:30
params.delete(:canonical_issue_id)
2018-03-17 18:26:18 +05:30
params.delete(:project)
params.delete(:discussion_locked)
2015-09-11 14:41:01 +05:30
end
2017-08-17 22:00:37 +05:30
filter_assignee(issuable)
filter_milestone
filter_labels
2015-09-11 14:41:01 +05:30
end
2015-12-23 02:04:40 +05:30
2017-08-17 22:00:37 +05:30
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)
2016-06-02 11:05:42 +05:30
end
end
2017-08-17 22:00:37 +05:30
def assignee_can_read?(issuable, assignee_id)
new_assignee = User.find_by_id(assignee_id)
return false unless new_assignee
ability_name = :"read_#{issuable.to_ability_name}"
resource = issuable.persisted? ? issuable : project
can?(new_assignee, ability_name, resource)
end
2016-06-02 11:05:42 +05:30
def filter_milestone
milestone_id = params[:milestone_id]
return unless milestone_id
2017-09-10 17:25:29 +05:30
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
2016-06-02 11:05:42 +05:30
end
def filter_labels
2016-09-13 17:45:13 +05:30
filter_labels_in_param(:add_label_ids)
filter_labels_in_param(:remove_label_ids)
filter_labels_in_param(:label_ids)
2016-09-29 09:46:39 +05:30
find_or_create_label_ids
end
def filter_labels_in_param(key)
return if params[key].to_a.empty?
2016-06-02 11:05:42 +05:30
2016-11-03 12:29:30 +05:30
params[key] = available_labels.where(id: params[key]).pluck(:id)
end
2016-09-29 09:46:39 +05:30
def find_or_create_label_ids
labels = params.delete(:labels)
2017-01-15 13:20:01 +05:30
2016-09-29 09:46:39 +05:30
return unless labels
2017-01-15 13:20:01 +05:30
params[:label_ids] = labels.split(",").map do |label_name|
2016-11-03 12:29:30 +05:30
service = Labels::FindOrCreateService.new(current_user, project, title: label_name.strip)
label = service.execute
2017-01-15 13:20:01 +05:30
label.try(:id)
end.compact
2016-09-29 09:46:39 +05:30
end
2016-09-13 17:45:13 +05:30
def process_label_ids(attributes, existing_label_ids: nil)
label_ids = attributes.delete(:label_ids)
add_label_ids = attributes.delete(:add_label_ids)
remove_label_ids = attributes.delete(:remove_label_ids)
new_label_ids = existing_label_ids || label_ids || []
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
new_label_ids
end
2016-11-03 12:29:30 +05:30
def available_labels
LabelsFinder.new(current_user, project_id: @project.id).execute
end
2017-09-10 17:25:29 +05:30
def merge_quick_actions_into_params!(issuable)
2018-03-17 18:26:18 +05:30
original_description = params.fetch(:description, issuable.description)
2016-09-13 17:45:13 +05:30
description, command_params =
2017-09-10 17:25:29 +05:30
QuickActions::InterpretService.new(project, current_user)
2018-03-17 18:26:18 +05:30
.execute(original_description, issuable)
2016-09-13 17:45:13 +05:30
2017-08-17 22:00:37 +05:30
# Avoid a description already set on an issuable to be overwritten by a nil
2018-03-17 18:26:18 +05:30
params[:description] = description if description
2016-09-13 17:45:13 +05:30
params.merge!(command_params)
end
def create_issuable(issuable, attributes, label_ids:)
issuable.with_transaction_returning_status do
2016-09-13 17:45:13 +05:30
if issuable.save
issuable.update_attributes(label_ids: label_ids)
end
end
end
2016-09-13 17:45:13 +05:30
def create(issuable)
2017-09-10 17:25:29 +05:30
merge_quick_actions_into_params!(issuable)
2017-08-17 22:00:37 +05:30
filter_params(issuable)
2016-09-13 17:45:13 +05:30
params.delete(:state_event)
params[:author] ||= current_user
2017-01-15 13:20:01 +05:30
2016-09-13 17:45:13 +05:30
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)
execute_hooks(issuable)
2017-09-10 17:25:29 +05:30
invalidate_cache_counts(issuable, users: issuable.assignees)
2018-03-17 18:26:18 +05:30
issuable.update_project_counter_caches
2016-09-13 17:45:13 +05:30
end
issuable
end
2016-09-13 17:45:13 +05:30
def before_create(issuable)
# To be overridden by subclasses
end
def after_create(issuable)
# To be overridden by subclasses
end
2017-08-17 22:00:37 +05:30
def before_update(issuable)
2016-09-29 09:46:39 +05:30
# To be overridden by subclasses
end
2017-08-17 22:00:37 +05:30
def after_update(issuable)
# To be overridden by subclasses
2016-06-02 11:05:42 +05:30
end
2015-12-23 02:04:40 +05:30
def update(issuable)
change_state(issuable)
2016-08-24 12:49:21 +05:30
change_subscription(issuable)
2016-09-13 17:45:13 +05:30
change_todo(issuable)
2017-08-17 22:00:37 +05:30
toggle_award(issuable)
filter_params(issuable)
2018-03-17 18:26:18 +05:30
old_associations = associations_before_update(issuable)
2016-09-13 17:45:13 +05:30
2017-08-17 22:00:37 +05:30
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)
2015-12-23 02:04:40 +05:30
2017-08-17 22:00:37 +05:30
if issuable.changed? || params.present?
issuable.assign_attributes(params.merge(updated_by: current_user))
2016-09-29 09:46:39 +05:30
2017-08-17 22:00:37 +05:30
if has_title_or_description_changed?(issuable)
issuable.assign_attributes(last_edited_at: Time.now, last_edited_by: current_user)
2016-09-29 09:46:39 +05:30
end
2017-08-17 22:00:37 +05:30
before_update(issuable)
2018-03-17 18:26:18 +05:30
# We have to perform this check before saving the issuable as Rails resets
# the changed fields upon calling #save.
update_project_counters = issuable.project && update_project_counter_caches?(issuable)
2017-08-17 22:00:37 +05:30
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
2018-03-17 18:26:18 +05:30
Issuable::CommonSystemNotesService.new(project, current_user).execute(issuable, old_associations[:labels])
2017-08-17 22:00:37 +05:30
end
2018-03-17 18:26:18 +05:30
handle_changes(issuable, old_associations: old_associations)
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
new_assignees = issuable.assignees.to_a
2018-03-17 18:26:18 +05:30
affected_assignees = (old_associations[:assignees] + new_assignees) - (old_associations[:assignees] & new_assignees)
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
invalidate_cache_counts(issuable, users: affected_assignees.compact)
2017-08-17 22:00:37 +05:30
after_update(issuable)
issuable.create_new_cross_references!(current_user)
2018-03-17 18:26:18 +05:30
execute_hooks(
issuable,
'update',
old_associations: old_associations
)
issuable.update_project_counter_caches if update_project_counters
2017-08-17 22:00:37 +05:30
end
2015-12-23 02:04:40 +05:30
end
issuable
end
2017-08-17 22:00:37 +05:30
def labels_changing?(old_label_ids, new_label_ids)
old_label_ids.sort != new_label_ids.sort
end
def has_title_or_description_changed?(issuable)
issuable.title_changed? || issuable.description_changed?
end
2015-12-23 02:04:40 +05:30
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
2016-08-24 12:49:21 +05:30
def change_subscription(issuable)
case params.delete(:subscription_event)
when 'subscribe'
2017-08-17 22:00:37 +05:30
issuable.subscribe(current_user, project)
2016-08-24 12:49:21 +05:30
when 'unsubscribe'
2017-08-17 22:00:37 +05:30
issuable.unsubscribe(current_user, project)
2016-08-24 12:49:21 +05:30
end
end
2016-09-13 17:45:13 +05:30
def change_todo(issuable)
case params.delete(:todo_event)
when 'add'
todo_service.mark_todo(issuable, current_user)
when 'done'
todo = TodosFinder.new(current_user).execute.find_by(target: issuable)
2017-09-10 17:25:29 +05:30
todo_service.mark_todos_as_done_by_ids(todo, current_user) if todo
2016-09-13 17:45:13 +05:30
end
end
2017-08-17 22:00:37 +05:30
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
2018-03-17 18:26:18 +05:30
def associations_before_update(issuable)
associations =
{
labels: issuable.labels.to_a,
mentioned_users: issuable.mentioned_users.to_a,
assignees: issuable.assignees.to_a
}
associations[:total_time_spent] = issuable.total_time_spent if issuable.respond_to?(:total_time_spent)
associations
end
2017-08-17 22:00:37 +05:30
def has_changes?(issuable, old_labels: [], old_assignees: [])
2016-04-02 18:10:28 +05:30
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
2016-06-02 11:05:42 +05:30
labels_changed = issuable.labels != old_labels
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
assignees_changed = issuable.assignees != old_assignees
attrs_changed || labels_changed || assignees_changed
2016-04-02 18:10:28 +05:30
end
2018-03-17 18:26:18 +05:30
def invalidate_cache_counts(issuable, users: [])
users.each do |user|
user.public_send("invalidate_#{issuable.model_name.singular}_cache_counts") # rubocop:disable GitlabSecurity/PublicSend
2017-08-17 22:00:37 +05:30
end
2018-03-17 18:26:18 +05:30
end
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
# override if needed
def handle_changes(issuable, options)
2015-12-23 02:04:40 +05:30
end
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
# override if needed
def execute_hooks(issuable, action = 'open', params = {})
end
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
def update_project_counter_caches?(issuable)
issuable.state_changed?
2017-08-17 22:00:37 +05:30
end
2015-04-26 12:48:37 +05:30
end