1
0
Fork 0
forked from OpenNeo/impress
impress/app/controllers/closet_pages_controller.rb

68 lines
2.3 KiB
Ruby
Raw Normal View History

2011-07-12 17:51:43 -07:00
class ClosetPagesController < ApplicationController
include ActionView::Helpers::TextHelper
before_filter :authenticate_user!, :build_closet_page
rescue_from ClosetPage::ParseError, :with => :on_parse_error
def create
if params[:closet_page] && params[:closet_page][:source]
@closet_page.source = params[:closet_page][:source]
2011-07-12 21:25:14 -07:00
@index = @closet_page.index
2011-07-12 17:51:43 -07:00
saved_counts = @closet_page.save_hangers!
any_created = saved_counts[:created] > 0
any_updated = saved_counts[:updated] > 0
if any_created || any_updated
message = "Page #{@closet_page.index} saved! We "
message << "added " + pluralize(saved_counts[:created], 'item') + " to your closet" if any_created
message << " and " if any_created && any_updated
message << "updated the count on " + pluralize(saved_counts[:updated], 'item') if any_updated
message << ". "
else
message = "Success! We checked that page, and we already had all this data recorded. "
end
unless @closet_page.unknown_item_names.empty?
message << "We also found " +
pluralize(@closet_page.unknown_item_names.size, 'item') +
" we didn't recognize: " +
@closet_page.unknown_item_names.to_sentence +
". Please put each item on your pet and type its name in on the " +
"home page so we can have a record of it. Thanks! "
end
if @closet_page.last?
message << "That was the last page of your Neopets closet."
destination = user_closet_hangers_path(current_user)
else
2011-07-12 21:25:14 -07:00
message << "Now the frame should contain page #{@closet_page.index + 1}. Paste that source code over, too."
destination = {:action => :new, :index => (@closet_page.index + 1)}
2011-07-12 17:51:43 -07:00
end
flash[:success] = message
redirect_to destination
else
redirect_to :action => :new
end
end
def new
2011-07-12 21:25:14 -07:00
@closet_page.index ||= 1
2011-07-12 17:51:43 -07:00
end
protected
def build_closet_page
@closet_page = ClosetPage.new(current_user)
2011-07-12 21:25:14 -07:00
@closet_page.index = params[:index]
2011-07-12 17:51:43 -07:00
end
def on_parse_error
2011-07-12 21:25:14 -07:00
flash[:alert] = "We had trouble reading your source code. Is it a valid HTML document? Make sure you pasted the computery-looking result of clicking View Frame Source, and not the pretty page itself."
2011-07-12 17:51:43 -07:00
render :action => :new
end
end