-
Notifications
You must be signed in to change notification settings - Fork 0
/
extends.rb
97 lines (86 loc) · 2.58 KB
/
extends.rb
1
2
3
4
5
6
7
8
9
10
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# encoding: utf-8
module Toto
class Article < Hash
include Template
def tags
self[:tags].to_s.strip.empty? ? ["others"] : self[:tags].split(" ")
end
def category
self[:category] || "others"
end
end
class Tags < Array
include Template
def initialize articles, config
self.replace articles
@config = config
end
def to_html
super(:tags, @config)
end
end
class Site
def initialize config
@config = config
entries = ! self.articles.empty? ?
self.articles.reverse.map do |article|
Article.new article, @config
end : []
@config[:tags]=[]
entries.each do |entry|
entry.tags.each{|tag| @config[:tags] << tag}
end
@config[:tags].sort!
end
def tags type = :html
return :tags => Tags.new(@config[:tags], @config)
end
def tag (name, type = :html)
tag= @config[:tags][name.to_i]? @config[:tags][name.to_i] : "others"
entries = ! self.articles.empty??
self.articles.select do |a|
Article.new(a, @config).tags.include?(tag)
#Article.new(a,@config)
end.reverse.map do |article|
Article.new article, @config
end : []
return :archives => Archives.new(entries, @config)
#return :tags => Tags.new(["we","gggg", name], @config)
end
def go route, env = {}, 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, env).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)
#http route.size
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]
elsif respond_to?(route.first)
#http route.size
context[send(route[0], route[1], type), route.first.to_sym]
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
end
end