noesya/osuny

View on GitHub
app/models/communication/website/agenda/category/localization.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
86%
# == Schema Information
#
# Table name: communication_website_agenda_category_localizations
#
#  id                       :uuid             not null, primary key
#  featured_image_alt       :string
#  featured_image_credit    :text
#  meta_description         :text
#  name                     :string
#  path                     :string
#  slug                     :string           indexed
#  summary                  :text
#  created_at               :datetime         not null
#  updated_at               :datetime         not null
#  about_id                 :uuid             indexed
#  communication_website_id :uuid             not null, indexed
#  language_id              :uuid             indexed
#  university_id            :uuid             indexed
#
# Indexes
#
#  idx_on_about_id_012efb471f                  (about_id)
#  idx_on_communication_website_id_2eaea4d96e  (communication_website_id)
#  idx_on_language_id_8542c3d2f9               (language_id)
#  idx_on_slug_55ae2c29d7                      (slug)
#  idx_on_university_id_934ff72e5e             (university_id)
#
# Foreign Keys
#
#  fk_rails_238c80122e  (language_id => languages.id)
#  fk_rails_4adca7760a  (communication_website_id => communication_websites.id)
#  fk_rails_622a67bc3b  (university_id => universities.id)
#  fk_rails_b8a90413e8  (about_id => communication_website_agenda_categories.id)
#
class Communication::Website::Agenda::Category::Localization < ApplicationRecord
  include AsLocalization
  include AsLocalizedTree
  include Contentful
  include Initials
  include Permalinkable
  include Sanitizable
  include WithBlobs
  include WithFeaturedImage
  include WithGitFiles
  include WithUniversity

  belongs_to :website,
              class_name: 'Communication::Website',
              foreign_key: :communication_website_id

  has_summernote :summary

  validates :name, presence: true
  before_validation :set_communication_website_id, on: :create

  def git_path(website)
    prefix = git_path_content_prefix(website)
    slugs = slug_with_ancestors_slugs(separator: '-')
    "#{prefix}events_categories/#{slugs}/_index.html"
  end

  def template_static
    "admin/communication/websites/agenda/categories/static"
  end

  def dependencies
    active_storage_blobs +
    contents_dependencies
  end

  def to_s
    "#{name}"
  end

  protected

  def slug_unavailable?(slug)
    self.class
        .unscoped
        .where(
          communication_website_id: self.communication_website_id,
          language_id: language_id,
          slug: slug
        )
        .where.not(id: self.id)
        .exists?
  end

  def explicit_blob_ids
    super.concat [featured_image&.blob_id]
  end

  def inherited_blob_ids
    [featured_image&.blob_id]
  end

  def set_communication_website_id
    self.communication_website_id ||= about.communication_website_id
  end

  # TODO : Pertinent ?
  def hugo_slug_in_website(website)
    slug_with_ancestors_slugs(separator: '-')
  end
end