debian-mirror-gitlab/app/models/work_item.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

116 lines
3.5 KiB
Ruby
Raw Normal View History

2022-03-02 08:16:31 +05:30
# frozen_string_literal: true
class WorkItem < Issue
2022-08-13 15:12:31 +05:30
include Gitlab::Utils::StrongMemoize
2023-04-23 21:23:45 +05:30
COMMON_QUICK_ACTIONS_COMMANDS = [
:title, :reopen, :close, :cc, :tableflip, :shrug
].freeze
2022-03-02 08:16:31 +05:30
self.table_name = 'issues'
self.inheritance_column = :_type_disabled
2022-04-04 11:22:00 +05:30
2022-08-13 15:12:31 +05:30
belongs_to :namespace, inverse_of: :work_items
2022-07-23 23:45:48 +05:30
has_one :parent_link, class_name: '::WorkItems::ParentLink', foreign_key: :work_item_id
has_one :work_item_parent, through: :parent_link, class_name: 'WorkItem'
has_many :child_links, class_name: '::WorkItems::ParentLink', foreign_key: :work_item_parent_id
has_many :work_item_children, through: :child_links, class_name: 'WorkItem',
2022-08-27 11:52:29 +05:30
foreign_key: :work_item_id, source: :work_item
2023-04-23 21:23:45 +05:30
has_many :work_item_children_by_relative_position, -> { work_item_children_keyset_order },
through: :child_links, class_name: 'WorkItem',
foreign_key: :work_item_id, source: :work_item
2022-07-23 23:45:48 +05:30
scope :inc_relations_for_permission_check, -> { includes(:author, project: :project_feature) }
2023-04-23 21:23:45 +05:30
delegate :supports_assignee?, to: :work_item_type
2023-01-13 00:05:48 +05:30
class << self
def assignee_association_name
'issue'
end
def test_reports_join_column
'issues.id'
end
2023-04-23 21:23:45 +05:30
def work_item_children_keyset_order
keyset_order = Gitlab::Pagination::Keyset::Order.build([
Gitlab::Pagination::Keyset::ColumnOrderDefinition.new(
attribute_name: :relative_position,
column_expression: WorkItems::ParentLink.arel_table[:relative_position],
order_expression: WorkItems::ParentLink.arel_table[:relative_position].asc.nulls_last,
nullable: :nulls_last,
distinct: false
),
Gitlab::Pagination::Keyset::ColumnOrderDefinition.new(
attribute_name: :created_at,
order_expression: WorkItem.arel_table[:created_at].asc,
nullable: :not_nullable,
distinct: false
)
])
includes(:child_links).order(keyset_order)
end
2022-07-23 23:45:48 +05:30
end
2022-04-04 11:22:00 +05:30
def noteable_target_type_name
'issue'
end
2022-05-07 20:08:51 +05:30
2022-07-23 23:45:48 +05:30
def widgets
2022-08-13 15:12:31 +05:30
strong_memoize(:widgets) do
work_item_type.widgets.map do |widget_class|
widget_class.new(self)
end
2022-07-23 23:45:48 +05:30
end
end
2023-03-04 22:38:38 +05:30
def ancestors
hierarchy.ancestors(hierarchy_order: :asc)
end
def same_type_base_and_ancestors
hierarchy(same_type: true).base_and_ancestors(hierarchy_order: :asc)
end
def same_type_descendants_depth
hierarchy(same_type: true).max_descendants_depth.to_i
end
2023-04-23 21:23:45 +05:30
def supported_quick_action_commands
commands_for_widgets = work_item_type.widgets.flat_map(&:quick_action_commands).uniq
COMMON_QUICK_ACTIONS_COMMANDS + commands_for_widgets
end
2022-05-07 20:08:51 +05:30
private
2022-08-27 11:52:29 +05:30
override :parent_link_confidentiality
def parent_link_confidentiality
if confidential? && work_item_children.public_only.exists?
2022-10-11 01:57:18 +05:30
errors.add(:base, _('A confidential work item cannot have a parent that already has non-confidential children.'))
2022-08-27 11:52:29 +05:30
end
if !confidential? && work_item_parent&.confidential?
2022-10-11 01:57:18 +05:30
errors.add(:base, _('A non-confidential work item cannot have a confidential parent.'))
2022-08-27 11:52:29 +05:30
end
end
2022-05-07 20:08:51 +05:30
def record_create_action
super
Gitlab::UsageDataCounters::WorkItemActivityUniqueCounter.track_work_item_created_action(author: author)
end
2023-03-04 22:38:38 +05:30
def hierarchy(options = {})
base = self.class.where(id: id)
base = base.where(work_item_type_id: work_item_type_id) if options[:same_type]
::Gitlab::WorkItems::WorkItemHierarchy.new(base, options: options)
end
2022-03-02 08:16:31 +05:30
end
2022-08-27 11:52:29 +05:30
WorkItem.prepend_mod