/usr/share/perl5/vCard.pm is in libtext-vcard-perl 3.09-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 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 | package vCard;
$vCard::VERSION = '3.09';
use Moo;
use Carp;
use Path::Tiny;
use Text::vCard;
use vCard::AddressBook;
use URI;
=head1 NAME
vCard - Read, write, and edit vCards
=head1 SYNOPSIS
use vCard;
# create the object
my $vcard = vCard->new;
# these methods load vCard data
# (see method documentation for details)
$vcard->load_file($filename);
$vcard->load_string($string);
$vcard->load_hashref($hashref);
# simple getters/setters
$vcard->full_name('Bruce Banner, PhD');
$vcard->title('Research Scientist');
$vcard->photo('http://example.com/bbanner.gif');
# complex getters/setters
$vcard->phones([
{ type => ['work', 'text'], number => '651-290-1234', preferred => 1 },
{ type => ['home'], number => '651-290-1111' }
]);
$vcard->email_addresses([
{ type => ['work'], address => 'bbanner@ssh.secret.army.mil' },
{ type => ['home'], address => 'bbanner@timewarner.com' },
]);
# these methods output data in vCard format
my $file = $vcard->as_file($filename); # writes to $filename
my $string = $vcard->as_string; # returns a string
=head1 DESCRIPTION
A vCard is a digital business card. vCard and L<vCard::AddressBook> provide an
API for parsing, editing, and creating vCards.
This module is built on top of L<Text::vCard>. It provides a more intuitive user
interface.
To handle an address book with several vCard entries in it, start with
L<vCard::AddressBook> and then come back to this module.
Note that the vCard RFC requires version() and full_name(). This module does
not check or warn if these conditions have not been met.
=head1 ENCODING AND UTF-8
See the 'ENCODING AND UTF-8' section of L<vCard::AddressBook>.
=head1 METHODS
=cut
has encoding_in => ( is => 'rw', default => sub {'UTF-8'} );
has encoding_out => ( is => 'rw', default => sub {'UTF-8'} );
has _data => ( is => 'rw', default => sub { { version => '4.0' } } );
with 'vCard::Role::FileIO';
=head2 load_hashref($hashref)
$hashref should look like this:
full_name => 'Bruce Banner, PhD',
given_names => ['Bruce'],
family_names => ['Banner'],
title => 'Research Scientist',
photo => 'http://example.com/bbanner.gif',
phones => [
{ type => ['work'], number => '651-290-1234', preferred => 1 },
{ type => ['cell'], number => '651-290-1111' },
},
addresses => [
{ type => ['work'], ... },
{ type => ['home'], ... },
],
email_addresses => [
{ type => ['work'], address => 'bbanner@shh.secret.army.mil' },
{ type => ['home'], address => 'bbanner@timewarner.com' },
],
Returns $self in case you feel like chaining.
=cut
sub load_hashref {
my ( $self, $hashref ) = @_;
$self->_data($hashref);
$self->_data->{version} = '4.0'
unless $self->_data->{version};
$self->_data->{photo} = URI->new( $self->_data->{photo} )
unless ref $self->_data->{photo} =~ /^URI/;
return $self;
}
=head2 load_file($filename)
Returns $self in case you feel like chaining.
=cut
sub load_file {
my ( $self, $filename ) = @_;
my $addressBook = vCard::AddressBook->new({
encoding_in => $self->encoding_in,
encoding_out => $self->encoding_out,
});
my $vcard = $addressBook->load_file($filename)->vcards->[0];
$self->_data($vcard->_data);
return $self;
}
=head2 load_string($string)
Returns $self in case you feel like chaining. This method assumes $string is
decoded (but not MIME decoded).
=cut
sub load_string {
my ( $self, $string ) = @_;
my $addressBook = vCard::AddressBook->new({
encoding_in => $self->encoding_in,
encoding_out => $self->encoding_out,
});
my $vcard = $addressBook->load_string($string)->vcards->[0];
$self->_data($vcard->_data);
return $self;
}
=head2 as_string()
Returns the vCard as a string.
=cut
sub as_string {
my ($self) = @_;
my $vcard = Text::vCard->new( { encoding_out => $self->encoding_out } );
my $phones = $self->_data->{phones};
my $addresses = $self->_data->{addresses};
my $email_addresses = $self->_data->{email_addresses};
$self->_build_simple_nodes( $vcard, $self->_data );
$self->_build_name_node( $vcard, $self->_data );
$self->_build_org_node( $vcard, $self->_data->{org} ) if $self->_data->{org};
$self->_build_phone_nodes( $vcard, $phones ) if $phones;
$self->_build_address_nodes( $vcard, $addresses ) if $addresses;
$self->_build_email_address_nodes( $vcard, $email_addresses )
if $email_addresses;
return $vcard->as_string;
}
sub _simple_node_types {
qw/full_name title photo birthday timezone version/;
#geo, too?
}
sub _build_simple_nodes {
my ( $self, $vcard, $data ) = @_;
foreach my $node_type ( $self->_simple_node_types ) {
if ( $node_type eq 'full_name' ) {
next unless $data->{full_name};
$vcard->fullname( $data->{full_name} );
} else {
next unless $data->{$node_type};
$vcard->$node_type( $data->{$node_type} );
}
}
}
sub _build_complex_node {
my ( $self, $vcard, $node_type, $data ) = @_;
croak '$data must be HASHREF' unless ref $data eq 'HASH';
$vcard->add_node( { node_type => $node_type, data => [ $data ] } );
}
sub _build_org_node {
my ( $self, $vcard, $data ) = @_;
my $value = join ';', @{ $data || [] };
$self->_build_complex_node( $vcard, 'ORG', { value => $value } );
}
sub _build_name_node {
my ( $self, $vcard, $data ) = @_;
my $value = join ',', @{ $data->{family_names} || [] };
$value .= ';' . join ',', @{ $data->{given_names} || [] };
$value .= ';' . join ',', @{ $data->{other_names} || [] };
$value .= ';' . join ',', @{ $data->{honorific_prefixes} || [] };
$value .= ';' . join ',', @{ $data->{honorific_suffixes} || [] };
$self->_build_complex_node( $vcard, 'N', { value => $value } )
if $value ne ';;;;';
}
sub _build_phone_nodes {
my ( $self, $vcard, $phones ) = @_;
foreach my $phone (@$phones) {
# TODO: better error handling
croak "'number' attr missing from 'phones'" unless $phone->{number};
croak "'type' attr in 'phones' should be an arrayref"
if ( $phone->{type} && ref( $phone->{type} ) ne 'ARRAY' );
my $type = $phone->{type} || [];
my $preferred = $phone->{preferred};
my $number = $phone->{number};
my $params = [];
push @$params, { type => $_ } foreach @$type;
push @$params, { pref => $preferred } if $preferred;
$self->_build_complex_node( $vcard, 'TEL', { params => $params, value => $number } );
}
}
sub _build_address_nodes {
my ( $self, $vcard, $addresses ) = @_;
foreach my $address (@$addresses) {
croak "'type' attr in 'addresses' should be an arrayref"
if ( $address->{type} && ref( $address->{type} ) ne 'ARRAY' );
my $type = $address->{type} || [];
my $preferred = $address->{preferred};
my $params = [];
push @$params, { type => $_ } foreach @$type;
push @$params, { pref => $preferred } if $preferred;
my $value = join ';',
$address->{pobox} || '',
$address->{extended} || '',
$address->{street} || '',
$address->{city} || '',
$address->{region} || '',
$address->{post_code} || '',
$address->{country} || '';
$self->_build_complex_node( $vcard, 'ADR', { params => $params, value => $value } );
}
}
sub _build_email_address_nodes {
my ( $self, $vcard, $email_addresses ) = @_;
foreach my $email_address (@$email_addresses) {
# TODO: better error handling
croak "'address' attr missing from 'email_addresses'"
unless $email_address->{address};
croak "'type' attr in 'email_addresses' should be an arrayref"
if ( $email_address->{type}
&& ref( $email_address->{type} ) ne 'ARRAY' );
my $type = $email_address->{type} || [];
my $preferred = $email_address->{preferred};
my $params = [];
push @$params, { type => $_ } foreach @$type;
push @$params, { pref => $preferred } if $preferred;
# TODO: better error handling
my $value = $email_address->{address};
$self->_build_complex_node( $vcard, 'EMAIL', { params => $params, value => $value } );
}
}
=head2 as_file($filename)
Write data in vCard format to $filename.
Dies if not successful.
=cut
sub as_file {
my ( $self, $filename ) = @_;
my $file = $self->_path($filename);
$file->spew( $self->_iomode_out, $self->as_string );
return $file;
}
=head1 SIMPLE GETTERS/SETTERS
These methods accept and return strings.
=head2 version()
Version number of the vcard. Defaults to '4.0'
=head2 full_name()
A person's entire name as they would like to see it displayed.
=head2 title()
A person's position or job.
=head2 photo()
This should be a link. Accepts a string or a URI object. This method
always returns a L<URI> object.
TODO: handle binary images using the data uri schema
=head2 birthday()
=head2 timezone()
=head1 COMPLEX GETTERS/SETTERS
These methods accept and return array references rather than simple strings.
=head2 family_names()
Accepts/returns an arrayref of family names (aka surnames).
=head2 given_names()
Accepts/returns an arrayref.
=head2 other_names()
Accepts/returns an arrayref of names which don't qualify as family_names or
given_names.
=head2 honorific_prefixes()
Accepts/returns an arrayref. eg C<[ 'Dr.' ]>
=head2 honorific_suffixes()
Accepts/returns an arrayref. eg C<[ 'Jr.', 'MD' ]>
=head2 phones()
Accepts/returns an arrayref that looks like:
[
{ type => ['work'], number => '651-290-1234', preferred => 1 },
{ type => ['cell'], number => '651-290-1111' },
]
=head2 addresses()
Accepts/returns an arrayref that looks like:
[
{ type => ['work'], street => 'Main St', preferred => 0 },
{ type => ['home'],
pobox => 1234,
extended => 'asdf',
street => 'Army St',
city => 'Desert Base',
region => '',
post_code => '',
country => 'USA',
preferred => 1,
},
]
=head2 email_addresses()
Accepts/returns an arrayref that looks like:
[
{ type => ['work'], address => 'bbanner@ssh.secret.army.mil' },
{ type => ['home'], address => 'bbanner@timewarner.com', preferred => 1 },
]
=cut
sub version { shift->_setget( 'version', @_ ) }
sub full_name { shift->_setget( 'full_name', @_ ) }
sub family_names { shift->_setget( 'family_names', @_ ) }
sub given_names { shift->_setget( 'given_names', @_ ) }
sub other_names { shift->_setget( 'other_names', @_ ) }
sub honorific_prefixes { shift->_setget( 'honorific_prefixes', @_ ) }
sub honorific_suffixes { shift->_setget( 'honorific_suffixes', @_ ) }
sub title { shift->_setget( 'title', @_ ) }
sub photo { shift->_setget( 'photo', @_ ) }
sub birthday { shift->_setget( 'birthday', @_ ) }
sub timezone { shift->_setget( 'timezone', @_ ) }
sub phones { shift->_setget( 'phones', @_ ) }
sub addresses { shift->_setget( 'addresses', @_ ) }
sub email_addresses { shift->_setget( 'email_addresses', @_ ) }
sub organization { shift->_setget( 'organization', @_ ) }
sub _setget {
my ( $self, $attr, $value ) = @_;
$value = URI->new($value)
if $value && $attr eq 'photo' && ref $value =~ /^URI/;
$self->_data->{$attr} = $value if $value;
return $self->_data->{$attr};
}
=head1 AUTHOR
Eric Johnson (kablamo), github ~!at!~ iijo dot org
=head1 ACKNOWLEDGEMENTS
Thanks to L<Foxtons|http://foxtons.co.uk> for making this module possible by
donating a significant amount of developer time.
=cut
1;
|