How do I create an image object from a remote image url

22 views
Skip to first unread message

fugee ohu

unread,
Oct 29, 2018, 1:08:19 AM10/29/18
to Ruby on Rails: Talk
How do I create an image object from a remote image url in rails console

Colin Law

unread,
Oct 29, 2018, 4:48:42 AM10/29/18
to rubyonra...@googlegroups.com
On Mon, 29 Oct 2018 at 05:08, fugee ohu <fuge...@gmail.com> wrote:
How do I create an image object from a remote image url in rails console

What do you mean by image object?

Colin
 

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-ta...@googlegroups.com.
To post to this group, send email to rubyonra...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/89de209d-5deb-4c12-ba2e-2ea98a17db18%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

fugee ohu

unread,
Oct 29, 2018, 7:54:25 AM10/29/18
to Ruby on Rails: Talk
 An object returned by Nokogiri as a result of selecting a css.("a") element containing  <img src="...">

Colin Law

unread,
Oct 29, 2018, 10:14:44 AM10/29/18
to rubyonra...@googlegroups.com
On Mon, 29 Oct 2018 at 11:54, fugee ohu <fuge...@gmail.com> wrote:


On Monday, October 29, 2018 at 4:48:42 AM UTC-4, Colin Law wrote:
On Mon, 29 Oct 2018 at 05:08, fugee ohu <fuge...@gmail.com> wrote:
How do I create an image object from a remote image url in rails console

What do you mean by image object?


 An object returned by Nokogiri as a result of selecting a css.("a") element containing  <img src="...">

That doesn't make sense, you ask how to create an image object, then say that an image object is an object returned by nokogiri.  So to create it all you have to do is make that request to nokogiri.

Colin

Ryan

unread,
Oct 29, 2018, 1:43:05 PM10/29/18
to Ruby on Rails: Talk

fugee ohu

unread,
Oct 29, 2018, 10:02:28 PM10/29/18
to Ruby on Rails: Talk
Using  ActiveStorage but I'll look at the page thanks

fugee ohu

unread,
Oct 29, 2018, 10:08:12 PM10/29/18
to Ruby on Rails: Talk
I'm trying to insert an image into the assets table from web scraping Scraping gets me the src of the image I don't know if I should submit a form or do a raw insert in my script 

Walter Lee Davis

unread,
Oct 29, 2018, 11:28:58 PM10/29/18
to rubyonra...@googlegroups.com
Read the documentation for your file upload package -- I believe you mentioned ActiveStorage -- about uploading from a URL. This is a common feature in many file attachment systems. CarrierWave, Shrine, CarrierWave, even Paperclip have a way to do this.

It usually amounts to something like

require 'open-uri'
file = open(remote_url).read
@your_instance.file = file
@your_instance.save # (the file should be persisted locally)

Walter

>
> --
> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-ta...@googlegroups.com.
> To post to this group, send email to rubyonra...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/9f8ba9af-0ad0-4fd0-856b-0f236c76149b%40googlegroups.com.

fugee ohu

unread,
Oct 30, 2018, 12:09:15 PM10/30/18
to Ruby on Rails: Talk
Thanks, I'll use Carrierwave because when I googled "ActiveStorage remote file upload" what I found was a discussion where someone says you can't do this in ActiveStorage but you can with Carrierwave 
 

Walter Lee Davis

unread,
Oct 30, 2018, 1:02:59 PM10/30/18
to rubyonra...@googlegroups.com
I'd recommend Shrine. Much better documentation, current development, and a super-responsive development team.

Walter

> --
> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-ta...@googlegroups.com.
> To post to this group, send email to rubyonra...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/2eebec62-614c-4d0e-9834-7c3a80bb4112%40googlegroups.com.

fugee ohu

unread,
Oct 30, 2018, 1:11:24 PM10/30/18
to Ruby on Rails: Talk
With 'require open-uri' i can just use ActiveStorage don't need to use a gem?   

Walter Lee Davis

unread,
Oct 30, 2018, 1:24:55 PM10/30/18
to rubyonra...@googlegroups.com
Open-URI is part of the Ruby standard library, not a third-party Gem. If you are in a Rails app, you won't need to do this, because it's part of the requirements. But if you are building a stand-alone script for testing, as you should, you may need to do this before the Kernel.open command will open a URI.

Walter

> --
> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-ta...@googlegroups.com.
> To post to this group, send email to rubyonra...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/30ffe7c3-39b5-43eb-a232-94fb8e5696de%40googlegroups.com.

fugee ohu

unread,
Oct 30, 2018, 1:42:00 PM10/30/18
to Ruby on Rails: Talk
Doing everything in rails console so I can let the models do their job
Reply all
Reply to author
Forward
0 new messages