-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.rb
154 lines (126 loc) · 3.69 KB
/
main.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
require 'rubygems'
require 'sinatra'
require 'haml'
require 'sequel'
use Rack::Session::Cookie
gem 'rack-openid'
require 'rack/openid'
gem 'subbarao-sinatra-openid'
require 'sinatra/openid'
set :admin_urls,%w( http://subbarao.myopenid.com https://www.google.com/accounts/o8/id?id=AItOawnirNfFI5-V0JRLstjKOB3VQWAOOogO-Ig https://www.google.com/accounts/o8/id?id=AItOawnKufG7OyHkY96KYMdrXNeimhdeTbuFx0c )
use Rack::OpenID
configure do
require 'ostruct'
Blog = OpenStruct.new( { :identity_url => 'http://subbarao.myopenid.com/',
:title => "RuBy JavAsCriPt RaCk rAIls SinAtRa",
:header => "Learning grows on.......",
:url_base => "http://subbarao.me/",
:disqus_shortname => nil,
:admin_cookie_key => "scanty_admin",
:admin_cookie_value => "51d6d976913ace58",
:admin => nil
} )
DB = Sequel.connect(ENV['DATABASE_URL']||"sqlite://blog.db")
unless DB.table_exists?(:posts)
DB.create_table :posts do
primary_key :id
text :title
text :body
text :slug
text :tags
boolean :published, :default => false
timestamp :created_at
end #create_table
end
end
error do
e = request.env['sinatra.error']
puts e.to_s
puts e.backtrace.join("\n")
"Application error"
end
$LOAD_PATH.unshift(File.dirname(__FILE__) + '/lib')
require 'post'
helpers do
def partial(page, options={})
haml page, options.merge!(:layout => false)
end
def tags
unless @tags.nil?
list = @tags.inject("<span>") do |html, t|
html << "<a href='/past/tags/#{t}'>#{t}</a> "
end
"#{list}</span>"
end
end
end
layout 'layout'
### Public
get '/' do
@tags = Post.tags
posts = Post.published_posts.reverse_order(:created_at).limit(10)
haml :index, :locals => { :posts => posts }
end
get '/drafts' do
@tags = Post.tags
posts = Post.filter(:published => false).reverse_order(:created_at).limit(10)
haml :index, :locals => { :posts => posts }
end
get '/past/:year/:month/:day/:slug/' do
post = Post.filter(:slug => params[:slug]).first
stop [ 404, "Page not found" ] unless post
@title = post.title
haml :post, :locals => { :post => post }
end
get '/past/:year/:month/:day/:slug' do
redirect "/past/#{params[:year]}/#{params[:month]}/#{params[:day]}/#{params[:slug]}/", 301
end
get '/past' do
posts = Post.published_posts.reverse_order(:created_at)
@title = "Archive"
haml :archive, :locals => { :posts => posts }
end
get '/past/tags/:tag' do
tag = params[:tag]
posts = Post.published_posts.filter(:tags.like("%#{tag}%")).reverse_order(:created_at).limit(30)
@title = "Posts tagged #{tag}"
haml :tagged, :locals => { :posts => posts, :tag => tag }
end
get '/feed' do
@posts = Post.published_posts.reverse_order(:created_at).limit(10)
content_type 'application/atom+xml', :charset => 'utf-8'
builder :feed
end
get '/rss' do
redirect '/feed', 301
end
get '/blog/feed.rss' do
redirect '/feed', 301
end
### Admin
get '/posts/new' do
authorize!
haml :edit, :locals => { :post => Post.new, :url => '/posts' }
end
post '/posts' do
authorize!
post = Post.new :title => params[:title], :tags => params[:tags], :body => params[:body], :created_at => Time.now, :slug => Post.make_slug(params[:title])
post.save
redirect post.url
end
get '/past/:year/:month/:day/:slug/edit' do
authorize!
post = Post.filter(:slug => params[:slug]).first
stop [ 404, "Page not found" ] unless post
haml :edit, :locals => { :post => post, :url => post.url }
end
post '/past/:year/:month/:day/:slug/' do
authorize!
post = Post.filter(:slug => params[:slug]).first
stop [ 404, "Page not found" ] unless post
post.title = params[:title]
post.tags = params[:tags]
post.body = params[:body]
post.save
redirect post.url
end