Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Webbook: An Address Book for the World Wide Web (Web Techniques, Apr 1996)


#!/usr/local/bin/perl
# WebBook/Lite:
# This is a cut-down version of Simson Garfinkel's WebBook program, 
# specially developed for Web Techniques, April 1996.
#

# Define globals

$database = "/tmp/WebBook.data";
$max_entry = 450;

# Get Started:
if (!$standalone) {
    print "Content-type:text/html\n\n";
    &main;
    exit(0);
}

#################################################################
# CGI Interface Library. Taken from cgi-lib.pl. (C) 1994 Steven E. Brenner.
# For more information, see:
#     http://www.bio.cam.ac.uk/web/form.html       
#     http://www.seas.upenn.edu/~mengwong/forms/   
#

# ReadParse: Returns TRUE if there was input, FALSE if there was no input.

sub ReadParse {
  local (*in) = @_ if @_;
  local ($i, $key, $val);

  # Read in text
  if (&MethGet) {
    $in = $ENV{'QUERY_STRING'};
  } elsif (&MethPost) {
    read(STDIN,$in,$ENV{'CONTENT_LENGTH'});
  }

  @in = split(/[&;]/,$in); 

  foreach $i (0 .. $#in) {
    # Convert plus's to spaces
    $in[$i] =~ s/\+/ /g;

    # Split into key and value.  
    ($key, $val) = split(/=/,$in[$i],2); # splits on the first =.

    # Convert %XX from hex numbers to alphanumeric
    $key =~ s/%(..)/pack("c",hex($1))/ge;
    $val =~ s/%(..)/pack("c",hex($1))/ge;

    # Associate key and value
    $in{$key} .= "\0" if (defined($in{$key})); # \0 is the multiple separator
    $in{$key} .= $val;

  }

  return length($in); 
}

#
# Handle Post and Get methods:
#
sub MethGet  {  return ($ENV{'REQUEST_METHOD'} eq "GET"); }
sub MethPost {  return ($ENV{'REQUEST_METHOD'} eq "POST");}

#
# Return my URL
#
sub MyURL  {
  local ($port);
  $port = ":" . $ENV{'SERVER_PORT'} if  $ENV{'SERVER_PORT'} != 80;
  return  'http://' . $ENV{'SERVER_NAME'} .  $port . $ENV{'SCRIPT_NAME'};
}

################################################################
#
# WebBook starts here
#

sub main {

    dbmopen(%DB,$database,0666);

    &get_command;
}

sub get_command {

    if(&ReadParse(*input)) {
    $action = $input{'action'};
    $name   = $input{'name'};
    }
    
    $myurl = &MyURL;

    #
    # Decode the action
    #
    if($action eq "search"){        &do_search($name); return; }
    if($action eq "edit"){          &do_edit($name);   return; }
    if($action eq "save_entry"){    &do_save_entry;    return; }
    if($action eq "delete_entry"){  &do_delete_entry;  return; }

    if($action){
    print "<title>Error</title><h1>Unknown command '${action}'</h1>";
    return;
    }

    # Default - display an info message
    &do_info;
}


sub display_search_field {
    print <<XX;
        <center><h2>WebBook Search</h2></center>
        <form method=post action="$myurl">
        Search for: <input type=text size="16" name="name">
        <input type=submit name="search-type" value="find name">
        <input type=submit name="search-type" value="full-text">
        <input type=hidden name="action" value="search">
        </form>
        <hr>
        <form method=post action="$myurl">
        Alternatively, you may create a 
        <input type=submit value="new entry">
        <input type=hidden value="edit" name="action">
        <input type=hidden value=""     name="name">
        </form>
    <hr>
XX
}

#
# Searching:
# Return a list of matching names
# If an argument is provided, only print the matches.
#

sub find_names {
    local($to_match)  = $_[0];
    local($full_text) = $_[1];
    local(@list)      = keys %DB;
    local(@matched,$name);
    $num = @list;
    
    return sort @list if ($to_match eq ""); # no search string, return all
    
    foreach $name (@list){
    $_ = $name . ($full_text ? $DB{$name} : "");
    push(@matched,$name) if(m/$to_match/io);
    }

    return sort @matched;
}

sub do_search {

    local($stext) = $_[0];          # What we are searching for
    local($stype) = $input{'search-type'} eq "full-text";

    &display_search_field;

    local(@list);
    local($ent);
    local($escaped_name);
    

    @list = &find_names($stext,$full_text);

    print "<h1>$stype search for $stext</h1>\n";
    print "<ul>";
    
    foreach $_ (@list){
    
    $escaped_name = $_;
    $escaped_name =~ s/ /+/g;
        
    print "<li><big><a href=
                 \"$myurl?action=edit&name=$escaped_name\">$_</a></big><br>\n";

    print "<ul>";
    $ent = $DB{$_};
        
        # Now escape the various things in HTML tags
        
    $ent =~ s/&/&/g;
        $ent =~ s/</</g;
        
    # Note: the following four substitutions must be done in order
        
    # 1. Catch the URLs
    $ent =~ s#((http:|mailto:|ftp:)//[^ \n\t]*)#<a href="$1">$1</a>#g;
        
    # 2. Catch the email addresses
    $ent =~ s#([a-z0-9_.]*@[a-z0-9_.]*)# <a href="mailto:$1">$1</a>#gi;
        
    # 3. Now change newlines to <br>'s
    $ent =~ s/\n/<br>\n/g;
        
    print "$ent</ul><p>";
    }
    print "</ul>";
    print "<hr><i>To change an entry, click on the entry's name.</i>";
}

sub do_edit {

    local($ent) = $DB{$name};

    if($name eq ""){
    print "<h1>Create a new entry</h1>";
    }
    else{
    print "<h1>Edit $name</h1>";
    }
    print <<XX;
    <form method=post>
    <input type=text    name="name"     value="$name" size="60" ><br>
    <input type=hidden  name="old-name" value="$name">
    <input type=hidden  name="action"   value="save_entry">
    <textarea name="entry" rows=8 cols=60>$ent</textarea><br>
    <input type=submit  value="save"> Save your changes<br>
    </form>
XX
}

#
# Called to save-entry an entry
#
sub do_save_entry {
    $old_name = $input{'old-name'};
    $entry    = $input{'entry'};

    if(($size=length($entry)) > $max_entry){
    print <<XX;
    <h1>That entry is too big!</h1>
    Sorry, but this version of WebBook cannot accept entries that are 
    longer than <b>$max_entry</b> characters.<br> Your entry is 
        <b>$size</b> characters.
    Please hit the "back" button on
    your browser and shorten it.
XX
    return;
    }

    if($name eq ""){
    print <<XX;
    <title>Illegal name</title><h1>Illegal name</h1>
    Please specify a name.
XX
        return;
    }

    if(($old_name eq "") && ($DB{$name} ne "")){
    print <<XX;
    <title>WebBook error</title>
    <h1>Name in Use!</h1>
    There is already an entry by that name. Click the <b>back</b>
    button on your browser and change it.
XX
        return;
    }

    delete $DB{$old_name};
    $DB{$name} = $entry;
    
    &do_search($name);  # Display the new name
}

sub do_info {
    $num = scalar keys %DB;
    print <<XX;
<title>WebBook</title>
<h1>WebBook</h1>
Welcome to WebBook! You can search $num entries on this server.
<hr>
XX
    &display_search_field;
}

1;


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.