Class: SpreeWordsmith::Engine

Inherits:
Rails::Engine
  • Object
show all
Defined in:
lib/spree_wordsmith.rb

Class Method Summary collapse

Class Method Details

.activateObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/spree_wordsmith.rb', line 11

def self.activate
  Dir.glob(File.join(File.dirname(__FILE__), "../app/**/*_decorator*.rb")) do |c|
    Rails.env.production? ? require(c) : load(c)
  end

  if config = WORDSMITH_CONFIG[Rails.env.to_sym]
    disqus_config = config[:disqus]
    Disqus::defaults[:account], Disqus::defaults[:api_key], Disqus::defaults[:developer] =
      disqus_config[:account], disqus_config[:api_key], disqus_config[:developer] if disqus_config && !disqus_config[:disable]
  end

  # Add your extension tab to the admin.
  # Requires that you have defined an admin controller:
  # app/controllers/admin/yourextension_controller
  # and that you mapped your admin in config/routes

  # make your helper avaliable in all views
  Spree::BaseController.class_eval do
    helper WordsmithHelper

    before_filter :render_page_if_exists

    def render_page_if_exists
      # Using request.path allows us to override dynamic pages including
      # the home page, product and taxon pages. params[:path] is only good
      # for requests that get as far as content_controller. params[:path]
      # query left in for backwards compatibility for slugs that don't start
      # with a slash.
      @page = Page.publish.find_by_permalink(params[:path]) if params[:path]
      @page = Page.publish.find_by_permalink(request.path) unless @page
      render :template => 'content/show' if @page
    end      

    # # Returns post.title for use in the <title> element. 
    # def title_with_wordsmith_post_check
    #   return "#{@post.title} - #{Spree::Config[:site_name]}" if @post && [email protected]?
    #   title_without_wordsmith_post_check
    # end
    # alias_method_chain :title, :wordsmith_post_check
  end

  AppConfiguration.class_eval do
    preference :wordsmith_permalink, :string, :default => 'blog'
    preference :wordsmith_posts_per_page, :integer, :default => 5
    preference :wordsmith_posts_recent, :integer, :default => 15
    preference :wordsmith_post_comment_default, :integer, :default => 1
    preference :wordsmith_post_status_default, :integer, :default => 0
    preference :wordsmith_page_status_default, :integer, :default => 0
    preference :wordsmith_page_comment_default, :integer, :default => 0
    preference :wordsmith_rss_description, :string, :default => 'description about your main post rss.'
  end  

  User.class_eval do
    has_many :ws_items

    attr_accessible :display_name
  end
end