#!/usr/bin/perl -w
#-----------------------------------------------------------------------------
#
#  Copyright (C) 2000 Ryan C. Gordon (icculus@linuxgames.com)
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
#
#-----------------------------------------------------------------------------

#-----------------------------------------------------------------------------
# Revision history:
#  1.0.0 : First release
#  1.0.2 : Minor bugfixes.
#  1.1.0 : Prints version in <title>, more customizable, optionally allows
#           fingering to arbitrary sites for use as a web interface to finger,
#           supports VirtualHost sites, better error output.
#  1.1.1 : Highlights URLs and email addresses.
#  1.2.0 : Changed email address. Moved script name to $script_link.
#           Reads [title], [url], and [img] tags.
#  1.2.1 : [center] and [font] tags added.
#  1.3.0 : (Yes, I went up two minors in one day.) Plain text output from
#           the command line.
#-----------------------------------------------------------------------------

# TODO: Let [img] tags nest inside [link] tags.

use strict;

# Version of IcculusFinger. Change this if you are forking the code.
my $version = "v1.3.0";


# This is the default title for the webpage. The user can override it with
#  the [title] tag in their .plan file.
my $title = "IcculusFinger $version";


# Location where the server can find the finger client it will be using
#  to get information. This string is executed and what it writes to stdout
#  is read in by this script.
my $fingerprog = "/usr/local/bin/afinger --portname=fingertags";


# Uncomment this to always do finger requests to the same host.
# Define which host the finger request goes to. If you don't define $host,
#  then users may finger any system on the internet by specifying a hostname:
#  user=dimwit@doofus.com, for example. Not setting $host at all like that
#  could leave a mild exploit available.
# This is ignored if run from the command line.
#my $host = undef;   # Makes this script work as a web interface to finger.
#my $host = "icculus.org";  # limit queries to users@icculus.org
my $host = $ENV{SERVER_NAME}; #  This is good for VirtualHost setups.


# This is the URL to where the script can be obtained. Feel free to change
#  it if you like. Leave it undef'd to not supply a link at all in the
#  final HTML output.
#my $scripturl = undef;
#my $scripturl = "/misc/finger.pl";
my $scripturl = "http://icculus.org/IcculusFinger/";


# This is printed after the credits at the bottom change it to whatever you
#  like. Obviously, HTML in the string is acceptable, as is an empty string
#  (""), but undef doesn't fly here.
my $wittyremark = "<br><i>Stick it in the camel and go.</i>";




#-----------------------------------------------------------------------------#
#     The rest is probably okay without you laying yer dirty mits on it.      #
#-----------------------------------------------------------------------------#

my $script_link = (defined $scripturl) ?
                     "<a href=\"$scripturl\">IcculusFinger $version</a>" :
                     "IcculusFinger $version" ;

my $do_html = 0;

sub output_start {

    return if not $do_html;

print <<__EOF__;
Content-type: text/html


<html>
  <head>
    <title> $title </title>
  </head>

  <body>

__EOF__

}


sub output_ending {

    return if not $do_html;

print <<__EOF__;

    <hr>
    <center>
      <font size="-3">
        $script_link was written by
        <a href="mailto:icculus\@clutteredmind.org">Ryan C. Gordon</a>.
        $wittyremark
      </font>
    </center>

  </body>
</html>

__EOF__

}




# Mainline.


my $user;

$host =~ tr/A-Z/a-z/ if defined $host;

if ((defined $ENV{GATEWAY_INTERFACE}) and ($ENV{GATEWAY_INTERFACE} ne "")) {
    my $QueryString = $ENV{QUERY_STRING};
    if ($QueryString =~ /user=(.*)/) {
        $user = $1;
        $user =~ s/&.*//;
        $user =~ tr/A-Z/a-z/;
    }
    $do_html = 1;
} else {
    $user = shift;
    if (not defined $user) {
        print("USAGE: $0 <username[\@hostname.dom]>\n");
        exit 42;
    }
    $user = "$user\@localhost" if (not $user =~ /\@/);
    $do_html = 0;
}

my $requested_host = undef;
if ((defined $user) && ($user =~ s/\@(.*)//)) {
    $requested_host = $1;
    $requested_host =~ tr/A-Z/a-z/;
}

my $errormsg = undef;
if (not defined $user) {
    $errormsg = "No user specified.";
} elsif ((not defined $host) and (not defined $requested_host)) {
    $errormsg = "No host specified.";
} elsif ((defined $host) and (defined $requested_host)) {
    if (($do_html) and ($host ne $requested_host)) {
        $errormsg = "You aren't permitted to specify a hostname, just a user.";
    }
} elsif (length($user) > 20) {
    # The 20 char limit is just for safety against potential buffer overflows
    #  in finger servers, but it's more or less arbitrary.
    # !!! TODO FIXME: Check for bogus characters in username/host.
    $errormsg = "Bogus user specified.";
}

if (defined $errormsg) {
    output_start();
    print "    <center><h1>" if $do_html;
    print "$errormsg";
    print "</h1></center>" if $do_html;
    print "\n";
} else {
    if (not defined $host) {
        $host = $requested_host;
    }

    if (not open(FINGER, "$fingerprog $user\@$host |")) {
        output_start();
        print("    <center><h1>Couldn't run finger program: $!.</h1></center>\n\n");
    } else {
        my $output_text = "";
        while (<FINGER>) {
            $output_text = $output_text . $_;
        }
        close(FINGER);

        # Change [title][/title] tags.
        while ($output_text =~ s/\[title\](.*?)\[\/title\]//is) {
            $title = $1;
        }

        if ($do_html) {
            # HTMLify some common characters...
            1 while ($output_text =~ s/&/&amp;/s);
            1 while ($output_text =~ s/</&lt;/s);
            1 while ($output_text =~ s/>/&gt;/s);
        }

        # Change [center][/center] tags.
        if ($do_html) {
            #1 while ($output_text =~ s/\[center](.*?)\[\/center\]/<\/code><center><code>$1<\/code><\/center><code>/is);
            1 while ($output_text =~ s/\[center](.*?)\[\/center\]/<center>$1<\/center>/is);
        } else {
            1 while ($output_text =~ s/\[center](.*?)\[\/center\]/$1/is);
        }

        # Change [font][/font] tags.
        if ($do_html) {
            1 while ($output_text =~ s/\[font (.*?)](.*?)\[\/font\]/<font $1>$2<\/font>/is);
        } else {
            1 while ($output_text =~ s/\[font (.*?)](.*?)\[\/font\]/$2/is);
        }

        # Change [link][/link] tags.
        if ($do_html) {
            1 while ($output_text =~ s/\[link=\"(.*?)\"\](.*?)\[\/link\]/<a href=\"$1\">$2<\/a>/is);
        } else {
            1 while ($output_text =~ s/\[link=\"(.*?)\"\](.*?)\[\/link\]/$2/is);
        }

        # Change [img][/img] tags.
        if ($do_html) {
            1 while ($output_text =~ s/\[img=\"(.*?)\"\](.*?)\[\/img\]/<img src=\"$1\" alt=\"$2\">/is);
        } else {
            1 while ($output_text =~ s/\[img=\"(.*?)\"\](.*?)\[\/img\]/$2/is);
        }

        if ($do_html) {
            # try to make URLs into hyperlinks in the HTML output.
            1 while ($output_text =~ s/(?<!href=")(?<!src=")(?<!">)\b([a-zA-z]+?:\/\/[\S]+)/<a href="$1">$1<\/a>/);

            # try to make email addresses into hyperlinks in the HTML output.
            1 while ($output_text =~ s/\b(?<!href="mailto:)(?<!">)\b([\w\.]+?\@[\w\.]+)/<a href=\"mailto:$1\">$1<\/a>/);

            # HTMLify newlines.
            #1 while ($output_text =~ s/\r//s);
            #1 while ($output_text =~ s/(?<!<br>)\n/<br>\n/s);
        }

        output_start();

        if ($do_html) {
            print("    <center><h1>Finger info for $user\@$host...</h1></center>\n");
            #print("    <hr><code>\n\n");
            print("    <hr>\n\n<pre>\n\n");
            print("$output_text");
            #print("</code>\n\n");
            print("\n</pre>\n");
        } else {
            print("$title\n\n");
            print("$output_text\n");
        }
    }
}

output_ending();

exit 0;

# end of finger.pl ...


