home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _191c78d2548006f3f41f080ef1d256de < prev    next >
Text File  |  2000-03-15  |  6KB  |  212 lines

  1. package URI::Heuristic;
  2.  
  3. # $Id: Heuristic.pm,v 4.11 1999/03/20 07:34:27 gisle Exp $
  4.  
  5. =head1 NAME
  6.  
  7. uf_uristr - Expand URI using heuristics
  8.  
  9. =head1 SYNOPSIS
  10.  
  11.  use URI::Heuristic qw(uf_uristr);
  12.  $u = uf_uristr("perl");             # http://www.perl.com
  13.  $u = uf_uristr("www.sol.no/sol");   # http://www.sol.no/sol
  14.  $u = uf_uristr("aas");              # http://www.aas.no
  15.  $u = uf_uristr("ftp.funet.fi");     # ftp://ftp.funet.fi
  16.  $u = uf_uristr("/etc/passwd");      # file:/etc/passwd
  17.  
  18. =head1 DESCRIPTION
  19.  
  20. This module provides functions that expand strings into real absolute
  21. URIs using some builtin heuristics.  Strings that already represent
  22. absolute URIs (i.e. start with a C<scheme:> part) are never modified
  23. and are returned unchanged.  The main use of these functions are to
  24. allow abbreviated URIs similar to what many web browsers allow for URIs
  25. typed in by the user.
  26.  
  27. The following functions are provided:
  28.  
  29. =over 4
  30.  
  31. =item uf_uristr($str)
  32.  
  33. The uf_uristr() function will try to make the string passed as argument 
  34. into a proper absolute URI string.  The "uf_" prefix stands for "User 
  35. Friendly".  Under MacOS, it assumes that any string with a common URL 
  36. scheme (http, ftp, etc.) is a URL rather than a local path.  So don't name 
  37. your volumes after common URL schemes and expect uf_uristr() to construct 
  38. valid file: URL's on those volumes for you, because it won't.
  39.  
  40. =item uf_uri($str)
  41.  
  42. This functions work the same way as uf_uristr() but it will
  43. return a C<URI> object.
  44.  
  45. =back
  46.  
  47. =head1 ENVIRONMENT
  48.  
  49. If the hostname portion of a URI does not contain any dots, then
  50. certain qualified guesses will be made.  These guesses are governed be
  51. the following two environment variables.
  52.  
  53. =over 10
  54.  
  55. =item COUNTRY
  56.  
  57. This is the two letter country code (ISO 3166) for your location.  If
  58. the domain name of your host ends with two letters, then it is taken
  59. to be the default country. See also L<Locale::Country>.
  60.  
  61. =item URL_GUESS_PATTERN
  62.  
  63. Contain a space separated list of URL patterns to try.  The string
  64. "ACME" is for some reason used as a placeholder for the host name in
  65. the URL provided.  Example:
  66.  
  67.  URL_GUESS_PATTERN="www.ACME.no www.ACME.se www.ACME.com"
  68.  export URL_GUESS_PATTERN
  69.  
  70. Specifying URL_GUESS_PATTERN disables any guessing rules based on
  71. country.  An empty URL_GUESS_PATTERN disables any guessing that
  72. involves host name lookups.
  73.  
  74. =back
  75.  
  76. =head1 COPYRIGHT
  77.  
  78. Copyright 1997-1998, Gisle Aas
  79.  
  80. This library is free software; you can redistribute it and/or
  81. modify it under the same terms as Perl itself.
  82.  
  83. =cut
  84.  
  85. use strict;
  86.  
  87. use vars qw(@EXPORT_OK $VERSION $MY_COUNTRY %LOCAL_GUESSING $DEBUG);
  88.  
  89. require Exporter;
  90. *import = \&Exporter::import;
  91. @EXPORT_OK = qw(uf_uri uf_uristr uf_url uf_urlstr);
  92. $VERSION = sprintf("%d.%02d", q$Revision: 4.11 $ =~ /(\d+)\.(\d+)/);
  93.  
  94. eval {
  95.     require Net::Domain;
  96.     my $fqdn = Net::Domain::hostfqdn();
  97.     $MY_COUNTRY = lc($1) if $fqdn =~ /\.([a-zA-Z]{2})$/;
  98.  
  99.     # Some other heuristics to guess country?  Perhaps looking
  100.     # at some environment variable (LANG, LC_ALL, ???)
  101.     $MY_COUNTRY = $ENV{COUNTRY} if exists $ENV{COUNTRY};
  102. };
  103.  
  104. %LOCAL_GUESSING =
  105. (
  106.  'us' => [qw(www.ACME.gov www.ACME.mil)],
  107.  'uk' => [qw(www.ACME.co.uk www.ACME.org.uk www.ACME.ac.uk)],
  108.  'au' => [qw(www.ACME.com.au www.ACME.org.au www.ACME.edu.au)],
  109.  'il' => [qw(www.ACME.co.il www.ACME.org.il www.ACME.net.il)],
  110.  # send corrections and new entries to <aas@sn.no>
  111. );
  112.  
  113.  
  114. sub uf_uristr ($)
  115. {
  116.     local($_) = @_;
  117.     print STDERR "uf_uristr: resolving $_\n" if $DEBUG;
  118.     return unless defined;
  119.  
  120.     s/^\s+//;
  121.     s/\s+$//;
  122.  
  123.     if (/^(www|web|home)\./) {
  124.     $_ = "http://$_";
  125.  
  126.     } elsif (/^(ftp|gopher|news|wais|http|https)\./) {
  127.     $_ = "$1://$_";
  128.  
  129.     } elsif ($^O ne "MacOS" && 
  130.         (m,^/,      ||          # absolute file name
  131.          m,^\.\.?/, ||          # relative file name
  132.          m,^[a-zA-Z]:[/\\],)    # dosish file name
  133.         )
  134.     {
  135.     $_ = "file:$_";
  136.  
  137.     } elsif ($^O eq "MacOS" && m/:/) {
  138.         # potential MacOS file name
  139.     unless (m/^(ftp|gopher|news|wais|http|https|mailto):/) {
  140.         require URI::file;
  141.         my $a = URI::file->new($_)->as_string;
  142.         $_ = ($a =~ m/^file:/) ? $a : "file:$a";
  143.     }
  144.     } elsif (/^\w+([\.\-]\w+)*\@(\w+\.)+\w{2,3}$/) {
  145.     $_ = "mailto:$_";
  146.  
  147.     } elsif (!/^[.+\-\w]+:/) {      # no scheme specified
  148.     if (s/^(\w+(?:\.\w+)*)([\/:\?\#]|$)/$2/) {
  149.         my $host = $1;
  150.  
  151.         if ($host !~ /\./ && $host ne "localhost") {
  152.         my @guess;
  153.         if (exists $ENV{URL_GUESS_PATTERN}) {
  154.             @guess = map { s/\bACME\b/$host/; $_ }
  155.                      split(' ', $ENV{URL_GUESS_PATTERN});
  156.         } else {
  157.             if ($MY_COUNTRY) {
  158.             my $special = $LOCAL_GUESSING{$MY_COUNTRY};
  159.             if ($special) {
  160.                 my @special = @$special;
  161.                 push(@guess, map { s/\bACME\b/$host/; $_ }
  162.                                                @special);
  163.             } else {
  164.                 push(@guess, "www.$host.$MY_COUNTRY");
  165.             }
  166.             }
  167.             push(@guess, map "www.$host.$_",
  168.                          "com", "org", "net", "edu", "int");
  169.         }
  170.  
  171.  
  172.         my $guess;
  173.         for $guess (@guess) {
  174.             print STDERR "uf_uristr: gethostbyname('$guess')..."
  175.               if $DEBUG;
  176.             if (gethostbyname($guess)) {
  177.             print STDERR "yes\n" if $DEBUG;
  178.             $host = $guess;
  179.             last;
  180.             }
  181.             print STDERR "no\n" if $DEBUG;
  182.         }
  183.         }
  184.         $_ = "http://$host$_";
  185.  
  186.     } else {
  187.         # pure junk, just return it unchanged...
  188.  
  189.     }
  190.     }
  191.     print STDERR "uf_uristr: ==> $_\n" if $DEBUG;
  192.  
  193.     $_;
  194. }
  195.  
  196. sub uf_uri ($)
  197. {
  198.     require URI;
  199.     URI->new(uf_uristr($_[0]));
  200. }
  201.  
  202. # legacy
  203. *uf_urlstr = \*uf_uristr;
  204.  
  205. sub uf_url ($)
  206. {
  207.     require URI::URL;
  208.     URI::URL->new(uf_uristr($_[0]));
  209. }
  210.  
  211. 1;
  212.