Actions
Maintenance #1957
closedxmera Omnia - Collection #1826: Maintenance tasks of several components
Maintenance #1739: Support Redmine 5.1.1
Check if issue changes will have impact on plugins
Start date:
Due date:
% Done:
100%
Estimated time:
Compatible Redmine Version:
Pull Request Link:
Description
Affected plugins:
diff --git a/app/models/issue.rb b/app/models/issue.rb
index 7ae800751..8c8947bac 100644
--- a/app/models/issue.rb
+++ b/app/models/issue.rb
@@ -119,9 +119,14 @@ class Issue < ActiveRecord::Base
after_save :reschedule_following_issues, :update_nested_set_attributes,
:update_parent_attributes, :delete_selected_attachments, :create_journal
# Should be after_create but would be called before previous after_save callbacks
- after_save :after_create_from_copy, :create_parent_issue_journal
- after_destroy :update_parent_attributes, :create_parent_issue_journal
+ after_save :after_create_from_copy
+ after_destroy :update_parent_attributes
+ # add_auto_watcher needs to run before sending notifications, thus it needs
+ # to be added after send_notification (after_ callbacks are run in inverse order)
+ # https://api.rubyonrails.org/v5.2.3/classes/ActiveSupport/Callbacks/ClassMethods.html#method-i-set_callback
after_create_commit :send_notification
+ after_create_commit :add_auto_watcher
+ after_commit :create_parent_issue_journal
# Returns a SQL conditions string used to find all issues visible by the specified user
def self.visible_condition(user, options={})
@@ -681,9 +686,7 @@ class Issue < ActiveRecord::Base
def workflow_rule_by_attribute(user=nil)
return @workflow_rule_by_attribute if @workflow_rule_by_attribute && user.nil?
- user_real = user || User.current
- roles = user_real.admin ? Role.all.to_a : user_real.roles_for_project(project)
- roles = roles.select(&:consider_workflow?)
+ roles = roles_for_workflow(user || User.current)
return {} if roles.empty?
result = {}
@@ -1070,7 +1073,7 @@ class Issue < ActiveRecord::Base
statuses = []
statuses += IssueStatus.new_statuses_allowed(
initial_status,
- user.admin ? Role.all.to_a : user.roles_for_project(project),
+ roles_for_workflow(user),
tracker,
author == user,
assignee_transitions_allowed
@@ -1433,9 +1436,9 @@ class Issue < ActiveRecord::Base
end
def <=>(issue)
- if issue.nil?
- -1
- elsif root_id != issue.root_id
+ return nil unless issue.is_a?(Issue)
+
+ if root_id != issue.root_id
(root_id || 0) <=> (issue.root_id || 0)
else
(lft || 0) <=> (issue.lft || 0)
@@ -1504,6 +1507,8 @@ class Issue < ActiveRecord::Base
end
end
+ alias :parent_issue :parent
+
def set_parent_id
self.parent_id = parent_issue_id
end
@@ -1887,9 +1892,18 @@ class Issue < ActiveRecord::Base
next if issue.project.nil? || issue.fixed_version.nil?
unless issue.project.shared_versions.include?(issue.fixed_version)
- issue.init_journal(User.current)
- issue.fixed_version = nil
- issue.save
+ retried = false
+ begin
+ issue.init_journal(User.current)
+ issue.fixed_version = nil
+ issue.save
+ rescue ActiveRecord::StaleObjectError
+ raise if retried
+
+ retried = true
+ issue.reload
+ retry
+ end
end
end
end
@@ -2014,15 +2028,33 @@ class Issue < ActiveRecord::Base
[nil, parent_id]
end
- if old_parent_id.present? && old_parent_issue = Issue.visible.find_by_id(old_parent_id)
- old_parent_issue.init_journal(User.current)
- old_parent_issue.current_journal.__send__(:add_attribute_detail, 'child_id', child_id, nil)
- old_parent_issue.save
+ if old_parent_id.present?
+ Issue.transaction do
+ if old_parent_issue = Issue.visible.lock.find_by_id(old_parent_id)
+ old_parent_issue.init_journal(User.current)
+ old_parent_issue.current_journal.__send__(:add_attribute_detail, 'child_id', child_id, nil)
+ old_parent_issue.save
+ end
+ end
+ end
+
+ if new_parent_id.present?
+ Issue.transaction do
+ if new_parent_issue = Issue.visible.lock.find_by_id(new_parent_id)
+ new_parent_issue.init_journal(User.current)
+ new_parent_issue.current_journal.__send__(:add_attribute_detail, 'child_id', nil, child_id)
+ new_parent_issue.save
+ end
+ end
end
- if new_parent_id.present? && new_parent_issue = Issue.visible.find_by_id(new_parent_id)
- new_parent_issue.init_journal(User.current)
- new_parent_issue.current_journal.__send__(:add_attribute_detail, 'child_id', nil, child_id)
- new_parent_issue.save
+ end
+
+ def add_auto_watcher
+ if author&.active? &&
+ author&.allowed_to?(:add_issue_watchers, project) &&
+ author.pref.auto_watch_on?('issue_created') &&
+ self.watcher_user_ids.exclude?(author.id)
+ self.set_watcher(author, true)
end
end
@@ -2037,6 +2069,7 @@ class Issue < ActiveRecord::Base
tracker.disabled_core_fields.each do |attribute|
send "#{attribute}=", nil
end
+ self.priority_id ||= IssuePriority.default&.id || IssuePriority.active.first.id
self.done_ratio ||= 0
end
end
@@ -2057,4 +2090,9 @@ class Issue < ActiveRecord::Base
Project
end
end
+
+ def roles_for_workflow(user)
+ roles = user.admin ? Role.all.to_a : user.roles_for_project(project)
+ roles.select(&:consider_workflow?)
+ end
end
Updated by liaham about 1 year ago
- Status changed from New to Closed
- Assignee set to liaham
- % Done changed from 0 to 100
No impact on Redmine Computable Custom Field.
Actions