forked from sNKS/rhodes-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docs.rb
181 lines (149 loc) · 3.94 KB
/
docs.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
98
99
100
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
require 'rubygems'
require 'sinatra'
require 'haml'
require 'sass'
require 'indextank'
require 'pdfkit'
require './topic'
# unless development?
# require 'rhomobile/nav'
# use Rhomobile::Nav::Base, {
# :nav_host => "#{AppConfig['rhonav_host']}/#{ENV["RACK_ENV"]}",
# :blog => true, :subscribe => false, :support => false, :footer => false #footer true/false if you (or don't) want render the footer
# }
# end
unless development?
PDFKit.configure do |config|
config.wkhtmltopdf = File.expand_path(File.join( File.dirname(__FILE__), 'bin', 'wkhtmltopdf-amd64')).to_s
#config.wkhtmltopdf = '/usr/local/bin/wkhtmltopdf'
end
end
require 'coderay'
require './lib/term.rb'
require 'rack/codehighlighter'
require './pdfmaker'
use PdfMaker
use Rack::Codehighlighter, :coderay, :markdown => true, :element => "pre>code",
:pattern => /\A:::(\w+)\s*(\n|
)/i, :logging => false
$LOAD_PATH << File.dirname(__FILE__) + '/lib'
set :app_file, __FILE__
not_found do
erb :not_found
end
['/', '/home'].each do |path|
get path do
@print = 0
cache_long
haml :index
end
end
get '/print/home' do
@print = 1
cache_long
haml :index
end
get '/search' do
@print = 0
page = params[:page].to_i
search, prev_page, next_page = search_for(params[:q], page)
erb :search, :locals => {:search => search, :query => params[:q], :prev_page => prev_page, :next_page => next_page}
end
get '/css/docs.css' do
cache_long
content_type 'text/css'
erb :css, :layout => false
end
#get '/:topic' do
# TODO: use proper regex
['/:topic/?', '/:subpath/:topic/?'].each do |path|
get path do
cache_long
# If the topic ends in ".pdf" or ".print", tell render_topic to use the print view
if params[:topic] =~ /(\.pdf|\.print)$/
newtopic = params[:topic].gsub(/(\.pdf|\.print)/,"")
render_topic newtopic, params[:subpath], 1
else
render_topic params[:topic], params[:subpath], 0
end
end
end
helpers do
def render_topic(topic, subpath = nil, print = 0)
source = File.read(topic_file(topic, subpath))
@topic = Topic.load(topic, source)
@title = @topic.title
@content = @topic.content
@intro = @topic.intro
@toc = @topic.toc
@body = @topic.body
@print = print
erb :topic
rescue Errno::ENOENT
status 404
end
def search_for(query, page = 0)
client = IndexTank::Client.new(ENV['HEROKUTANK_API_URL'])
index = client.indexes(AppConfig['index'])
search = index.search(query, :start => page * 10, :len => 10, :fetch => 'title', :snippet => 'text')
next_page =
if search and search['matches'] and search['matches'] > (page + 1) * 10
page + 1
end
prev_page =
if page > 0
page - 1
end
[search, prev_page, next_page]
end
def topic_file(topic, subpath = nil)
if topic.include?('/')
topic
elsif subpath
File.join(AppConfig['dirs'][subpath], "#{topic}.txt")
else
"#{options.root}/docs/#{topic}.txt"
end
end
def topic_path
params[:subpath] ? [params[:subpath],params[:topic]].join('/') : params[:topic]
end
def cache_long
response['Cache-Control'] = "public, max-age=#{60 * 60}" unless development?
end
def slugify(title)
title.downcase.gsub(/[^a-z0-9 -]/, '').gsub(/ /, '-')
end
def sections
TOC.sections
end
def next_section(current_slug, root=sections)
return sections.first if current_slug.nil?
root.each_with_index do |(slug, title, topics), i|
if current_slug == slug and i < root.length-1
return root[i+1]
elsif topics.any?
res = next_section(current_slug, topics)
return res if res
end
end
nil
end
alias_method :h, :escape_html
end
module TOC
extend self
def sections
@sections ||= []
end
# define a section
def section(name, title)
sections << [name, title, []]
yield if block_given?
end
# define a topic
def topic(name, title)
sections.last.last << [name, title, []]
end
file = File.dirname(__FILE__) + '/toc.rb'
eval File.read(file), binding, file
end