module Notee::Helpers::NoteeHelper

Public Instance Methods

archive_notees(year, month) click to toggle source
# File lib/notee/helpers/notee_helper.rb, line 27
def archive_notees(year, month)
  if month
    tmp_month = (month.to_s.size != 2 ? "0" : "") + month.to_s
    tmp_date = year.to_s + tmp_month + "01"
    begin_time = Date.parse(tmp_date).beginning_of_month
    end_time = Date.parse(tmp_date).end_of_month
  else
    tmp_date = year.to_s + "0101"
    begin_time = Date.parse(tmp_date).beginning_of_year
    end_time = Date.parse(tmp_date).end_of_year
  end

  @posts = Notee::Post.where(published_at: begin_time..end_time, status: Notee::STATUS[:published], is_deleted: false).order(published_at: :desc)
  @posts
end
category_notees(search_txt) click to toggle source

return

array: [posts (posts belongs_to category related in search_txt)]
# File lib/notee/helpers/notee_helper.rb, line 110
def category_notees(search_txt)
  # search_by_category_slug
  category = Notee::Category.find_by(slug: search_txt)
  category = Notee::Category.find_by(name: search_txt) unless category

  raise ActiveRecord::RecordNotFound unless category
  raise ActiveRecord::RecordNotFound if category.is_deleted

  @posts = recursive_category_family_loop(category, [])
  @posts
end
get_category_posts_count(category) click to toggle source

return

int: how many do category has posts?(recursive)
# File lib/notee/helpers/notee_helper.rb, line 139
def get_category_posts_count(category)
  arr = []
  count = recursive_category_family_loop(category, arr).count()
  count
end
get_parent_categories_arr() click to toggle source

return

array: [Parent Categories]
# File lib/notee/helpers/notee_helper.rb, line 126
def get_parent_categories_arr
  categories = Notee::Category.where(is_private: false, is_deleted: false)
  parent_categories = categories.map do |cate|
    cate if cate.parent_id.nil? || cate.parent_id == 0 # none
  end
  parent_categories.compact!
  parent_categories
end
notee(search_txt) click to toggle source
# File lib/notee/helpers/notee_helper.rb, line 5
def notee(search_txt)
  return false unless search_txt
  post = Notee::Post.find_by(id: search_txt)
  post = Notee::Post.find_by(slug: search_txt) unless post

  raise ActiveRecord::RecordNotFound unless post

  return if post.status == Notee::STATUS[:draft] ||
            post.status == Notee::STATUS[:deleted] ||
            post.status == Notee::STATUS[:privated] ||
            post.is_deleted == true
  post
end
notee_archives() click to toggle source
# File lib/notee/helpers/notee_helper.rb, line 55
def notee_archives
  posts = Notee::Post.select(:published_at).where(status: 1, is_deleted: false).order(created_at: :desc)

  notee_archives = {}
  posts.each do |post|
    month_str = post.published_at.strftime("%Y/%m")
    if notee_archives.has_key?(month_str)
      notee_archives[month_str] = notee_archives[month_str] + 1
    else
      notee_archives.store(month_str, 1)
    end
  end

  notee_archives
  # Notee::Post.find_by_sql("SELECT DATE_FORMAT(published_at, '%Y-%m') as time, count(*) as count FROM notee_posts WHERE status=1 and is_deleted=false GROUP BY DATE_FORMAT(published_at, '%Y-%m') ORDER BY time DESC;")
end
notee_comments(post_id) click to toggle source
# File lib/notee/helpers/notee_helper.rb, line 85
def notee_comments(post_id)
  return if post_id.nil?
  @notee_comments = Notee::Comment.where(post_id: post_id, is_hidden: false, is_deleted: false)
  @notee_comments
end
notee_set_meta_by_post(post) click to toggle source
# File lib/notee/helpers/notee_helper.rb, line 92
def notee_set_meta_by_post(post)
  return {
      title: post.title,
      keyword: post.seo_keyword,
      description: post.seo_description,
      og_image: request.base_url + "/notee/" + post.thumbnail.content
  }
end
notee_writers() click to toggle source
# File lib/notee/helpers/notee_helper.rb, line 73
def notee_writers
  posts = Notee::Post.select(:user_id).where(status: 1, is_deleted: false).order(created_at: :desc)

  notee_writers = []
  posts.each do |post|
    notee_writers.push(post.user) unless notee_writers.include?(post.user)
  end

  notee_writers
end
notees() click to toggle source
# File lib/notee/helpers/notee_helper.rb, line 20
def notees
  @posts = Notee::Post.where(status: Notee::STATUS[:published], is_deleted: false).order(published_at: :desc)
  @posts
end
writer_notees(name_or_id) click to toggle source
# File lib/notee/helpers/notee_helper.rb, line 44
def writer_notees(name_or_id)
  writer = Notee::User.find_by(name: name_or_id)
  writer = Notee::User.find_by(name: name_or_id) unless writer

  raise ActiveRecord::RecordNotFound unless writer
  raise ActiveRecord::RecordNotFound if writer.is_deleted

  @posts = Notee::Post.where(user_id: writer.id, status: Notee::STATUS[:published], is_deleted: false).order(published_at: :desc)
end

Private Instance Methods

get_public_posts(posts) click to toggle source

return

array: public && is_not_deleted posts
# File lib/notee/helpers/notee_helper.rb, line 189
def get_public_posts(posts)

  return false if posts.nil?

  public_posts = posts.map do |post|
    post if post.is_deleted == false && post.status == 1
  end

  public_posts
end
recursive_category_family_loop(category, category_posts) click to toggle source

return

array: category.posts (+ if category has child_category, child_category.posts) <- recursive
# File lib/notee/helpers/notee_helper.rb, line 167
def recursive_category_family_loop(category, category_posts)
  if category.children.present?
    category.children.each do |child_cate|
      if child_cate.is_deleted == false && child_cate.is_private == false
        category_posts = recursive_category_family_loop(child_cate, category_posts)
      end
    end
  end

  category_posts.concat(get_public_posts(category.posts))
  category_posts.compact!
  category_posts
end