Project

General

Profile

Actions

Misc #15893

closed

open-uri: URI.open status

Added by zverok (Victor Shepelev) almost 5 years ago. Updated about 4 years ago.

Status:
Closed
[ruby-core:92922]

Description

On the one hand, Ruby 2.5's NEWS stated:

URI.open method defined as an alias to open-uri's Kernel.open. open-uri's Kernel.open will be deprecated in future.

I believe there were good reasons for that decision.

On the other hand,

  • no movements in this direction were done since 2.5
  • URI.open is excluded from open-uri's docs, and the main library's documentation doesn't mention this option as preferred or even existing.

I'd like to know what the real status of this library and its migration to (safer) URI.open?
Should a patch be provided to change the library's docs accordingly?
Maybe even change the code (still leaving Kernel.open option, but just as an alias, moving the implementation away from that method)?


Files

deprecate-open-uri-kernel-open.patch (21.3 KB) deprecate-open-uri-kernel-open.patch jeremyevans0 (Jeremy Evans), 06/02/2019 03:46 AM

Related issues 1 (0 open1 closed)

Related to Ruby master - Feature #19630: [RFC] Deprecate `Kernel#open("|command-here")` due to frequent security issuesClosedActions

Updated by jeremyevans0 (Jeremy Evans) almost 5 years ago

While the conversion from open or Kernel.open to URI.open is simple, this is likely to break a lot of existing Ruby code. However, I can see the security advantages of deprecating this, as having open implicitly open URIs is a security footgun. For that reason, I am in favor of the deprecation and eventual removal.

akr is the maintainer of open-uri, so I'm assigning this to him. In case he decides to deprecate this, attached is a patch for the deprecation. It makes Kernel.open call URI.open in cases where URI.open would handle it, warning in that case. To avoid warning when calling Kernel.open with a Pathname instance, it does not delegate to URI.open if the object responds to to_path.

Actions #2

Updated by akr (Akira Tanaka) almost 5 years ago

  • Status changed from Assigned to Closed

Applied in changeset git|05aac90a1bcfeb180f5e78ea8b00a4d1b04d5eed.


Warn open-uri's "open" method at Kernel.

Use URI.open instead.

Thanks for the patch by jeremyevans0 (Jeremy Evans) [Misc #15893].

Updated by cabo (Carsten Bormann) about 4 years ago

So what is code that needs to be portable to older Rubies supposed to call now? URI.open only works since 2.5. We need to support 2.3 and 2.4 as well.

OpenURI.open_uri ?

Updated by akr (Akira Tanaka) about 4 years ago

cabo (Carsten Bormann) wrote in #note-3:

So what is code that needs to be portable to older Rubies supposed to call now? URI.open only works since 2.5. We need to support 2.3 and 2.4 as well.

OpenURI.open_uri ?

You can use URI#open.

% ruby-2.3.0 -ropen-uri -e 'URI("http://www.ruby-lang.org").open {|f| p f.read[1..20] }'
"!DOCTYPE html>\n<html"
% ruby-2.4.0 -ropen-uri -e 'URI("http://www.ruby-lang.org").open {|f| p f.read[1..20] }'
"!DOCTYPE html>\n<html"
% ruby-2.5.0 -ropen-uri -e 'URI("http://www.ruby-lang.org").open {|f| p f.read[1..20] }'
"!DOCTYPE html>\n<html"
% ruby-2.6.0 -ropen-uri -e 'URI("http://www.ruby-lang.org").open {|f| p f.read[1..20] }'
"!DOCTYPE html>\n<html"
% ruby-2.7.0 -ropen-uri -e 'URI("http://www.ruby-lang.org").open {|f| p f.read[1..20] }'
"!DOCTYPE html>\n<html"

Note that Ruby 2.3 is already EOL and Ruby 2.4 will be EOL soon (2020-03-31).
https://www.ruby-lang.org/en/downloads/branches/

Updated by cabo (Carsten Bormann) about 4 years ago

Thank you. So I gather

URI.open(url, **options)

becomes

URI(url).open(**options)

(Re the deprecation of old Ruby versions: users of gems often want to use them with whatever is on their OS, and that currently means we really have to go back to 2.3. We sure don't like that situation.)

Actions #6

Updated by byroot (Jean Boussier) 12 months ago

  • Related to Feature #19630: [RFC] Deprecate `Kernel#open("|command-here")` due to frequent security issues added
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0