$VERSION = 1.0; package Net::NNTP::Auth; our $VERSION = "1.0"; # -*- Perl -*- Thu Apr 22 11:01:27 CDT 2004 ############################################################################### # Written by Tim Skirvin # Copyright 2000-2004, Tim Skirvin. Redistribution terms are below. ############################################################################### =head1 NAME Net::NNTP::Auth - a standard NNTP authentication method =head1 SYNOPSIS use Net::NNTP::Auth; my ($nntpuser, $nntppass) = Net::NNTP::Auth->nntpauth($server->server); use Net::NNTP; my $nntp = new Net::NNTP; $nntp->authinfo($nntpuser, $nntppass); =head1 DESCRIPTION NNTP authentication is a standard feature of most news servers nowadays, though many news readers have yet to catch up. When writing your own news reader, though, you have to keep track of this data separately, unless you have a standardized place to store the information - like this module. This module offers a few functions which parse the local ~/.nntpauth file and return the appropriate data. This file contains lines that look like this: news.server.invalid username password news2.server2.invalid username2 password4 That's it. The functions are called by offering forth a C, and the first user/password pair in the file is returned. These values can then be passed into Net::NNTP's B function. =cut use strict; use Exporter; use vars qw( $NNTPAUTH $DEBUG $VERSION ); $NNTPAUTH = "$ENV{'HOME'}/.nntpauth"; $DEBUG = 0; =head1 METHODS =over 4 =item nntpauth ( SERVER ) Parses ~/.nntpauth for the given C. Returns two items - the user name and the password. If one or both of these is not found, then the appropriate value is set to 'undef'. =cut sub nntpauth { my ($class, $server) = @_; return (undef, undef) unless $server; warn "Trying to get auth information for $server\n" if $DEBUG; return (undef, undef) unless (-r $NNTPAUTH); my ($nntpuser, $nntppass); open (CONFIG, "<$NNTPAUTH") or warn "Couldn't open $NNTPAUTH: $@" && return undef; while () { chomp; if (/^\s*(\S+)\s+(\S+)\s+(\S+)\s*$/) { my $serv = $1; my $user = $2; my $pass = $3; $nntpuser = $user if ($serv =~ /^$server$/i); $nntppass = $pass if ($serv =~ /^$server$/i); } } close (CONFIG); ($nntpuser || undef, $nntppass || undef); } =item nntpuser ( SERVER ) =item nntppass ( SERVER ) Invokes B, and returns the appropriate item from the list - the user name for B, or the password for B. =back =cut sub nntpuser { @{nntpauth(@_)}[0] } sub nntppass { @{nntpauth(@_)}[1] } =head1 NOTES Please note that this is an extremely small module. The only real purpose is to standardize on the ~/.nntpauth format that I've been using for a long time. It's convenient. Why not? =head1 AUTHOR Written by Tim Skirvin =head1 LICENSE This code may be redistributed under the same terms as Perl itself. =head1 COPYRIGHT Copyright 2000-2004 by Tim Skirvin . This code may be redistributed under the same terms as Perl itself. =cut 1; ############################################################################### ### Version History ########################################################### ############################################################################### # v1.0 Thu Apr 22 11:01:44 CDT 2004 ### Nothing's changed in four years; it's working; let's call this v1.0.