Setting outgoing IP address in open-uri with RoR

906 Views Asked by At

I'm new to open-uri and trying to set an outgoing IP address using open-uri in ruby on rails. I used this post as a reference to get started. I'm porting an app from PHP where I could use CURLOPT_INTERFACE in curl_setopt. What's the best way to do this using open-uri in rails? (Doing this from the controller - not command line.)

If there's not a way to do this - any suggestions on an alternative to open-uri? My goal is to take in and parse JSON data.

2

There are 2 best solutions below

0
On BEST ANSWER

What I understand from your questions is you want to hit another server from a specific IP which suggests you have a server with couple of addresses.

What I can suggest you is try to execute curl directly and do what you want to do or use a wrapper for it.

0
On

Doesn't look like open-uri can do this. But with net/https it's fairly easy.

require 'net/https'
require 'json'
uri = URI('https://jsonvat.com/')
http = Net::HTTP.new(uri.host, uri.port)
http.local_host = '1.2.3.4'
http.use_ssl = true
request = Net::HTTP::Get.new('/')
request.content_type = 'application/json'
request.initialize_http_header('Content-Type' => 'application/json')
response = http.request(request)
json = JSON.parse(response.body)

Probably you don't need the "require" lines inside Rails Controllers. You can specify the outgoing IP address with the http.local_host line.