trugul-bot/app.rb

33 lines
791 B
Ruby
Raw Normal View History

2015-04-15 11:00:32 -04:00
require './environments'
set :public_folder, 'public'
2015-04-23 14:46:51 -04:00
# CONTROLLER
2015-04-15 11:00:32 -04:00
get '/' do
2015-04-26 09:42:23 -04:00
@raids = Raid.order('created_at DESC').page(params[:page])
2015-04-25 13:17:47 -04:00
leaders = Leader.all
last_update = leaders.first ? leaders.first.created_at : DateTime.new(0)
2015-04-26 11:42:19 -04:00
if last_update + 300 < DateTime.now
rebuild_leaders
2015-04-23 16:09:59 -04:00
end
2015-04-26 11:42:19 -04:00
leaders = Leader.all.includes(:last_attack, :last_defense)
@top20 = leaders.reject { |l| l.last_action } + leaders.select { |l| l.last_action }.sort_by { |l| l.last_action }.reverse
2015-04-23 16:57:54 -04:00
2015-04-15 11:00:32 -04:00
erb :index
end
post '/' do
response['Access-Control-Allow-Origin'] = 'http://trugul.com'
@raid = Raid.new(params[:raid])
if @raid.save
content_type :json
{ :message => 'Raid saved' }.to_json
else
content_type :json
{ :message => 'Raid failed to save' }.to_json
end
end