| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- module Docs
- class Doc
- INDEX_FILENAME = 'index.json'
- DB_FILENAME = 'db.json'
- class << self
- attr_accessor :name, :slug, :type, :version, :abstract, :home_url
- def inherited(subclass)
- subclass.type = type
- end
- def name
- @name || super.try(:demodulize)
- end
- def slug
- @slug || name.try(:downcase)
- end
- def path
- slug
- end
- def index_path
- File.join path, INDEX_FILENAME
- end
- def db_path
- File.join path, DB_FILENAME
- end
- def as_json
- { name: name,
- slug: slug,
- type: type,
- version: version,
- index_path: index_path,
- db_path: db_path }
- end
- def store_page(store, id)
- store.open(path) do
- if page = new.build_page(id) and store_page?(page)
- store.write page[:store_path], page[:output]
- true
- else
- false
- end
- end
- end
- def store_pages(store)
- index = EntryIndex.new
- pages = PageDb.new
- store.replace(path) do
- new.build_pages do |page|
- next unless store_page?(page)
- store.write page[:store_path], page[:output]
- index.add page[:entries]
- pages.add page[:path], page[:output]
- end
- if index.present?
- store.write INDEX_FILENAME, index.to_json
- store.write DB_FILENAME, pages.to_json
- true
- else
- false
- end
- end
- end
- private
- def store_page?(page)
- page[:entries].present?
- end
- end
- def initialize
- raise NotImplementedError, "#{self.class} is an abstract class and cannot be instantiated." if self.class.abstract
- end
- def build_page(id, &block)
- raise NotImplementedError
- end
- def build_pages(&block)
- raise NotImplementedError
- end
- end
- end
|