-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.rb
248 lines (165 loc) · 6.1 KB
/
app.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
#encoding: UTF-8
require 'rubygems'
require 'sinatra'
require 'sinatra/content_for'
require 'sinatra/static_assets'
require 'sinatra/r18n'
require 'sequel'
require 'logger'
## for additional features uncomment and add to Gemfile
#require 'pony'
#require 'rmagick'
#require 'fileutils'
configure do
# LANGUAGES = ['es','en','fr','de','ru']
end
# TO DO: develop, minify, and uncomment below line
# set :views, Proc.new { File.join(root, "views-minified") }
use Rack::Session::Cookie, :key => 'rack.session', :path => '/', :expire_after => 2592000, :secret => '9234fjasd95ga0e9h03fgks9-dsa439sd'
Sequel::Model.plugin(:schema)
#DB = Sequel.connect('sqlite://db/discover.sqlite')
DB = Sequel.connect('sqlite://db/db.sqlite',:logger => Logger.new('db.log'))
require './models/model_example.rb'
DEFAULT_LOCALE = 'en'
before do
#params[:locale] = 'es' if params[:locale].nil?
#session[:locale] = params[:locale] if params[:locale]
#content_type :html, 'charset' => 'utf-8'
#redirect request.url.sub(/www\./, ''), 301 if request.host =~ /^www/
def locale_valid?
result = false
LOCALES.each do |loc|
result = loc == params[:locale] || result
end
result
end
def set_locale
@locale = DEFAULT_LOCALE unless locale_valid?
end
end
helpers do
def cookies_message
result = ''
# if session[:allowGoogleAnalytics].nil?
# result = "<div class=\"breadcrumb\" id=\"cookies-message\"> <p></a>.</p> Aceptar. </div>"
# session[:allowGoogleAnalytics] = 'message show'
# elsif session[:allowGoogleAnalytics] == 'message show'
# session[:allowGoogleAnalytics] = 'allow'
# end
return result
end
# def allowGoogleAnalytics?
# return session[:allowGoogleAnalytics] ? true : false ;
# end
def google_analytics_code
result = ''
if session[:allowGoogleAnalytics] == 'allow'
result = "<script type=\"text/javascript\">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>"
end
result
end
end
##############################################################################
##############################################################################
########################### BACKEND ########################
##############################################################################
##############################################################################
["/es/admin/", "/en/admin"].each do |path|
get path do
if User.authentication_by_remember_token?(session[:token],['admin','photo'])
@current_user = User.find(:remember_token => session[:token])
# erb :admin_dashboard, :layout => :layout_backend
# return "User.authentication_by_remember_token?(session[:token],['admin','photo']) = true"
redirect "/admin/dashboard"
else
#flash[:notice] = ""
erb :admin_login, :layout => :layout_login
end
end
end
##############################################################################
##############################################################################
########################### FRONTEND ########################
##############################################################################
##############################################################################
get '/' do
redirect "/es/"
end
["/:locale/", "/:locale/"].each do |path|
get path do
@html_title = t.pages.index.title
@current_page = :index
#example of use model from db
@model = ModelExample.find(:id => 1) || []
@model_2 = ModelExample.find(:title_es => 'primer articulo') || []
@models = DB[:model_examples]
# example of use session
session[:notice] = "notice message"
session[:warning] = "notice warning"
session[:notice] = nil
session[:warning] = nil
# if want specify another layout file
# erb :index, :layout => :layout
erb :index
end
end
##############################################################################
##############################################################################
########################### SITEMAP & 404 ########################
##############################################################################
##############################################################################
["/:locale/sitemap.xml", "/:locale/sitemap.xml"].each do |path|
get path do
@pages_es = [
{ :url => "#{params[:locale]}/", :lastmod => '2013-06-15'},
{ :url => "#{params[:locale]}/pagina-no-encontrada", :lastmod => '2013-06-15'}
]
@pages_en = [
{ :url => "#{params[:locale]}/", :lastmod => '2013-06-15'},
{ :url => "#{params[:locale]}/page-not-found", :lastmod => '2013-06-15'}
]
@pages = (params[:locale] == 'en' ? @pages_en : @pages_es ;)
content_type 'xml'
builder do |xml|
xml.instruct!
xml.urlset "xmlns" => "http://www.sitemaps.org/schemas/sitemap/0.9" do
xml.url do
# TODO: change your domain
xml.loc "http://yourdomain.com/es/"
xml.priority 1.0
end
@pages.each do |p|
xml.url do
xml.loc "http://#{request.host}/#{p[:url]}"
#xml.lastmod Time.parse("#{p[:lastmod]}").utc.strftime("%Y-%m-%d")
xml.changefreq "monthly"
xml.priority 0.1
end
end
end
end
end
end
["/:en/page-not-found", "/:es/pagina-no-encontrada"].each do |path|
get path do
erb :'404'
end
end
##############################################################################
##############################################################################
########################### REST API ########################
##############################################################################
##############################################################################
get "/api/login" do
end
get "/api/logout" do
end