-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.rb
93 lines (76 loc) · 2.12 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
# frozen_string_literal: true
begin
require_relative '.env.rb'
rescue LoadError
$stderr.warn 'No environment file.'
end
require 'roda'
Dir['./lib/helpers/*.rb'].sort.each { |file| require file }
# :nodoc:
class App < Roda
include WebpackHelper
plugin :default_headers,
'Content-Type' => 'text/html',
'X-Frame-Options' => 'deny',
'X-Content-Type-Options' => 'nosniff',
'X-XSS-Protection' => '1; mode=block'
plugin :content_security_policy do |csp|
csp.default_src :none
csp.style_src :self, 'https://maxcdn.bootstrapcdn.com'
csp.form_action :self
csp.script_src :self
csp.connect_src :self
csp.base_uri :none
csp.frame_ancestors :none
end
plugin :route_csrf
plugin :flash
plugin :assets, css: 'app.scss', css_opts: { style: :compressed, cache: false }, timestamp_paths: true
plugin :render, escape: true, layout: './layout'
plugin :view_options
plugin :public
plugin :hash_routes
logger = if ENV['RACK_ENV'] == 'test'
Class.new { def write(_) end }.new
else
$stderr
end
plugin :common_logger, logger
plugin :not_found do
@page_title = 'File Not Found'
view(content: '')
end
if ENV['RACK_ENV'] == 'development'
plugin :exception_page
# :nodoc:
class RodaRequest
def assets
exception_page_assets
super
end
end
end
plugin :error_handler do |e|
case e
when Roda::RodaPlugins::RouteCsrf::InvalidToken
@page_title = 'Invalid Security Token'
response.status = 400
view(content: '<p>An invalid security token was submitted with this request, and this request could not be processed.</p>')
else
$stderr.print "#{e.class}: #{e.message}\n"
$stderr.puts e.backtrace
next exception_page(e, assets: true) if ENV['RACK_ENV'] == 'development'
@page_title = 'Internal Server Error'
view(content: '')
end
end
plugin :sessions,
key: '_App.session',
secret: ENV.send((ENV['RACK_ENV'] == 'development' ? :[] : :delete), 'APP_SESSION_SECRET')
route do |r|
r.public
r.root do
view :root
end
end
end