diff options
author | nfoy <nfoy@purdue.edu> | 2014-04-26 23:45:25 -0400 |
---|---|---|
committer | nfoy <nfoy@purdue.edu> | 2014-04-26 23:45:25 -0400 |
commit | 6f19b51f0adf95b1d9bd8317388ecdbcb3756be7 (patch) | |
tree | c4be583ba9db126ef58db7a1900468ec0929df25 /app/controllers/users_controller.rb | |
parent | 9d8d6b023ce3390f3ccf9808e630505a15ebebe6 (diff) | |
parent | 9dd899559e4533c61089c3f9429574d2de20925e (diff) |
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'app/controllers/users_controller.rb')
-rw-r--r-- | app/controllers/users_controller.rb | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index 27b3c61..767d992 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -62,20 +62,7 @@ class UsersController < ApplicationController else params[:user][:remote_usernames].each do |game_name,user_name| game = Game.find_by_name(game_name) - remote_username = HTTParty.get("https://prod.api.pvp.net/api/lol/na/v1.3/summoner/by-name/#{user_name.downcase}?api_key=ad539f86-22fd-474d-9279-79a7a296ac38") - - id = "#{remote_username["#{user_name.downcase}"]["id"]}".to_i - username = "#{remote_username["#{user_name.downcase}"]["name"]}" - - hash = {:username => username, :id => id} - - remote = @user.remote_usernames.where(:game => game).first - if remote.nil? - ok &= @user.remote_usernames.create(game: game, value: hash) - else - remote.value = hash - ok &= remote.save - end + Sampling::RiotApi::set_remote_name(@user, game, user_name) end end respond_to do |format| |