/usr/share/perl5/User/Identity.pm is in libuser-identity-perl 0.94-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | # Copyrights 2003-2014 by [Mark Overmeer <perl@overmeer.net>].
# For other contributors see Changes.
# See the manual pages for details on the licensing terms.
# Pod stripped from pm file by OODoc 2.01.
package User::Identity;
our $VERSION = '0.94';
use base 'User::Identity::Item';
use strict;
use warnings;
use Carp;
use overload '""' => 'fullName';
#-----------------------------------------
my @attributes = qw/charset courtesy birth full_name formal_name
firstname gender initials language nickname prefix surname titles /;
sub init($)
{ my ($self, $args) = @_;
exists $args->{$_} && ($self->{'UI_'.$_} = delete $args->{$_})
foreach @attributes;
$self->SUPER::init($args);
}
sub type() { 'user' }
sub user() { shift }
sub charset() { shift->{UI_charset} || $ENV{LC_CTYPE} }
sub nickname()
{ my $self = shift;
$self->{UI_nickname} || $self->name;
# TBI: If OS-specific info exists, then username
}
sub firstname()
{ my $self = shift;
$self->{UI_firstname} || ucfirst $self->nickname;
}
sub initials()
{ my $self = shift;
return $self->{UI_initials}
if defined $self->{UI_initials};
if(my $firstname = $self->firstname)
{ my $i = '';
while( $firstname =~ m/(\w+)(\-)?/g )
{ my ($part, $connect) = ($1,$2);
$connect ||= '.';
$part =~ m/^(chr|th|\w)/i;
$i .= ucfirst(lc $1).$connect;
}
return $i;
}
}
sub prefix() { shift->{UI_prefix} }
sub surname() { shift->{UI_surname} }
sub fullName()
{ my $self = shift;
return $self->{UI_full_name}
if defined $self->{UI_full_name};
my ($first, $prefix, $surname)
= @$self{ qw/UI_firstname UI_prefix UI_surname/};
$surname = ucfirst $self->nickname if defined $first && ! defined $surname;
$first = $self->firstname if !defined $first && defined $surname;
my $full = join ' ', grep {defined $_} ($first,$prefix,$surname);
$full = $self->firstname unless length $full;
# TBI: if OS-specific knowledge, then unix GCOS?
$full;
}
sub formalName()
{ my $self = shift;
return $self->{UI_formal_name}
if defined $self->{UI_formal_name};
my $initials = $self->initials;
my $firstname = $self->{UI_firstname};
$firstname = "($firstname)" if defined $firstname;
my $full = join ' ', grep {defined $_}
$self->courtesy, $initials
, @$self{ qw/UI_prefix UI_surname UI_titles/ };
}
my %male_courtesy
= ( mister => 'en'
, mr => 'en'
, sir => 'en'
, 'de heer' => 'nl'
, mijnheer => 'nl'
, dhr => 'nl'
, herr => 'de'
);
my %male_courtesy_default
= ( en => 'Mr.'
, nl => 'De heer'
, de => 'Herr'
);
my %female_courtesy
= ( miss => 'en'
, ms => 'en'
, mrs => 'en'
, madam => 'en'
, mevr => 'nl'
, mevrouw => 'nl'
, frau => 'de'
);
my %female_courtesy_default
= ( en => 'Madam'
, nl => 'Mevrouw'
, de => 'Frau'
);
sub courtesy()
{ my $self = shift;
return $self->{UI_courtesy}
if defined $self->{UI_courtesy};
my $table
= $self->isMale ? \%male_courtesy_default
: $self->isFemale ? \%female_courtesy_default
: return undef;
my $lang = lc $self->language;
return $table->{$lang} if exists $table->{$lang};
$lang =~ s/\..*//; # "en_GB.utf8" --> "en-GB" and retry
return $table->{$lang} if exists $table->{$lang};
$lang =~ s/[-_].*//; # "en_GB.utf8" --> "en" and retry
$table->{$lang};
}
# TBI: if we have a courtesy, we may detect the language.
# TBI: when we have a postal address, we may derive the language from
# the country.
# TBI: if we have an e-mail addres, we may derive the language from
# that.
sub language() { shift->{UI_language} || 'en' }
sub gender() { shift->{UI_gender} }
sub isMale()
{ my $self = shift;
if(my $gender = $self->{UI_gender})
{ return $gender =~ m/^[mh]/i;
}
if(my $courtesy = $self->{UI_courtesy})
{ $courtesy = lc $courtesy;
$courtesy =~ s/[^\s\w]//g;
return 1 if exists $male_courtesy{$courtesy};
}
undef;
}
sub isFemale()
{ my $self = shift;
if(my $gender = $self->{UI_gender})
{ return $gender =~ m/^[vf]/i;
}
if(my $courtesy = $self->{UI_courtesy})
{ $courtesy = lc $courtesy;
$courtesy =~ s/[^\s\w]//g;
return 1 if exists $female_courtesy{$courtesy};
}
undef;
}
sub dateOfBirth() { shift->{UI_birth} }
sub birth()
{ my $birth = shift->dateOfBirth;
my $time;
if($birth =~ m/^\s*(\d{4})[-\s]*(\d{2})[-\s]*(\d{2})\s*$/)
{ # Pre-formatted.
return sprintf "%04d%02d%02d", $1, $2, $3;
}
eval "require Date::Parse";
unless($@)
{ my ($day,$month,$year) = (Date::Parse::strptime($birth))[3,4,5];
if(defined $year)
{ return sprintf "%04d%02d%02d"
, ($year + 1900)
, (defined $month ? $month+1 : 0)
, ($day || 0);
}
}
# TBI: Other date parsers
undef;
}
sub age()
{ my $birth = shift->birth or return;
my ($year, $month, $day) = $birth =~ m/^(\d{4})(\d\d)(\d\d)$/;
my ($today, $tomonth, $toyear) = (localtime)[3,4,5];
$tomonth++;
my $age = $toyear+1900 - $year;
$age-- if $month > $tomonth || ($month == $tomonth && $day >= $today);
$age;
}
sub titles() { shift->{UI_titles} }
1;
|