I need to handle some HTTP URLs in a Perl program, but I have doubts how should the URI class help me.
Particularly, I'd like the to use the URI class for resolving relative URLs and getting their components. However, the problems are:
I need a function to work with both
URIobjects and URI strings as arguments (or ensure only one gets passed)sub foo_string_or_url { my $uri = URI->new(shift);is that the right approach? I don't quite like it, because it stringifies the
URIand creates new object unnecessarily.Extract the components
my $host = $uri->host;This is also problematic, because not all
URIs have host, particularly, if someone passes garbage to the function, this willdie().Resolve a relative URL
my $new_url = URI::URL->new($uri, $base)->abs;IIUC, without the
->abs, the result will still stringify to the relative URL (and will not work forHTTP::Requests), am I right? Also, is this guaranteed to return aURI?
How should I handle these problems? The possibilities are
- Use
->isa('URI')and->can("host")all the time- Seems error prone and ugly to me
- Don't use
URIclass at all and parse URLs using regexes- I'd still rather use a library solution than debug my own
- Wrap
URIoperations intry { ... } catch { ... }- see the first point
Is there a sane, fool-proof way of using the URI classes? Something simple I haven't thought of (in the list above)?