module CamaleonCms class SiteDecorator < CamaleonCms::TermTaxonomyDecorator delegate_all def the_description the_content end # return logo url for this site # default: this url will be returned if logo is not present. def the_logo(default = nil) object.get_option('logo') || (default || h.asset_url('camaleon_cms/camaleon.png').to_s) end def the_icon object.get_option('icon') || h.asset_url('camaleon_cms/favicon.ico') end # return all contents from this site registered for post_type = slug (filter visibility, hidden, expired, ...) # slug_or_id: slug or id of the post_type or array of slugs of post_types, default 'post' def the_contents(slug_or_id = 'post') if slug_or_id.is_a?(Integer) return h.verify_front_visibility(object.posts.where("#{CamaleonCms::TermTaxonomy.table_name}.id = ?", slug_or_id)) end if slug_or_id.is_a?(String) return h.verify_front_visibility(object.posts.where("#{CamaleonCms::TermTaxonomy.table_name}.slug = ?", slug_or_id)) end return unless slug_or_id.is_a?(Array) h.verify_front_visibility(object.posts.where("#{CamaleonCms::TermTaxonomy.table_name}.slug in (?)", slug_or_id)) end # return all contents for this site filteredby (visibility, hidden, expired, ...) # slug_or_id: (slug of the post_type) possible values: # empty: return all posts of the current site # string: return all posts of post_type with slug = slug_or_id # integer: return all posts of post_type with id = slug_or_id # array: return all posts of post_types with slug in slug_or_id def the_posts(slug_or_id = nil) if slug_or_id.present? the_contents(slug_or_id) else h.verify_front_visibility(object.posts) end end # return the post with id or slug equal to slug_or_id # slug_or_id: (String) for post slug # slug_or_id: (Integer) for post id # slug_or_id: (Array) array of post ids, return multiple posts # return post model or nil def the_post(slug_or_id) if slug_or_id.is_a?(Integer) post = begin the_posts.find(slug_or_id) rescue StandardError nil end end if slug_or_id.is_a?(Array) post = begin the_posts.find(slug_or_id) rescue StandardError nil end end post = the_posts.find_by_slug(slug_or_id) if slug_or_id.is_a?(String) # id post.present? ? post.decorate : nil end # return a collection of categories # Arguments: # slug_or_id: string or integer # return: # slug_or_id: nil => return all main_categories for this site # slug_or_id: integer => return all main categories of the post_type with id = slug_or_id # slug_or_id: string => return all main categories of the post_type with slug = slug_or_id def the_categories(slug_or_id = nil) return the_post_type(slug_or_id).the_categories if slug_or_id.present? return object.categories unless slug_or_id.present? end # return the category object with id or slug = slug_or_id from this site def the_category(slug_or_id) if slug_or_id.is_a?(Integer) begin return the_full_categories.where(id: slug_or_id).first.decorate rescue StandardError nil end end return unless slug_or_id.is_a?(String) begin the_full_categories.find_by_slug(slug_or_id).decorate rescue StandardError nil end end # return all categories for ths site (include all children categories) def the_full_categories object.full_categories end # return all post tags for ths site def the_tags object.post_tags end # return the post_tag object with id or slug = slug_or_id from this site # sample: current_site.the_tag('test').the_url # sample2: current_site.the_tag('test').the_posts def the_tag(slug_or_id) if slug_or_id.is_a?(Integer) begin return object.post_tags.where(id: slug_or_id).first.decorate rescue StandardError nil end end return unless slug_or_id.is_a?(String) begin object.post_tags.find_by_slug(slug_or_id).decorate rescue StandardError nil end end # return the user object with id or username = id_or_username from this site def the_user(id_or_username) if id_or_username.is_a?(Integer) begin return object.users.where(id: id_or_username).first.decorate rescue StandardError nil end end return unless id_or_username.is_a?(String) begin object.users.find_by_username(id_or_username).decorate rescue StandardError nil end end # return all post types for this site def the_post_types object.post_types end # return a post_type object with id or slug = slug_or_id # Arguments: # slug_or_id: string or integer # return: # slug_or_id: integer => return the post type with id = slug_or_id # slug_or_id: string => return the post type with slug = slug_or_id # slug_or_id: array => return all post types with slugs in the array of this site def the_post_type(slug_or_id) if slug_or_id.is_a?(String) begin return object.post_types.find_by_slug(slug_or_id).decorate rescue StandardError nil end end if slug_or_id.is_a?(Array) begin return object.post_types.find_by_slug(slug_or_id).decorate rescue StandardError nil end end return unless slug_or_id.is_a?(Integer) begin object.post_types.find(slug_or_id).decorate rescue StandardError nil end end # draw languages configured for this site # list_class: (String) Custom css classes for ul list # current_page: (boolean) true: link with translation to current url, false: link with translation to root url # block permit to render custom link label, default: flag icon def draw_languages(list_class = 'language_list list-inline pull-right', current_page = false, current_class = 'current_l', &block) lan = object.get_languages return if lan.size < 2 res = ["