Sha256: e5a52455821643cd1c4b14a7d60a27f0111ff1587b7871f3049dd3e33bec5be2
Contents?: true
Size: 1.07 KB
Versions: 4
Compression:
Stored size: 1.07 KB
Contents
# frozen_string_literal: true module Bridgetown class RelatedPosts class << self attr_accessor :lsi end attr_reader :post, :site def initialize(post) @post = post @site = post.site Bridgetown::External.require_with_graceful_fail("classifier-reborn") if site.lsi end def build return [] unless site.posts.docs.size > 1 if site.lsi build_index lsi_related_posts else most_recent_posts end end def build_index self.class.lsi ||= begin lsi = ClassifierReborn::LSI.new(:auto_rebuild => false) Bridgetown.logger.info("Populating LSI...") site.posts.docs.each do |x| lsi.add_item(x) end Bridgetown.logger.info("Rebuilding index...") lsi.build_index Bridgetown.logger.info("") lsi end end def lsi_related_posts self.class.lsi.find_related(post, 11) end def most_recent_posts @most_recent_posts ||= (site.posts.docs.last(11).reverse - [post]).first(10) end end end
Version data entries
4 entries across 4 versions & 1 rubygems