# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/ class KnowledgeBase::Answer::Translation < ApplicationModel include HasAgentAllowedParams include HasLinks include HasSearchIndexBackend include KnowledgeBase::Search include KnowledgeBase::HasUniqueTitle AGENT_ALLOWED_ATTRIBUTES = %i[title kb_locale_id].freeze AGENT_ALLOWED_NESTED_RELATIONS = %i[content].freeze belongs_to :kb_locale, class_name: 'KnowledgeBase::Locale', inverse_of: :answer_translations belongs_to :answer, class_name: 'KnowledgeBase::Answer', inverse_of: :translations, touch: true belongs_to :created_by, class_name: 'User' belongs_to :updated_by, class_name: 'User' belongs_to :content, class_name: 'KnowledgeBase::Answer::Translation::Content', inverse_of: :translation, dependent: :destroy accepts_nested_attributes_for :content, update_only: true validates :title, presence: true, length: { maximum: 250 } validates :content, presence: true validates :kb_locale_id, uniqueness: { case_sensitive: true, scope: :answer_id } scope :neighbours_of, ->(translation) { joins(:answer).where(knowledge_base_answers: { category_id: translation.answer&.category_id }) } alias assets_essential assets def attributes_with_association_ids key = "#{self.class}::aws::#{id}" cache = Cache.read(key) return cache if cache attrs = super attrs[:linked_references] = linked_references Cache.write(key, attrs) attrs end def assets(data = {}) return data if assets_added_to?(data) data = super(data) data = Link.reduce_assets(data, linked_references) answer.assets(data) ApplicationModel::CanAssets.reduce inline_linked_objects, data end def to_param [answer_id, title.parameterize].join('-') end def search_index_attribute_lookup(include_references: true) attrs = super attrs.merge({ title: ActionController::Base.helpers.strip_tags(attrs['title']), content: content&.search_index_attribute_lookup, scope_id: answer.category_id, attachment: answer.attachments_for_search_index_attribute_lookup, tags: answer.tag_list }) end def linked_references Link.list(link_object: self.class.name, link_object_value: id) end def inline_linked_objects output = [] scrubber = Loofah::Scrubber.new do |node| next if node.name != 'a' next if !node.key? 'data-target-type' case node['data-target-type'] when 'knowledge-base-answer' if (translation = KnowledgeBase::Answer::Translation.find_by(id: node['data-target-id'])) output.push translation end end end Loofah.scrub_fragment(content.body, scrubber) output end class << self def search_preferences(current_user) return false if !KnowledgeBase.exists? || !current_user.permissions?('knowledge_base.*') { prio: 1209, direct_search_index: false, } end def search_es_filter(es_response, _query, kb_locales, options) return es_response if options[:user]&.permissions?('knowledge_base.editor') answer_translations_id = es_response.pluck(:id) allowed_answer_translation_ids = KnowledgeBase::Answer .internal .joins(:translations) .where(knowledge_base_answer_translations: { id: answer_translations_id, kb_locale_id: kb_locales.map(&:id) }) .pluck('knowledge_base_answer_translations.id') es_response.filter { |elem| allowed_answer_translation_ids.include? elem[:id].to_i } end def search_fallback(query, scope = nil, options: {}) fields = %w[title] fields << KnowledgeBase::Answer::Translation::Content.arel_table[:body] output = where_or_cis(fields, query) .joins(:content) if !options[:user]&.permissions?('knowledge_base.editor') answer_ids = KnowledgeBase::Answer.internal.pluck(:id) output = output.where(answer_id: answer_ids) end if scope.present? output = output .joins(:answer) .where(knowledge_base_answers: { category_id: scope }) end output end end end