Coder Social home page Coder Social logo

Comments (9)

forsaken1 avatar forsaken1 commented on August 25, 2024

Тоже столкнулся с данной проблемой

from ipgeobase.

asiniy avatar asiniy commented on August 25, 2024

Судя по всему @mokevnin пофигу на поддержку gem'а

from ipgeobase.

mokevnin avatar mokevnin commented on August 25, 2024

Если кто-нибудь сделает пулреквест с фиксом, я его с удовольствием приму.

from ipgeobase.

asiniy avatar asiniy commented on August 25, 2024

@mokevnin что и требовалось доказать =)

from ipgeobase.

forsaken1 avatar forsaken1 commented on August 25, 2024

@asiniy, да не так важно, все равно уже свой велосипед написан у всех)

from ipgeobase.

asiniy avatar asiniy commented on August 25, 2024

@forsaken1 а ну-ка расскажи про велосипеды =)

from ipgeobase.

forsaken1 avatar forsaken1 commented on August 25, 2024

@asiniy,
find_location - запрос и парсинг ответного XML, нужен гем gem 'nokogiri-happymapper', require: 'happymapper'

module LocationHelper

  require 'happymapper'

  URL = 'http://ipgeobase.ru:7020/geo'

  def get_city
    return current_user.city.name if signed_in? && current_user.city
    "#{get_city_obj.name} (auto)"
  end

  def set_city city
    session['city'] = city.id
  end

  def get_city_obj
    return current_user.city if signed_in? && current_user.city

    if session['city'].nil?
      find_location
    else
      City.find session['city']
    end
  end

  def find_location
    ip = request.remote_ip
    uri = URI.parse URL
    uri.query = URI.encode_www_form ip: ip
    resp = open(uri).read
    parse = HappyMapper.parse resp
    if defined?(parse.ip)
      ip = parse.ip
      city_name = defined?(ip.city) ? ip.city : ''
      city = City.find_or_create_by name: city_name
      if city.id
        city.lat = ip.lat if defined?(ip.lat)
        city.lng = ip.lng if defined?(ip.lng)
        city.save
      else
        city = City.last
      end
    else
      city = City.last
    end
    set_city city
    city
  end
end

from ipgeobase.

asiniy avatar asiniy commented on August 25, 2024

@forsaken1 спасибо, буду знать

from ipgeobase.

mokevnin avatar mokevnin commented on August 25, 2024

#15

from ipgeobase.

Related Issues (9)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.