Mentése belépés helyét az adatbázisba én sínek app

szavazat
0

Mikor jelentkezzen be az alkalmazást, az alábbi kódot kap hívott. Tehát belsejében SessionsController, SignupHistory táblázat kerüljön feltöltésre a .createmódszerrel.

application_controller.rb

class ApplicationController < ActionController::Base
  protect_from_forgery with: :exception

  helper_method :current_user
  before_action :set_timezone, :current_country

  def current_country
    if session[:ip_country_code].present?
      return @current_country = session[:ip_country_code]
    end
    use_default = request.location.nil? || request.location.country_code.blank? || request.location.country_code == 'RD'
    country_code = use_default ? ENV['DEFAULT_IP_COUNTRY_CODE'] : request.location.country_code
    @current_country = session[:ip_country_code] = country_code
  end
end

sessions_controller.rb

class SessionsController < ApplicationController
  def save_signup_history(member_id)
    SignupHistory.create(
      member_id: member_id,
      ip: request.ip,
      accept_language: request.headers[Accept-Language],
      ua: request.headers[User-Agent],
      login_location: request.location
    )
  end
end

adatbázis attribútumok

databse

Azonban ahelyett, hogy a sor login_location: request.location, hogy írjon a helyét az IP bejelentkezik az adatbázisba, mint például New York, hogy mit kapok az adatbázis:

---! Rubin / tárgya: Geocoder :: Eredmény :: Ipstack adatok: ip: 127.0.0.1 country_name: fenntartva COUNTRY_CODE: RD cache_hit:

Hogy vehetem helyen alapuló IP bejelentkezéssel be az adatbázis

A kérdést 11/09/2018 18:25
a forrás felhasználó
Más nyelveken...                            


1 válasz

szavazat
1

Használhatja request.remote_ip, hogy az IP-címet. Ahhoz, hogy a helyét IP-cím mentett DB, akkor használja az ingyenes API szolgáltatások letölteni helyen alapuló információkat IP:
- http://ip-api.com/
- https://www.iplocation.net/
- stb ..

class SessionsController < ApplicationController

  require 'net/http'
  require 'json'

  def save_signup_history(member_id)
    SignupHistory.create(
        member_id: member_id,
        ip: request.ip,
        accept_language: request.headers["Accept-Language"],
        ua: request.headers["User-Agent"],
        login_location: get_address(request.remote_ip)
    )
  end


#http://ip-api.com/json/208.80.152.201
  def get_address(ip)
    url = "http://ip-api.com/json/#{ip}"
    uri = URI(url)
    response = Net::HTTP.get(uri)
    result = JSON.parse(response)
    result["regionName"] # returns region name 
  end
end

JSON válasz:

{
"as":"AS14907 Wikimedia Foundation, Inc.",
"city":"San Francisco (South Beach)",
"country":"United States",
"countryCode":"US",
"isp":"Wikimedia Foundation, Inc.",
"lat":37.787,
"lon":-122.4,
"org":"Wikimedia Foundation, Inc.",
"query":"208.80.152.201",
"region":"",
"regionName":"California",
"status":"success",
"timezone":"America/Los_Angeles",
"zip":"94105"
}

Referencia:
https://apidock.com/rails/ActionController/Request/remote_ip

Válaszolt 11/09/2018 21:10
a forrás felhasználó

Cookies help us deliver our services. By using our services, you agree to our use of cookies. Learn more