Class: Toto::Site

Inherits:
Object show all
Defined in:
lib/toto.rb

Defined Under Namespace

Classes: Context

Instance Method Summary collapse

Constructor Details

#initialize(config) ⇒ Site

Returns a new instance of Site.



56
57
58
# File 'lib/toto.rb', line 56

def initialize config
  @config = config
end

Instance Method Details

#/Object



97
98
99
# File 'lib/toto.rb', line 97

def /
  self[:root]
end

#[](*args) ⇒ Object



60
61
62
# File 'lib/toto.rb', line 60

def [] *args
  @config[*args]
end

#[]=(key, value) ⇒ Object



64
65
66
# File 'lib/toto.rb', line 64

def []= key, value
  @config.set key, value
end

#archives(filter = "") ⇒ Object



82
83
84
85
86
87
88
89
90
91
# File 'lib/toto.rb', line 82

def archives filter = ""
  entries = ! self.articles.empty??
    self.articles.select do |a|
      filter !~ /^\d{4}/ || File.basename(a) =~ /^#{filter}/
    end.reverse.map do |article|
      Article.new article, @config
    end : []

  return :archives => Archives.new(entries, @config)
end

#article(route) ⇒ Object



93
94
95
# File 'lib/toto.rb', line 93

def article route
  Article.new("#{Paths[:articles]}/#{route.join('-')}.#{self[:ext]}", @config).load
end

#go(route, type = :html) ⇒ Object



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/toto.rb', line 101

def go route, type = :html
  route << self./ if route.empty?
  type, path = type =~ /html|xml|json/ ? type.to_sym : :html, route.join('/')
  context = lambda do |data, page|
    Context.new(data, @config, path).render(page, type)
  end

  body, status = if Context.new.respond_to?(:"to_#{type}")
    if route.first =~ /\d{4}/
      case route.size
        when 1..3
          context[archives(route * '-'), :archives]
        when 4
          context[article(route), :article]
        else http 400
      end
    elsif respond_to?(path)
      context[send(path, type), path.to_sym]
    elsif (repo = @config[:github][:repos].grep(/#{path}/).first) &&
          !@config[:github][:user].empty?
      context[Repo.new(repo, @config), :repo]
    else
      context[{}, path.to_sym]
    end
  else
    http 400
  end

rescue Errno::ENOENT => e
  return :body => http(404).first, :type => :html, :status => 404
else
  return :body => body || "", :type => type, :status => status || 200
end

#index(type = :html) ⇒ Object



68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/toto.rb', line 68

def index type = :html
  case type
    when :html
      {:articles => self.articles.reverse.map do |article|
          Article.new article, @config
      end }.merge archives
    when :xml, :json
      return :articles => self.articles.map do |article|
        Article.new article, @config
      end
    else return {}
  end
end