-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.rb
225 lines (191 loc) · 4.75 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
require './models.rb'
#############################
####### Configuration #######
#############################
# Sinatra Configuration
configure do
disable :run
set :haml, {:format => :html5}
enable :sessions
end
#############################
########### Pages ###########
#############################
# Stylesheet
get '/style.css' do
scss :style
end
# Index
get '/' do
@jobs = Job.where(:approved => true).sort(:created_at.desc)
haml :index
end
# Show
get '/job/:id' do
@job = Job.find(params[:id])
haml :show
end
# Post A Job
get '/post-job' do
haml :post_job
end
# Subscribe
get '/subscribe' do
haml :subscribe
end
# Unsubscribe
get '/unsubscribe' do
haml :unsubscribe
end
# About
get '/about' do
haml :about
end
#############################
########## Actions ##########
#############################
# Subscribe
post '/new-subscriber' do
subscriber = Subscriber.new(
:email => params[:email]
)
subscriber.save! if subscriber
end
# Unsubscribe Action
post '/unsubscribe' do
subscriber = Subscriber.first(:email => params[:email])
subscriber.destroy if subscriber
end
# Create a job
post '/create-job' do
if params[:badger].empty?
job = Job.new(
:position => params[:position],
:company => params[:company],
:job_type => params[:job_type],
:location => params[:location],
:url => "http://" + params[:url],
:email => params[:email],
:description => params[:description],
:approved => false
)
job.save! if job
# Text us if this is production
if ENV['ENV'] == 'prod'
# Twillio Configuration
account_sid = ENV['TWILIO_ACCOUNT_SID']
auth_token = ENV['TWILIO_AUTH_TOKEN']
# set up a client to talk to the Twilio REST API
@client = Twilio::REST::Client.new account_sid, auth_token
# text chase
@client.account.sms.messages.create(
:from => ENV['TWILIO_FROM_NUMBER'],
:to => ENV['LEE'],
:body => "#{params[:company]} just posted a job!"
)
end
# Email them
mail = Mail.new do
from '[email protected]'
to job.email
subject 'Got your job'
body "Thanks for posting to H&H! We'll review your job ASAP and get back to you."
delivery_method Mail::Postmark, :api_key => ENV['POSTMARK_KEY']
end
mail.deliver
end
end
#############################
########### Admin ###########
#############################
# admin login screen
get '/admin/login' do
haml :admin_login
end
# admin authenticate
post '/admin/auth' do
if params[:password] == ENV['ADMIN_PW']
session[:value] = 'admin'
redirect to('/admin')
else
"Fail"
end
end
# admin index
get '/admin' do
if session[:value] == 'admin'
@pending_jobs = Job.where(:approved => false).sort(:created_at.desc)
@approved_jobs = Job.where(:approved => true).sort(:created_at.desc)
@subscribers = Subscriber.all(:order => :created_at.desc)
haml :admin
else
redirect to('/admin/login')
end
end
# categorize a job
post '/categorize-job' do
if session[:value] == 'admin'
@job = Job.find(params[:id])
@job.set(:job_type => params[:job_type])
redirect to('/admin')
else
redirect to('/admin/login')
end
end
# Edit Job Page
get '/admin/edit/:id' do
@job = Job.find(params[:id])
haml :edit
end
# Update A Job
post '/admin/edit-job' do
if session[:value] == 'admin'
@job = Job.find(params[:id])
@job.set(
:position => params[:position],
:company => params[:company],
:job_type => params[:job_type],
:location => params[:location],
:url => "http://" + params[:url],
:email => params[:email],
:description => params[:description]
)
redirect to("/admin")
end
end
# approve a job
get '/approve-job' do
if session[:value] == 'admin'
# approve it
@approved_job = Job.find(params[:id])
@approved_job.set(:approved => true)
# Email them
mail = Mail.new do
from '[email protected]'
end
mail.to = @approved_job.email
mail.subject = 'Your job is live!'
mail.body = "Check it out: http://hackersandhustlers.org/job/#{@approved_job.id} \n\nLet us know if we should change anything! It will be up for 30 days."
mail.delivery_method(Mail::Postmark, :api_key => ENV['POSTMARK_KEY'])
mail.deliver
redirect to("/job/#{@approved_job.id}")
else
redirect to('/admin/login')
end
end
# deny a job
get '/deny/:id' do
if session[:value] == 'admin'
@denied_job = Job.find(params[:id])
@denied_job.destroy
redirect to('/admin')
else
redirect to('/admin/login')
end
end
##### API #####
get '/api/0.1/jobs.json' do
content_type :json
@jobs = Job.where(:approved => true).sort(:created_at.desc)
return @jobs.to_json
end