1
0
Fork 0
dokkan-data-rails/lib/tasks/importer.rake

80 lines
2.9 KiB
Ruby
Raw Normal View History

2015-10-23 15:58:05 -04:00
require 'open-uri'
require 'json'
require 'pp'
namespace :importer do
rarities = ['n', 'r', 'sr', 'ssr', 'ur']
types = [4, 3, 2, 5, 1]
awaken_type = [1, 2]
desc "Import from old api"
task renzy: :environment do
PaperTrail.whodunnit = 1
cards = JSON.parse(open('http://dbzv2.renzy.land/action/cards') { |f| f.read })
2015-10-25 11:41:37 -04:00
links = JSON.parse(open('http://api.dbzdokk.com/links') { |f| f.read })
links = Hash[links.map { |link| [link['name'], link['description']] }]
cards2 = JSON.parse(open('http://api.dbzdokk.com/characters') { |f| f.read })
passives = Hash[cards2.map { |card| [card['gameid'], card['passive']] }]
2015-10-23 15:58:05 -04:00
cards.each do |c|
card = Hash.new
card['gameid'] = c['id']
card['title'] = c['name']['suffix']
card['character'] = Character
.where(name: c['name']['prefix'])
.first_or_create
card['rarity'] = Rarity
.where('lower(name) = ?', (c['rarity']['native']))
.first
card['type'] = Type.where(id: types[c['type']['suffix'].to_i]).first
if c['type']['prefix']
card['awaken_type'] = types[c['type']['prefix'].to_i]
end
card['leader_skill'] = LeaderSkill
.where(description: c['leader_skill'])
.first_or_create
card['super_attack'] = SuperAttack
.where(
name: c['super_atk']['name'],
2015-10-25 11:41:37 -04:00
description: c['super_atk']['desc']
)
2015-10-23 15:58:05 -04:00
.first_or_create
2015-10-25 11:41:37 -04:00
passive_skill_description = !c['passive_skill']['decsc'].blank? ? c['passive_skill']['decsc'] : passives[card['gameid']]
2015-10-23 15:58:05 -04:00
passive_skill = PassiveSkill
.where(
name: c['passive_skill']['name'],
2015-10-25 11:41:37 -04:00
description: passive_skill_description
).first_or_initialize
2015-10-23 15:58:05 -04:00
card['awaken_type'] = AwakenType.first
card['passive_skill'] = passive_skill
passive_skill.save(validate: false)
card['links'] = Array.new
c['link_skill'].each do |link|
2015-10-25 11:41:37 -04:00
card['links'] << Link.where(
name: link,
description: links[link]
).first_or_create
2015-10-23 15:58:05 -04:00
end
card['hp_stat'] = Stat.create(
min: c['stats']['native']['hp']['min'] || 0,
stat_type_id: 1
)
card['atk_stat'] = Stat.create(
min: c['stats']['native']['atk']['min'] || 0,
stat_type_id: 2
)
card['def_stat'] = Stat.create(
min: c['stats']['native']['def']['min'] || 0,
stat_type_id: 3
)
c = Card.create(card).save(validate: false)
end
end
end