Add a bunch of Rael plugins.
[matthijs/upstream/blosxom-plugins.git] / general / whoami
1 # Blosxom Plugin: whoami
2 # Author(s): Rael Dornfest <rael@oreilly.com> 
3 # Version: 2.0b4-5
4 # Documentation: See the bottom of this file or type: perldoc whoami
5
6 package whoami;
7
8 # --- Configurable variables -----
9
10 # --------------------------------
11
12 $fullname;
13 $username;
14
15 use File::stat;
16
17 sub start {
18   1;
19 }
20
21 sub story {
22   my($pkg, $path, $filename, $story_ref, $title_ref, $body_ref) = @_;
23
24   $username = $fullname = '';
25
26   if ( -e "$blosxom::datadir$path/$filename.$blosxom::file_extension" ) {
27     my @user_info = getpwuid( stat("$blosxom::datadir$path/$filename.$blosxom::file_extension")->uid );
28     ($username, $fullname) = ($user_info[0],$user_info[6]);
29   };
30
31   1;
32 }
33
34 1;
35
36 __END__
37
38 =head1 NAME
39
40 Blosxom Plug-in: whoami
41
42 =head1 SYNOPSIS
43
44 Populates $whoami::username and $whoami::$fullname with 
45 local username and full name, respectively, for each story.  Useful
46 for group Blosxom blogs.
47
48 =head1 VERSION
49
50 2.0b4-5
51
52 Version number coincides with the version of Blosxom with which the 
53 current version was first bundled.
54
55 =head1 AUTHOR
56
57 Rael Dornfest  <rael@oreilly.com>, http://www.raelity.org/
58
59 =head1 SEE ALSO
60
61 Blosxom Home/Docs/Licensing: http://www.raelity.org/apps/blosxom/
62
63 Blosxom Plugin Docs: http://www.raelity.org/apps/blosxom/plugin.shtml
64
65 =head1 BUGS
66
67 Address bug reports and comments to the Blosxom mailing list 
68 [http://www.yahoogroups.com/group/blosxom].
69
70 =head1 LICENSE
71
72 Blosxom and this Blosxom Plug-in
73 Copyright 2003, Rael Dornfest 
74
75 Permission is hereby granted, free of charge, to any person obtaining a
76 copy of this software and associated documentation files (the "Software"),
77 to deal in the Software without restriction, including without limitation
78 the rights to use, copy, modify, merge, publish, distribute, sublicense,
79 and/or sell copies of the Software, and to permit persons to whom the
80 Software is furnished to do so, subject to the following conditions:
81
82 The above copyright notice and this permission notice shall be included
83 in all copies or substantial portions of the Software.
84
85 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
86 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
87 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
88 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
89 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
90 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
91 OTHER DEALINGS IN THE SOFTWARE.