Merge branch 'import_gallery'
This commit is contained in:
commit
eeb00e0ccf
17 changed files with 519 additions and 394 deletions
|
@ -14,7 +14,7 @@
|
||||||
@import closet_hangers/petpage
|
@import closet_hangers/petpage
|
||||||
@import closet_lists/form
|
@import closet_lists/form
|
||||||
@import donations/show
|
@import donations/show
|
||||||
@import neopets_pages/new
|
@import neopets_page_import_tasks/new
|
||||||
@import neopets_users/form
|
@import neopets_users/form
|
||||||
@import contributions/index
|
@import contributions/index
|
||||||
@import items
|
@import items
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
body.neopets_pages-new, body.neopets_pages-create
|
body.neopets_page_import_tasks-new, body.neopets_page_import_tasks-create
|
||||||
|
|
||||||
#title
|
#title
|
||||||
float: left
|
float: left
|
84
app/controllers/neopets_page_import_tasks_controller.rb
Normal file
84
app/controllers/neopets_page_import_tasks_controller.rb
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
class NeopetsPageImportTasksController < ApplicationController
|
||||||
|
include ActionView::Helpers::TextHelper
|
||||||
|
|
||||||
|
before_filter :authenticate_user!
|
||||||
|
|
||||||
|
before_filter :require_source, only: [:create]
|
||||||
|
|
||||||
|
rescue_from NeopetsPage::ParseError, with: :on_parse_error
|
||||||
|
rescue_from NeopetsPage::TypeNotFound, with: :not_found
|
||||||
|
|
||||||
|
def create
|
||||||
|
neopets_page = NeopetsPage.new(params[:page_type], params[:expected_index].to_i, params[:neopets_page][:source])
|
||||||
|
|
||||||
|
@import_task = neopets_page.build_import_task(current_user, params[:neopets_page_import_task][:list_id])
|
||||||
|
|
||||||
|
messages = [tt('success', index: neopets_page.index)]
|
||||||
|
|
||||||
|
results = @import_task.save
|
||||||
|
any_created = results[:counts][:created] > 0
|
||||||
|
any_updated = results[:counts][:updated] > 0
|
||||||
|
any_unchanged = results[:counts][:unchanged] > 0
|
||||||
|
|
||||||
|
if any_created && any_updated
|
||||||
|
created_msg = tt('created_and_updated_hangers.created_msg',
|
||||||
|
count: results[:counts][:created])
|
||||||
|
updated_msg = tt('created_and_updated_hangers.updated_msg',
|
||||||
|
count: results[:counts][:updated])
|
||||||
|
messages << tt('created_and_updated_hangers.text',
|
||||||
|
created_msg: created_msg,
|
||||||
|
updated_msg: updated_msg)
|
||||||
|
elsif any_created
|
||||||
|
messages << tt('created_hangers',
|
||||||
|
count: results[:counts][:created])
|
||||||
|
elsif any_updated
|
||||||
|
messages << tt('updated_hangers',
|
||||||
|
count: results[:counts][:updated])
|
||||||
|
elsif any_unchanged
|
||||||
|
messages << tt('no_changes')
|
||||||
|
else
|
||||||
|
messages << tt('no_data')
|
||||||
|
end
|
||||||
|
|
||||||
|
unless results[:unknown_item_names].empty?
|
||||||
|
messages << tt('unknown_items',
|
||||||
|
item_names: results[:unknown_item_names].to_sentence,
|
||||||
|
count: results[:unknown_item_names].size)
|
||||||
|
end
|
||||||
|
|
||||||
|
if neopets_page.last?
|
||||||
|
messages << tt('done', name: neopets_page.name)
|
||||||
|
destination = user_closet_hangers_path(current_user)
|
||||||
|
else
|
||||||
|
messages << tt('next_page',
|
||||||
|
next_index: (neopets_page.index + 1))
|
||||||
|
destination = new_neopets_page_import_task_path(
|
||||||
|
expected_index: neopets_page.index + 1, list_id: @import_task.list_id)
|
||||||
|
end
|
||||||
|
|
||||||
|
flash[:success] = messages.join(' ')
|
||||||
|
redirect_to destination
|
||||||
|
end
|
||||||
|
|
||||||
|
def new
|
||||||
|
neopets_page = NeopetsPage.new(params[:page_type], params[:expected_index].to_i, nil)
|
||||||
|
@import_task = neopets_page.build_import_task(current_user, params[:list_id])
|
||||||
|
end
|
||||||
|
|
||||||
|
def tt(key, params={})
|
||||||
|
t("neopets_page_import_tasks.create.#{key}", params)
|
||||||
|
end
|
||||||
|
|
||||||
|
def require_source
|
||||||
|
redirect_to(action: :new) if params[:neopets_page][:source].empty?
|
||||||
|
end
|
||||||
|
|
||||||
|
protected
|
||||||
|
|
||||||
|
def on_parse_error(e)
|
||||||
|
Rails.logger.info "Neopets page parse error: #{e.message}"
|
||||||
|
flash[:alert] = tt('parse_error')
|
||||||
|
render action: :new
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
|
@ -1,88 +0,0 @@
|
||||||
class NeopetsPagesController < ApplicationController
|
|
||||||
include ActionView::Helpers::TextHelper
|
|
||||||
|
|
||||||
before_filter :authenticate_user!, :build_neopets_page
|
|
||||||
|
|
||||||
rescue_from ClosetPage::ParseError, with: :on_parse_error
|
|
||||||
|
|
||||||
def create
|
|
||||||
if @page_params && @page_params[:source]
|
|
||||||
@neopets_page.index = @page_params[:index]
|
|
||||||
@neopets_page.list_id = @page_params[:list_id]
|
|
||||||
@neopets_page.source = @page_params[:source]
|
|
||||||
|
|
||||||
messages = [t('neopets_pages.create.success',
|
|
||||||
index: @neopets_page.index)]
|
|
||||||
|
|
||||||
saved_counts = @neopets_page.save_hangers!
|
|
||||||
any_created = saved_counts[:created] > 0
|
|
||||||
any_updated = saved_counts[:updated] > 0
|
|
||||||
if any_created && any_updated
|
|
||||||
created_msg = t('neopets_pages.create.created_and_updated_hangers.created_msg',
|
|
||||||
count: saved_counts[:created])
|
|
||||||
updated_msg = t('neopets_pages.create.created_and_updated_hangers.updated_msg',
|
|
||||||
count: saved_counts[:updated])
|
|
||||||
messages << t('neopets_pages.create.created_and_updated_hangers.text',
|
|
||||||
created_msg: created_msg,
|
|
||||||
updated_msg: updated_msg)
|
|
||||||
elsif any_created
|
|
||||||
messages << t('neopets_pages.create.created_hangers',
|
|
||||||
count: saved_counts[:created])
|
|
||||||
elsif any_updated
|
|
||||||
messages << t('neopets_pages.create.updated_hangers',
|
|
||||||
count: saved_counts[:updated])
|
|
||||||
elsif @neopets_page.hangers.size > 1 # saw items, but at same quantities
|
|
||||||
messages << t('neopets_pages.create.no_changes')
|
|
||||||
else # no items recognized
|
|
||||||
messages << t('neopets_pages.create.no_data')
|
|
||||||
end
|
|
||||||
|
|
||||||
unless @neopets_page.unknown_item_names.empty?
|
|
||||||
messages << t('neopets_pages.create.unknown_items',
|
|
||||||
item_names: @neopets_page.unknown_item_names.to_sentence,
|
|
||||||
count: @neopets_page.unknown_item_names.size)
|
|
||||||
end
|
|
||||||
|
|
||||||
if @neopets_page.last?
|
|
||||||
messages << t('neopets_pages.create.done', name: @neopets_page.name)
|
|
||||||
destination = user_closet_hangers_path(current_user)
|
|
||||||
else
|
|
||||||
messages << t('neopets_pages.create.next_page',
|
|
||||||
next_index: (@neopets_page.index + 1))
|
|
||||||
destination = {action: :new, index: @neopets_page.index + 1,
|
|
||||||
list_id: @neopets_page.list_id}
|
|
||||||
end
|
|
||||||
|
|
||||||
flash[:success] = messages.join(' ')
|
|
||||||
redirect_to destination
|
|
||||||
else
|
|
||||||
redirect_to action: :new
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def new
|
|
||||||
@neopets_page.index ||= 1
|
|
||||||
end
|
|
||||||
|
|
||||||
protected
|
|
||||||
|
|
||||||
TYPES = {
|
|
||||||
'closet' => ClosetPage,
|
|
||||||
'sdb' => SafetyDepositPage
|
|
||||||
}
|
|
||||||
def build_neopets_page
|
|
||||||
type_class = TYPES[params[:type]]
|
|
||||||
|
|
||||||
@neopets_page = type_class.new(current_user)
|
|
||||||
@neopets_page.index = params[:index]
|
|
||||||
@neopets_page.list_id = params[:list_id]
|
|
||||||
@page_params = params[type_class.model_name.singular]
|
|
||||||
end
|
|
||||||
|
|
||||||
def on_parse_error(e)
|
|
||||||
Rails.logger.info "Neopets page parse error: #{e.message}"
|
|
||||||
flash[:alert] = t('neopets_pages.create.parse_error')
|
|
||||||
render action: :new
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
module NeopetsPagesHelper
|
module NeopetsPageImportTasksHelper
|
||||||
def neopets_page_list_options(user)
|
def neopets_page_list_options(user)
|
||||||
lists = user.closet_lists.group_by(&:hangers_owned?)
|
lists = user.closet_lists.group_by(&:hangers_owned?)
|
||||||
options = []
|
options = []
|
|
@ -28,6 +28,10 @@ class ClosetList < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def try_non_null(method_name)
|
||||||
|
send(method_name)
|
||||||
|
end
|
||||||
|
|
||||||
module VisibilityMethods
|
module VisibilityMethods
|
||||||
delegate :trading?, to: :visibility_level
|
delegate :trading?, to: :visibility_level
|
||||||
|
|
||||||
|
@ -56,6 +60,14 @@ class ClosetList < ActiveRecord::Base
|
||||||
def hangers
|
def hangers
|
||||||
user.closet_hangers.unlisted.where(owned: hangers_owned)
|
user.closet_hangers.unlisted.where(owned: hangers_owned)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def hangers_owned?
|
||||||
|
hangers_owned
|
||||||
|
end
|
||||||
|
|
||||||
|
def try_non_null(method_name)
|
||||||
|
nil
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class NullOwned < Null
|
class NullOwned < Null
|
||||||
|
|
|
@ -1,236 +0,0 @@
|
||||||
require 'yaml'
|
|
||||||
|
|
||||||
class ClosetPage
|
|
||||||
include ActiveModel::Conversion
|
|
||||||
extend ActiveModel::Naming
|
|
||||||
|
|
||||||
@selectors = {
|
|
||||||
:items => "form[action=\"process_closet.phtml\"] tr[bgcolor!=silver][bgcolor!=\"#E4E4E4\"]",
|
|
||||||
:item_thumbnail => "img",
|
|
||||||
:item_name => "td:nth-child(2)",
|
|
||||||
:item_quantity => "td:nth-child(5)",
|
|
||||||
:item_remove => "input",
|
|
||||||
:page_select => "select[name=page]",
|
|
||||||
:selected => "option[selected]"
|
|
||||||
}
|
|
||||||
|
|
||||||
attr_accessor :index
|
|
||||||
attr_reader :hangers, :list_id, :source, :total_pages, :unknown_item_names, :user
|
|
||||||
|
|
||||||
def initialize(user)
|
|
||||||
raise ArgumentError, "Expected #{user.inspect} to be a User", caller unless user.is_a?(User)
|
|
||||||
@user = user
|
|
||||||
end
|
|
||||||
|
|
||||||
def last?
|
|
||||||
@index == @total_pages
|
|
||||||
end
|
|
||||||
|
|
||||||
def name
|
|
||||||
I18n.translate('neopets_pages.names.closet')
|
|
||||||
end
|
|
||||||
|
|
||||||
def persisted?
|
|
||||||
false
|
|
||||||
end
|
|
||||||
|
|
||||||
def save_hangers!
|
|
||||||
counts = {created: 0, updated: 0}
|
|
||||||
ClosetHanger.transaction do
|
|
||||||
@hangers.each do |hanger|
|
|
||||||
if hanger.new_record?
|
|
||||||
counts[:created] += 1
|
|
||||||
hanger.save!
|
|
||||||
elsif hanger.changed?
|
|
||||||
counts[:updated] += 1
|
|
||||||
hanger.save!
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
counts
|
|
||||||
end
|
|
||||||
|
|
||||||
def list_id=(list_id)
|
|
||||||
@list_id = list_id
|
|
||||||
if list_id == 'true'
|
|
||||||
@closet_list = nil
|
|
||||||
@hangers_owned = true
|
|
||||||
elsif list_id == 'false'
|
|
||||||
@closet_list = nil
|
|
||||||
@hangers_owned = false
|
|
||||||
elsif list_id.present?
|
|
||||||
@closet_list = @user.closet_lists.find(list_id)
|
|
||||||
@hangers_owned = @closet_list.hangers_owned?
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def source=(source)
|
|
||||||
@source = source
|
|
||||||
parse_source!(source)
|
|
||||||
end
|
|
||||||
|
|
||||||
def url
|
|
||||||
"http://www.neopets.com/closet.phtml?per_page=50&page=#{@index}"
|
|
||||||
end
|
|
||||||
|
|
||||||
protected
|
|
||||||
|
|
||||||
def element(selector_name, parent)
|
|
||||||
parent.at_css(self.class.selectors[selector_name]) ||
|
|
||||||
raise(ParseError, "#{selector_name} element not found")
|
|
||||||
end
|
|
||||||
|
|
||||||
def elements(selector_name, parent)
|
|
||||||
parent.css(self.class.selectors[selector_name])
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_id(row)
|
|
||||||
element(:item_remove, row)['name']
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_index(page_selector)
|
|
||||||
element(:selected, page_selector)['value'].to_i
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_items(doc)
|
|
||||||
elements(:items, doc)
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_name(row)
|
|
||||||
# For normal items, the td contains essentially:
|
|
||||||
# <b>NAME<br/><span>OPTIONAL ADJECTIVE</span></b>
|
|
||||||
# For PB items, the td contains:
|
|
||||||
# NAME<br/><span>OPTIONAL ADJECTIVE</span>
|
|
||||||
# So, we want the first text node. If it's a PB item, that's the first
|
|
||||||
# child. If it's a normal item, it's the first child <b>'s child.
|
|
||||||
name_el = element(:item_name, row).children[0]
|
|
||||||
name_el = name_el.children[0] if name_el.name == 'b'
|
|
||||||
name_el.text
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_page_selector(doc)
|
|
||||||
element(:page_select, doc)
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_quantity(row)
|
|
||||||
element(:item_quantity, row).text.to_i
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_thumbnail_url(row)
|
|
||||||
element(:item_thumbnail, row)['src']
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_total_pages(page_selector)
|
|
||||||
page_selector.children.size
|
|
||||||
end
|
|
||||||
|
|
||||||
def parse_source!(source)
|
|
||||||
doc = Nokogiri::HTML(source)
|
|
||||||
|
|
||||||
page_selector = find_page_selector(doc)
|
|
||||||
@total_pages = find_total_pages(page_selector)
|
|
||||||
@index = find_index(page_selector)
|
|
||||||
|
|
||||||
items_data = {
|
|
||||||
:id => {},
|
|
||||||
:thumbnail_url => {}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
# Go through the items, and find the ID/thumbnail for each and data with it
|
|
||||||
find_items(doc).each do |row|
|
|
||||||
data = {
|
|
||||||
:name => find_name(row),
|
|
||||||
:quantity => find_quantity(row)
|
|
||||||
}
|
|
||||||
|
|
||||||
if id = find_id(row)
|
|
||||||
id = id.to_i
|
|
||||||
items_data[:id][id] = data
|
|
||||||
else # if this is a pb item, which does not give ID, go by thumbnail
|
|
||||||
thumbnail_url = find_thumbnail_url(row)
|
|
||||||
items_data[:thumbnail_url][thumbnail_url] = data
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# Find items with either a matching ID or matching thumbnail URL
|
|
||||||
# Check out that single-query beauty :)
|
|
||||||
i = Item.arel_table
|
|
||||||
items = Item.where(
|
|
||||||
i[:id].in(items_data[:id].keys).
|
|
||||||
or(
|
|
||||||
i[:thumbnail_url].in(items_data[:thumbnail_url].keys)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
# And now for some more single-query beauty: check for existing hangers.
|
|
||||||
# We don't want to insert duplicate hangers of what a user owns if they
|
|
||||||
# already have it in another list (e.g. imports to Items You Own *after*
|
|
||||||
# curating their Up For Trade list), so we check for the hanger's presence
|
|
||||||
# in *all* items the user owns or wants (whichever is appropriate for this
|
|
||||||
# request).
|
|
||||||
hangers_scope = @user.closet_hangers.where(owned: @hangers_owned)
|
|
||||||
|
|
||||||
# Group existing hangers by item ID and whether they're from the current
|
|
||||||
# list or another list.
|
|
||||||
current_list_id = @closet_list.try(:id)
|
|
||||||
existing_hangers_by_item_id = hangers_scope.
|
|
||||||
where(item_id: items.map(&:id)).
|
|
||||||
group_by(&:item_id)
|
|
||||||
|
|
||||||
# Careful! We're just using a single default empty list for performance,
|
|
||||||
# but it must not be mutated! If mutation becomes necessary, change this
|
|
||||||
# to a default_proc assignment.
|
|
||||||
existing_hangers_by_item_id.default = []
|
|
||||||
|
|
||||||
# Create closet hanger from each item, and remove them from the reference
|
|
||||||
# lists.
|
|
||||||
@hangers = items.map do |item|
|
|
||||||
data = items_data[:id].delete(item.id) ||
|
|
||||||
items_data[:thumbnail_url].delete(item.thumbnail_url)
|
|
||||||
|
|
||||||
# If there's a hanger in the current list, we want it so we can update
|
|
||||||
# its quantity. If there's a hanger in another list, we want it so we
|
|
||||||
# know not to build a new one. Otherwise, build away!
|
|
||||||
existing_hangers = existing_hangers_by_item_id[item.id]
|
|
||||||
existing_hanger_in_current_list = existing_hangers.detect { |h|
|
|
||||||
h.list_id == current_list_id
|
|
||||||
}
|
|
||||||
hanger = existing_hanger_in_current_list || existing_hangers.first ||
|
|
||||||
hangers_scope.build
|
|
||||||
|
|
||||||
# We also don't want to move existing hangers from other lists, so only
|
|
||||||
# set the list if the hanger is new. (The item assignment is only
|
|
||||||
# necessary for new records, so may as well put it here, too.)
|
|
||||||
if hanger.new_record?
|
|
||||||
hanger.item = item
|
|
||||||
hanger.list = @closet_list
|
|
||||||
end
|
|
||||||
|
|
||||||
# Finally, we don't want to update the quantity of hangers in those other
|
|
||||||
# lists, either, so only update quantity if it's in this list. (This will
|
|
||||||
# be true for some existing hangers and all new hangers. This is also the
|
|
||||||
# only value that could change for existing hangers; if nothing changes,
|
|
||||||
# it was an existing hanger from another list.)
|
|
||||||
hanger.quantity = data[:quantity] if hanger.list_id == current_list_id
|
|
||||||
|
|
||||||
hanger
|
|
||||||
end
|
|
||||||
|
|
||||||
# Take the names of the items remaining in the reference lists, meaning
|
|
||||||
# that they weren't found
|
|
||||||
@unknown_item_names = []
|
|
||||||
items_data.each do |type, data_by_key|
|
|
||||||
data_by_key.each do |key, data|
|
|
||||||
@unknown_item_names << data[:name]
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def self.selectors
|
|
||||||
@selectors
|
|
||||||
end
|
|
||||||
|
|
||||||
class ParseError < RuntimeError;end
|
|
||||||
end
|
|
||||||
|
|
392
app/models/neopets_page.rb
Normal file
392
app/models/neopets_page.rb
Normal file
|
@ -0,0 +1,392 @@
|
||||||
|
class NeopetsPage
|
||||||
|
include ActiveModel::Conversion
|
||||||
|
extend ActiveModel::Naming
|
||||||
|
|
||||||
|
|
||||||
|
delegate :name, to: :type
|
||||||
|
|
||||||
|
|
||||||
|
attr_reader :type, :expected_index, :source
|
||||||
|
|
||||||
|
|
||||||
|
def initialize(type_key, expected_index, source)
|
||||||
|
begin
|
||||||
|
@type = TYPES.fetch(type_key)
|
||||||
|
rescue KeyError
|
||||||
|
raise TypeNotFound, type_key
|
||||||
|
end
|
||||||
|
@expected_index = expected_index
|
||||||
|
@source = source
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def build_import_task(user, list_id)
|
||||||
|
ImportTask.new self, user, list_id
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def url
|
||||||
|
@type.url(@expected_index)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def index
|
||||||
|
parse_results[:index]
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def page_count
|
||||||
|
parse_results[:page_count]
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def last?
|
||||||
|
Rails.logger.debug("last? #{index} == #{page_count}")
|
||||||
|
index == page_count
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def parse_results
|
||||||
|
@parse_results ||= @type.parse @source
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def item_refs
|
||||||
|
parse_results[:items]
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def persisted?
|
||||||
|
false
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def to_param
|
||||||
|
@expected_index
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class ItemRef
|
||||||
|
attr_reader :id, :thumbnail_url, :name, :quantity
|
||||||
|
|
||||||
|
def initialize(id, thumbnail_url, name, quantity)
|
||||||
|
@id = id
|
||||||
|
@thumbnail_url = thumbnail_url
|
||||||
|
@name = name
|
||||||
|
@quantity = quantity
|
||||||
|
end
|
||||||
|
|
||||||
|
def id?
|
||||||
|
@id.present?
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class Parser
|
||||||
|
def initialize(params)
|
||||||
|
@selectors = params.fetch(:selectors)
|
||||||
|
@parse_id = params.fetch(:parse_id, lambda { |id| id })
|
||||||
|
@parse_index = params.fetch(:parse_index, lambda { |index| index })
|
||||||
|
@has_quantity = params.fetch(:has_quantity, true)
|
||||||
|
@has_id = params.fetch(:has_id, true)
|
||||||
|
@has_pages = params.fetch(:has_pages, true)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def parse(source)
|
||||||
|
doc = Nokogiri::HTML(source)
|
||||||
|
page_selector = find_page_selector(doc)
|
||||||
|
{items: find_items(doc), index: find_index(page_selector), page_count: find_page_count(page_selector)}
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def element(selector_name, parent)
|
||||||
|
selector = @selectors[selector_name]
|
||||||
|
parent.at_css(selector) ||
|
||||||
|
raise(ParseError, "#{selector_name} element not found (#{selector} in #{parent})")
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def elements(selector_name, parent)
|
||||||
|
parent.css(@selectors[selector_name])
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def find_id(row)
|
||||||
|
@parse_id.call(element(:item_remove, row)['name']).try(:to_i) if @has_id
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def find_index(page_selector)
|
||||||
|
if @has_pages
|
||||||
|
@parse_index.call(element(:selected, page_selector)['value'].to_i)
|
||||||
|
else
|
||||||
|
1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def find_items(doc)
|
||||||
|
elements(:items, doc).map do |el|
|
||||||
|
ItemRef.new(find_id(el), find_thumbnail_url(el), find_name(el), find_quantity(el))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def find_name(row)
|
||||||
|
# For normal items, the td contains essentially:
|
||||||
|
# <b>NAME<br/><span>OPTIONAL ADJECTIVE</span></b>
|
||||||
|
# For PB items, the td contains:
|
||||||
|
# NAME<br/><span>OPTIONAL ADJECTIVE</span>
|
||||||
|
# So, we want the first text node. If it's a PB item, that's the first
|
||||||
|
# child. If it's a normal item, it's the first child <b>'s child.
|
||||||
|
name_el = element(:item_name, row).children[0]
|
||||||
|
name_el = name_el.children[0] if name_el.name == 'b'
|
||||||
|
name_el.text
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def find_page_selector(doc)
|
||||||
|
element(:page_select, doc) if @has_pages
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def find_quantity(row)
|
||||||
|
if @has_quantity
|
||||||
|
element(:item_quantity, row).text.to_i
|
||||||
|
else
|
||||||
|
1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def find_thumbnail_url(row)
|
||||||
|
element(:item_thumbnail, row)['src']
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def find_page_count(page_selector)
|
||||||
|
if @has_pages
|
||||||
|
page_selector.css('option').size
|
||||||
|
else
|
||||||
|
1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class Type
|
||||||
|
attr_reader :parser
|
||||||
|
delegate :parse, to: :parser
|
||||||
|
|
||||||
|
|
||||||
|
def initialize(params)
|
||||||
|
@get_name = params.fetch(:get_name)
|
||||||
|
@get_url = params.fetch(:get_url)
|
||||||
|
@parser = params.fetch(:parser)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def name
|
||||||
|
@get_name.call
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def url(index)
|
||||||
|
@get_url.call(index)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
TYPES = {
|
||||||
|
'closet' => Type.new(
|
||||||
|
get_name: lambda { I18n.translate('neopets_page_import_tasks.names.closet') },
|
||||||
|
get_url: lambda { |index| "http://www.neopets.com/closet.phtml?per_page=50&page=#{index}" },
|
||||||
|
parser: Parser.new(
|
||||||
|
selectors: {
|
||||||
|
items: "form[action=\"process_closet.phtml\"] tr[bgcolor!=silver][bgcolor!=\"#E4E4E4\"]",
|
||||||
|
item_thumbnail: "img",
|
||||||
|
item_name: "td:nth-child(2)",
|
||||||
|
item_quantity: "td:nth-child(5)",
|
||||||
|
item_remove: "input",
|
||||||
|
page_select: "select[name=page]",
|
||||||
|
selected: "option[selected]"
|
||||||
|
}
|
||||||
|
)
|
||||||
|
),
|
||||||
|
'safety_deposit' => Type.new(
|
||||||
|
get_name: lambda { I18n.translate('neopets_page_import_tasks.names.safety_deposit') },
|
||||||
|
get_url: lambda { |index| "http://www.neopets.com/safetydeposit.phtml?offset=#{(index - 1) * 30}" },
|
||||||
|
parser: Parser.new(
|
||||||
|
selectors: {
|
||||||
|
items: "#content tr[bgcolor=\"#DFEAF7\"]",
|
||||||
|
item_thumbnail: "img",
|
||||||
|
item_name: "td:nth-child(2)",
|
||||||
|
item_quantity: "td:nth-child(5)",
|
||||||
|
item_remove: "input",
|
||||||
|
page_select: "select[name=offset]",
|
||||||
|
selected: "option[selected]"
|
||||||
|
},
|
||||||
|
parse_id: lambda { |id|
|
||||||
|
unless match = id.match(/\[([0-9]+)\]/)
|
||||||
|
raise ParseError, "Remove Item input name format was unexpected: #{id}.inspect"
|
||||||
|
end
|
||||||
|
match[1]
|
||||||
|
},
|
||||||
|
parse_index: lambda { |offset| offset / 30 + 1 }
|
||||||
|
)
|
||||||
|
),
|
||||||
|
'gallery' => Type.new(
|
||||||
|
get_name: lambda { I18n.translate('neopets_page_import_tasks.names.gallery') },
|
||||||
|
get_url: lambda { |index| "http://www.neopets.com/gallery/index.phtml?view=all" },
|
||||||
|
parser: Parser.new(
|
||||||
|
selectors: {
|
||||||
|
items: "form[name=gallery_form] td[valign=top]",
|
||||||
|
item_thumbnail: "img",
|
||||||
|
item_name: "b"
|
||||||
|
},
|
||||||
|
has_quantity: false,
|
||||||
|
has_id: false,
|
||||||
|
has_pages: false
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class ImportTask
|
||||||
|
include ActiveModel::Conversion
|
||||||
|
extend ActiveModel::Naming
|
||||||
|
|
||||||
|
|
||||||
|
attr_reader :page, :list_id
|
||||||
|
|
||||||
|
|
||||||
|
def initialize(page, user, list_id)
|
||||||
|
@page = page
|
||||||
|
@user = user
|
||||||
|
@list_id = list_id
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def save
|
||||||
|
item_refs = @page.item_refs
|
||||||
|
|
||||||
|
item_refs_by_best_key = {id: {}, thumbnail_url: {}}
|
||||||
|
item_refs.each do |item_ref|
|
||||||
|
if item_ref.id?
|
||||||
|
item_refs_by_best_key[:id][item_ref.id] = item_ref
|
||||||
|
else
|
||||||
|
item_refs_by_best_key[:thumbnail_url][item_ref.thumbnail_url] = item_ref
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# Find items with either a matching ID or matching thumbnail URL
|
||||||
|
# Check out that single-query beauty :)
|
||||||
|
i = Item.arel_table
|
||||||
|
items = Item.where(
|
||||||
|
i[:id].in(item_refs_by_best_key[:id].keys).
|
||||||
|
or i[:thumbnail_url].in(item_refs_by_best_key[:thumbnail_url].keys)
|
||||||
|
)
|
||||||
|
|
||||||
|
# And now for some more single-query beauty: check for existing hangers.
|
||||||
|
# We don't want to insert duplicate hangers of what a user owns if they
|
||||||
|
# already have it in another list (e.g. imports to Items You Own *after*
|
||||||
|
# curating their Up For Trade list), so we check for the hanger's presence
|
||||||
|
# in *all* items the user owns or wants (whichever is appropriate for this
|
||||||
|
# request).
|
||||||
|
hangers_scope = @user.closet_hangers.where(owned: list.hangers_owned?)
|
||||||
|
|
||||||
|
# Group existing hangers by item ID and whether they're from the current
|
||||||
|
# list or another list.
|
||||||
|
current_list_id = list.try_non_null(:id)
|
||||||
|
existing_hangers_by_item_id = hangers_scope.
|
||||||
|
where(item_id: items.map(&:id)).
|
||||||
|
group_by(&:item_id)
|
||||||
|
|
||||||
|
# Careful! We're just using a single default empty list for performance,
|
||||||
|
# but it must not be mutated! If mutation becomes necessary, change this
|
||||||
|
# to a default_proc assignment.
|
||||||
|
existing_hangers_by_item_id.default = []
|
||||||
|
|
||||||
|
# Create closet hanger from each item, and remove them from the reference
|
||||||
|
# lists.
|
||||||
|
hangers = items.map do |item|
|
||||||
|
data = item_refs_by_best_key[:id].delete(item.id) ||
|
||||||
|
item_refs_by_best_key[:thumbnail_url].delete(item.thumbnail_url)
|
||||||
|
|
||||||
|
# If there's a hanger in the current list, we want it so we can update
|
||||||
|
# its quantity. If there's a hanger in another list, we want it so we
|
||||||
|
# know not to build a new one. Otherwise, build away!
|
||||||
|
existing_hangers = existing_hangers_by_item_id[item.id]
|
||||||
|
existing_hanger_in_current_list = existing_hangers.detect { |h|
|
||||||
|
h.list_id == current_list_id
|
||||||
|
}
|
||||||
|
hanger = existing_hanger_in_current_list || existing_hangers.first ||
|
||||||
|
hangers_scope.build
|
||||||
|
|
||||||
|
# We also don't want to move existing hangers from other lists, so only
|
||||||
|
# set the list if the hanger is new. (The item assignment is only
|
||||||
|
# necessary for new records, so may as well put it here, too.)
|
||||||
|
if hanger.new_record?
|
||||||
|
hanger.item = item
|
||||||
|
hanger.list_id = current_list_id
|
||||||
|
end
|
||||||
|
|
||||||
|
# Finally, we don't want to update the quantity of hangers in those other
|
||||||
|
# lists, either, so only update quantity if it's in this list. (This will
|
||||||
|
# be true for some existing hangers and all new hangers. This is also the
|
||||||
|
# only value that could change for existing hangers; if nothing changes,
|
||||||
|
# it was an existing hanger from another list.)
|
||||||
|
hanger.quantity = data.quantity if hanger.list_id == current_list_id
|
||||||
|
|
||||||
|
hanger
|
||||||
|
end
|
||||||
|
|
||||||
|
# Take the names of the items remaining in the reference lists, meaning
|
||||||
|
# that they weren't found
|
||||||
|
unknown_item_names = []
|
||||||
|
item_refs_by_best_key.each do |type, item_refs_by_key|
|
||||||
|
item_refs_by_key.each do |key, item_ref|
|
||||||
|
unknown_item_names << item_ref.name
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
counts = {created: 0, updated: 0, unchanged: 0}
|
||||||
|
ClosetHanger.transaction do
|
||||||
|
hangers.each do |hanger|
|
||||||
|
if hanger.new_record?
|
||||||
|
counts[:created] += 1
|
||||||
|
Rails.logger.debug("hanger: #{hanger.inspect}")
|
||||||
|
hanger.save!
|
||||||
|
elsif hanger.changed?
|
||||||
|
counts[:updated] += 1
|
||||||
|
hanger.save!
|
||||||
|
else
|
||||||
|
counts[:unchanged] += 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
{counts: counts, unknown_item_names: unknown_item_names}
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def list
|
||||||
|
@list ||= @user.find_closet_list_by_id_or_null_owned list_id
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def persisted?
|
||||||
|
false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
class ParseError < RuntimeError; end
|
||||||
|
class TypeNotFound < RuntimeError; end
|
||||||
|
end
|
|
@ -17,7 +17,7 @@ class NeopetsUser
|
||||||
end
|
end
|
||||||
|
|
||||||
def list_id=(list_id)
|
def list_id=(list_id)
|
||||||
# TODO: DRY up with ClosetPage
|
# TODO: use null lists instead
|
||||||
@list_id = list_id
|
@list_id = list_id
|
||||||
if list_id == 'true'
|
if list_id == 'true'
|
||||||
@closet_list = nil
|
@closet_list = nil
|
||||||
|
@ -58,7 +58,7 @@ class NeopetsUser
|
||||||
item_quantities[i] += 1
|
item_quantities[i] += 1
|
||||||
end
|
end
|
||||||
|
|
||||||
# TODO: DRY up with ClosetPage
|
# TODO: DRY up with NeopetsPage
|
||||||
# We don't want to insert duplicate hangers of what a user owns if they
|
# We don't want to insert duplicate hangers of what a user owns if they
|
||||||
# already have it in another list (e.g. imports to Items You Own *after*
|
# already have it in another list (e.g. imports to Items You Own *after*
|
||||||
# curating their Up For Trade list), so we check for the hanger's presence
|
# curating their Up For Trade list), so we check for the hanger's presence
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
class SafetyDepositPage < ClosetPage
|
|
||||||
@selectors = {
|
|
||||||
:items => "#content tr[bgcolor=\"#DFEAF7\"]",
|
|
||||||
:item_thumbnail => "img",
|
|
||||||
:item_name => "td:nth-child(2)",
|
|
||||||
:item_quantity => "td:nth-child(5)",
|
|
||||||
:item_remove => "input",
|
|
||||||
:page_select => "select[name=offset]",
|
|
||||||
:selected => "option[selected]"
|
|
||||||
}
|
|
||||||
|
|
||||||
def name
|
|
||||||
I18n.translate('neopets_pages.names.safety_deposit')
|
|
||||||
end
|
|
||||||
|
|
||||||
def url
|
|
||||||
"http://www.neopets.com/safetydeposit.phtml?offset=#{offset}"
|
|
||||||
end
|
|
||||||
|
|
||||||
protected
|
|
||||||
|
|
||||||
REMOVE_NAME_REGEX = /\[([0-9]+)\]/
|
|
||||||
def find_id(*args)
|
|
||||||
name = super
|
|
||||||
unless match = name.match(REMOVE_NAME_REGEX)
|
|
||||||
raise ParseError, "Remove Item input name format was unexpected: #{name}.inspect"
|
|
||||||
end
|
|
||||||
match[1]
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_index(*args)
|
|
||||||
(super / 30) + 1
|
|
||||||
end
|
|
||||||
|
|
||||||
def offset
|
|
||||||
@index ? (@index.to_i - 1) * 30 : 0
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
|
@ -48,8 +48,9 @@
|
||||||
:value => user_closet_hangers_url(@user),
|
:value => user_closet_hangers_url(@user),
|
||||||
:readonly => true}
|
:readonly => true}
|
||||||
|
|
||||||
= link_to t('.import_from.closet'), new_closet_page_path
|
= link_to t('.import_from.closet'), new_neopets_page_import_task_path(page_type: 'closet', expected_index: 1)
|
||||||
= link_to t('.import_from.safety_deposit'), new_safety_deposit_page_path
|
= link_to t('.import_from.safety_deposit'), new_neopets_page_import_task_path(page_type: 'safety_deposit', expected_index: 1)
|
||||||
|
= link_to t('.import_from.gallery'), new_neopets_page_import_task_path(page_type: 'gallery', expected_index: 1)
|
||||||
= link_to t('.import_from.neopets_user'), new_neopets_user_path
|
= link_to t('.import_from.neopets_user'), new_neopets_user_path
|
||||||
= link_to t('.export_to.petpage'), petpage_user_closet_hangers_path(@user)
|
= link_to t('.export_to.petpage'), petpage_user_closet_hangers_path(@user)
|
||||||
|
|
||||||
|
|
|
@ -1,30 +1,30 @@
|
||||||
- title t('.title', :name => @neopets_page.name, :index => @neopets_page.index)
|
- title t('.title', :name => @import_task.page.name, :index => @import_task.page.expected_index)
|
||||||
- content_for :before_flashes do
|
- content_for :before_flashes do
|
||||||
= link_to t('.your_items_link'), user_closet_hangers_path(current_user), :id => 'back-to-items'
|
= link_to t('.your_items_link'), user_closet_hangers_path(current_user), :id => 'back-to-items'
|
||||||
|
|
||||||
= form_for @neopets_page, :html => {:id => 'closet-page-form'} do |f|
|
= form_for @import_task, :html => {:id => 'closet-page-form'} do |f|
|
||||||
= f.hidden_field :index
|
|
||||||
#closet-page-frame-wrapper
|
#closet-page-frame-wrapper
|
||||||
%span
|
%span
|
||||||
%strong
|
%strong
|
||||||
= t '.frame_header', :name => @neopets_page.name,
|
= t '.frame_header', :name => @import_task.page.name,
|
||||||
:index => @neopets_page.index
|
:index => @import_task.page.expected_index
|
||||||
%iframe#closet-page-frame{:src => @neopets_page.url}
|
%iframe#closet-page-frame{:src => @import_task.page.url}
|
||||||
#closet-page-source
|
#closet-page-source
|
||||||
= f.label :source, t('.source_header')
|
= fields_for @import_task.page do |p|
|
||||||
= f.text_area :source
|
= p.label :source, t('.source_header')
|
||||||
|
= p.text_area :source
|
||||||
= f.select :list_id, neopets_page_list_options(current_user)
|
= f.select :list_id, neopets_page_list_options(current_user)
|
||||||
= f.submit t('.submit')
|
= f.submit t('.submit')
|
||||||
|
|
||||||
- localized_cache :action_suffix => 'explanation' do
|
- localized_cache :action_suffix => 'explanation' do
|
||||||
%p
|
%p
|
||||||
= t '.help.welcome', :name => @neopets_page.name
|
= t '.help.welcome', :name => @import_task.page.name
|
||||||
= t '.help.intro', :name => @neopets_page.name
|
= t '.help.intro', :name => @import_task.page.name
|
||||||
|
|
||||||
%ol
|
%ol
|
||||||
%li
|
%li
|
||||||
= twl '.help.check_frame.header', :page_link_url => @neopets_page.url,
|
= twl '.help.check_frame.header', :page_link_url => @import_task.page.url,
|
||||||
:name => @neopets_page.name, :index => @neopets_page.index
|
:name => @import_task.page.name, :index => @import_task.page.expected_index
|
||||||
%ul
|
%ul
|
||||||
%li
|
%li
|
||||||
%strong= t '.help.check_frame.check_login.summary'
|
%strong= t '.help.check_frame.check_login.summary'
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
%li
|
%li
|
||||||
%strong
|
%strong
|
||||||
= t '.help.check_frame.check_content.summary',
|
= t '.help.check_frame.check_content.summary',
|
||||||
:name => @neopets_page.name
|
:name => @import_task.page.name
|
||||||
= t '.help.check_frame.check_content.details'
|
= t '.help.check_frame.check_content.details'
|
||||||
|
|
||||||
%li
|
%li
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
= t '.help.view_source.other'
|
= t '.help.view_source.other'
|
||||||
%li
|
%li
|
||||||
= twl '.help.view_source.troubleshooting',
|
= twl '.help.view_source.troubleshooting',
|
||||||
:page_link_url => @neopets_page.url
|
:page_link_url => @import_task.page.url
|
||||||
|
|
||||||
%li
|
%li
|
||||||
= t '.help.copy_source.header'
|
= t '.help.copy_source.header'
|
||||||
|
@ -64,4 +64,4 @@
|
||||||
= t '.help.submit.header'
|
= t '.help.submit.header'
|
||||||
%ul
|
%ul
|
||||||
%li
|
%li
|
||||||
= t '.help.submit.description', :name => @neopets_page.name
|
= t '.help.submit.description', :name => @import_task.page.name
|
|
@ -331,7 +331,7 @@ en-MEEP:
|
||||||
header: Meeped to you by
|
header: Meeped to you by
|
||||||
footer: Meep!
|
footer: Meep!
|
||||||
|
|
||||||
neopets_pages:
|
neopets_page_import_tasks:
|
||||||
create:
|
create:
|
||||||
success: Page %{index} meeped!
|
success: Page %{index} meeped!
|
||||||
created_and_updated_hangers:
|
created_and_updated_hangers:
|
||||||
|
|
|
@ -116,6 +116,7 @@ en:
|
||||||
import_from:
|
import_from:
|
||||||
closet: Import from closet
|
closet: Import from closet
|
||||||
safety_deposit: Import from SDB
|
safety_deposit: Import from SDB
|
||||||
|
gallery: Import from gallery
|
||||||
neopets_user: Import from pets
|
neopets_user: Import from pets
|
||||||
export_to:
|
export_to:
|
||||||
petpage: Export to petpage
|
petpage: Export to petpage
|
||||||
|
@ -398,7 +399,7 @@ en:
|
||||||
user_wants: wants
|
user_wants: wants
|
||||||
fits_pet_type: fits
|
fits_pet_type: fits
|
||||||
|
|
||||||
neopets_pages:
|
neopets_page_import_tasks:
|
||||||
create:
|
create:
|
||||||
success: Page %{index} saved!
|
success: Page %{index} saved!
|
||||||
created_and_updated_hangers:
|
created_and_updated_hangers:
|
||||||
|
@ -438,6 +439,7 @@ en:
|
||||||
names:
|
names:
|
||||||
closet: closet
|
closet: closet
|
||||||
safety_deposit: safety deposit
|
safety_deposit: safety deposit
|
||||||
|
gallery: gallery
|
||||||
|
|
||||||
new:
|
new:
|
||||||
title: Import from %{name}, Page %{index}
|
title: Import from %{name}, Page %{index}
|
||||||
|
|
|
@ -279,7 +279,7 @@ es:
|
||||||
user_closet_hanger_ownership: usuario
|
user_closet_hanger_ownership: usuario
|
||||||
user_owns: tiene
|
user_owns: tiene
|
||||||
user_wants: quiere
|
user_wants: quiere
|
||||||
neopets_pages:
|
neopets_page_import_tasks:
|
||||||
create:
|
create:
|
||||||
success: ¡Página %{index} guardada!
|
success: ¡Página %{index} guardada!
|
||||||
created_and_updated_hangers:
|
created_and_updated_hangers:
|
||||||
|
|
|
@ -279,7 +279,7 @@ pt:
|
||||||
user_closet_hanger_ownership: usuario
|
user_closet_hanger_ownership: usuario
|
||||||
user_owns: possui
|
user_owns: possui
|
||||||
user_wants: quer
|
user_wants: quer
|
||||||
neopets_pages:
|
neopets_page_import_tasks:
|
||||||
create:
|
create:
|
||||||
success: Página %{index} salva!
|
success: Página %{index} salva!
|
||||||
created_and_updated_hangers:
|
created_and_updated_hangers:
|
||||||
|
|
|
@ -40,11 +40,8 @@ OpenneoImpressItems::Application.routes.draw do
|
||||||
resources :zones, only: [:index]
|
resources :zones, only: [:index]
|
||||||
|
|
||||||
scope 'import' do
|
scope 'import' do
|
||||||
resources :closet_pages, :only => [:new, :create],
|
resources :neopets_page_import_tasks, only: [:new, :create],
|
||||||
:controller => 'neopets_pages', :path => 'closet/pages', :type => 'closet'
|
path: ':page_type/pages/:expected_index'
|
||||||
|
|
||||||
resources :safety_deposit_pages, :only => [:new, :create],
|
|
||||||
:controller => 'neopets_pages', :path => 'sdb/pages', :type => 'sdb'
|
|
||||||
|
|
||||||
resources :neopets_users, :only => [:new, :create], :path => 'neopets-users'
|
resources :neopets_users, :only => [:new, :create], :path => 'neopets-users'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue