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 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740
|
=head1 NAME
HTML::Microformats::Format::hCard - the hCard microformat
=head1 SYNOPSIS
use HTML::Microformats::DocumentContext;
use HTML::Microformats::Format::hCard;
my $context = HTML::Microformats::DocumentContext->new($dom, $uri);
my @cards = HTML::Microformats::Format::hCard->extract_all(
$dom->documentElement, $context);
foreach my $card (@cards)
{
print $card->get_fn . "\n";
}
=head1 DESCRIPTION
HTML::Microformats::Format::hCard inherits from HTML::Microformats::Format. See the
base class definition for a description of property getter/setter methods,
constructors, etc.
=head2 Additional Method
=over
=item * C<< to_vcard >>
This method exports the hCard as a vCard 3.0. It requires L<RDF::vCard> to work,
and will throw an error at run-time if it's not available.
=item * C<< to_vcard4 >>
This method exports the hCard as a vCard 3.0. It requires L<RDF::vCard> to work,
and will throw an error at run-time if it's not available.
=item * C<< to_vcard4_xml >>
This method exports the hCard as a vCard XML. It requires L<RDF::vCard> and
L<XML::LibXML> to work, and will throw an error at run-time if it's not available.
=back
=cut
package HTML::Microformats::Format::hCard;
use base qw(HTML::Microformats::Format HTML::Microformats::Mixin::Parser);
use strict qw(subs vars); no warnings;
use 5.010;
use HTML::Microformats::Datatype::String;
use HTML::Microformats::Format::hCard::n;
use HTML::Microformats::Format::hCard::org;
use HTML::Microformats::Format::hCard::tel;
use HTML::Microformats::Format::hCard::email;
use HTML::Microformats::Format::hCard::label;
use HTML::Microformats::Format::hCard::impp;
use HTML::Microformats::Utilities qw(stringify searchClass);
use Scalar::Util qw();
use Object::AUTHORITY;
BEGIN {
$HTML::Microformats::Format::hCard::AUTHORITY = 'cpan:TOBYINK';
$HTML::Microformats::Format::hCard::VERSION = '0.105';
}
our $HAS_VCARD_EXPORT;
our $HAS_VCARD_XML_EXPORT;
BEGIN
{
local $@ = undef;
eval 'use RDF::vCard;';
$HAS_VCARD_EXPORT = 1
if RDF::vCard::Exporter->can('new');
eval {
$HAS_VCARD_XML_EXPORT = 1
if RDF::vCard::Exporter->can('new') && $RDF::vCard::WITH_XML;
};
}
sub new
{
my ($class, $element, $context, %options) = @_;
my $cache = $context->cache;
return $cache->get($context, $element, $class)
if defined $cache && $cache->get($context, $element, $class);
my $self = {
'element' => $element ,
'context' => $context ,
'cache' => $cache ,
'id' => $context->make_bnode($element) ,
'id.holder' => $context->make_bnode ,
};
$self->{'in_hcalendar'} = $options{'in_hcalendar'};
bless $self, $class;
my $clone = $element->cloneNode(1);
$self->_expand_patterns($clone);
$self->_simple_parse($clone);
# In hCalendar, 'cn' is used instead of 'fn'.
if ($self->{'in_hcalendar'})
{
$self->{'DATA'}->{'fn'} = $self->{'DATA'}->{'cn'}
if defined $self->{'DATA'}->{'cn'}
&& !defined $self->{'DATA'}->{'fn'};
}
# Find more complicated nested structures.
# These can't be handled by _simple_parse.
push @{ $self->{'DATA'}->{'n'} }, HTML::Microformats::Format::hCard::n->extract_all($clone, $context);
push @{ $self->{'DATA'}->{'org'} }, HTML::Microformats::Format::hCard::org->extract_all($clone, $context);
push @{ $self->{'DATA'}->{'tel'} }, HTML::Microformats::Format::hCard::tel->extract_all($clone, $context);
push @{ $self->{'DATA'}->{'email'} }, HTML::Microformats::Format::hCard::email->extract_all($clone, $context);
push @{ $self->{'DATA'}->{'impp'} }, HTML::Microformats::Format::hCard::impp->extract_all($clone, $context);
push @{ $self->{'DATA'}->{'label'} }, HTML::Microformats::Format::hCard::label->extract_all($clone, $context);
foreach my $p (qw(n org tel email impp label adr))
{
delete $self->{'DATA'}->{$p}
unless @{ $self->{'DATA'}->{$p} || [] };
}
# Fallback if no 'org' is found.
# Try looking directly for org-like properties in the hCard.
unless (defined $self->{'DATA'}->{'org'} and @{ $self->{'DATA'}->{'org'} })
{
my $org = HTML::Microformats::Format::hCard::org->new($element, $context);
$org->{'id'} = $context->make_bnode; # don't share ID with $self!!
if ($org->data->{'organization-name'} || $org->data->{'organization-unit'})
{
push @{ $self->{'DATA'}->{'org'} }, $org;
}
}
# Fallback if no 'n' is found.
# Try looking directly for N-like properties in the hCard.
unless (defined $self->{'DATA'}->{'n'} and @{ $self->{'DATA'}->{'n'} })
{
my $n = HTML::Microformats::Format::hCard::n->new($element, $context);
$n->{'id'} = $context->make_bnode; # don't share ID with $self!!
if (@{ $n->data->{'family-name'} }
|| @{ $n->data->{'given-name'} }
|| @{ $n->data->{'additional-name'} }
|| @{ $n->data->{'initial'} }
|| @{ $n->data->{'honorific-prefix'} }
|| @{ $n->data->{'honorific-suffix'} })
{
push @{ $self->{'DATA'}->{'n'} }, $n;
}
}
# Detect kind ('individual', 'org', etc)
$self->_detect_kind;
# Perform N-optimisation.
$self->_n_optimisation
if lc $self->data->{'kind'} eq 'individual';
$cache->set($context, $element, $class, $self)
if defined $cache;
return $self;
}
sub new_fallback
{
my ($class, $element, $context, %options) = @_;
my $cache = $context->cache;
return $cache->get($context, $element, $class)
if defined $cache && $cache->get($context, $element, $class);
my $self = {
'element' => $element ,
'context' => $context ,
'cache' => $cache ,
'id' => $context->make_bnode($element) ,
'id.holder' => $context->make_bnode ,
};
bless $self, $class;
$self->{'DATA'}->{'fn'} = stringify($element);
if ($element->getAttribute('href') =~ /^mailto\:/i)
{
push @{$self->{'DATA'}->{'email'}}, HTML::Microformats::Format::hCard::email->new($element, $context);
}
elsif ($element->getAttribute('href') =~ /^(tel|fax|modem)\:/i)
{
push @{$self->{'DATA'}->{'tel'}}, HTML::Microformats::Format::hCard::email->new($element, $context);
}
elsif ($element->hasAttribute('href'))
{
push @{$self->{'DATA'}->{'url'}}, $context->uri( $element->getAttribute('href') );
}
elsif ($element->tagName eq 'img' and $element->hasAttribute('src'))
{
push @{$self->{'DATA'}->{'photo'}}, $context->uri( $element->getAttribute('src') );
}
return $self;
}
sub _n_optimisation
{
my $self = shift;
if ($self->data->{'kind'} eq 'individual')
{
my $fnIsNick = (defined $self->{'DATA_'}->{'fn'}) && ($self->{'DATA_'}->{'fn'} =~ /\b(nickname)\b/);
unless (@{ $self->data->{'n'} } || $fnIsNick)
{
my $fn = $self->data->{'fn'};
$fn =~ s/(^\s|\s$)//g;
$fn =~ s/\s+/ /g;
my @words = split / /, $fn;
if (scalar @words == 1)
{
push @{ $self->data->{'nickname'} }, ms($words[0], $self->{'DATA_'}->{'fn'}) ;
}
elsif (scalar @words)
{
if (($words[0] =~ /^.*\,$/ || $words[1] =~ /^.\.?$/) && !defined $words[2])
{
$words[0] =~ s/[\.\,]$//;
$words[1] =~ s/[\.\,]$//;
push @{ $self->{'DATA'}->{'n'} },
(bless {
'DATA' => {
'given-name' => [ ms($words[1], $self->{'DATA_'}->{'fn'}) ],
'family-name' => [ ms($words[0], $self->{'DATA_'}->{'fn'}) ],
},
'element' => $self->{'DATA_'}->{'fn'},
'context' => $self->context,
'cache' => $self->cache,
'id' => $self->context->make_bnode($self->{'DATA_'}->{'fn'}),
},
'HTML::Microformats::Format::hCard::n');
}
elsif (!defined $words[2])
{
push @{ $self->{'DATA'}->{'n'} },
(bless {
'DATA' => {
'given-name' => [ ms($words[0], $self->{'DATA_'}->{'fn'}) ],
'family-name' => [ ms($words[1], $self->{'DATA_'}->{'fn'}) ],
},
'element' => $self->{'DATA_'}->{'fn'},
'context' => $self->context,
'cache' => $self->cache,
'id' => $self->context->make_bnode($self->{'DATA_'}->{'fn'}),
},
'HTML::Microformats::Format::hCard::n');
}
}
}
}
}
sub _detect_kind
{
my $self = shift;
my $rv = $self->{'DATA'};
# If 'kind' class provided explicitly, trust it.
if (length $rv->{'kind'})
{
# With canonicalisation though.
$rv->{'kind'} =~ s/(^\s|\s+$)//g;
$rv->{'kind'} = lc $rv->{'kind'};
return;
}
# If an 'fn' has been provided, guess.
if (length $rv->{'fn'})
{
# Assume it's an individual.
$rv->{'kind'} = 'individual';
# But check to see if the fn matches an org name or unit.
ORGLOOP: foreach my $org (@{ $rv->{'org'} })
{
if ("".$org->data->{'organization-name'} eq $rv->{'fn'})
{
$rv->{'kind'} = 'org';
last ORGLOOP;
}
foreach my $ou (@{ $org->data->{'organization-unit'} })
{
if ("$ou" eq $rv->{'fn'})
{
$rv->{'kind'} = 'group';
last ORGLOOP;
}
}
}
# If not, then check to see if the fn matches an address part.
if ($rv->{'kind'} eq 'individual')
{
ADRLOOP: foreach my $adr (@{ $rv->{'adr'} })
{
my $isFirstPart = 1;
foreach my $part (qw(post-office-box extended-address
street-address locality region postal-code country-name))
{
foreach my $line (@{ $adr->data->{$part} })
{
if ("$line" eq $rv->{'fn'})
{
$rv->{'kind'} = 'location';
$self->{'id.holder'} = $adr->id(0, 'place') if $isFirstPart;
last ADRLOOP;
}
$isFirstPart = 0;
}
}
}
}
return;
}
# Final assumption.
$rv->{'kind'} = 'individual';
}
sub format_signature
{
my $self = shift;
my $vcard = 'http://www.w3.org/2006/vcard/ns#';
my $vx = 'http://buzzword.org.uk/rdf/vcardx#';
my $ical = 'http://www.w3.org/2002/12/cal/icaltzd#';
my $ix = 'http://buzzword.org.uk/rdf/icaltzdx#';
my $geo = 'http://www.w3.org/2003/01/geo/wgs84_pos#';
# vCard 4.0 introduces CLIENTPIDMAP - best to ignore?
my $rv = {
'root' => 'vcard',
'classes' => [
['adr', 'm*', {'embedded'=>'adr'}],
['agent', 'MM*', {'embedded'=>'hCard'}],
['anniversary', 'd?'], #extension
['bday', 'd?'],
['biota', 'm*', {'embedded'=>'species', 'use-key'=>'species'}], #extension
['birth', 'M?', {'embedded'=>'hCard adr geo'}], #extension
['caladruri', 'u*'], #extension
['caluri', 'MMu*', {'embedded'=>'hCalendar'}], #extension
['category', '*'],
['class', '?', {'value-title'=>'allow'}],
['dday', 'd?'], #extension
['death', 'M?', {'embedded'=>'hCard adr geo'}], #extension
['email', '*#'],
['fn', '1<'],
['fburl', 'MMu*', {'embedded'=>'hCalendar'}], #extension
['gender', '?'], #extension
['geo', 'm*', {'embedded'=>'geo'}],
['impp', '*#'], #extension
['kind', '?', {'value-title'=>'allow'}], #extension
['key', 'u*'],
['label', '*#'],
['lang', '*', {'value-title'=>'allow'}], #extension
['logo', 'u*'],
['mailer', '*'],
['n', '*#'],
['nickname', '*'],
['note', '*'],
['org', '*#'],
['photo', 'u*'],
['rev', 'd*'],
['role', '*'],
['sex', 'n?'], #extension (0=?,1=M,2=F,9=na)
['sort-string', '?'],
['sound', 'u*'],
['tel', '*#'],
['title', '*'],
['tz', '?', {'value-title'=>'allow'}],
['uid', 'U?'],
['url', 'u*'],
],
'options' => {
'rel-me' => '_has_relme',
'rel-tag' => 'category',
'hmeasure' => 'measures', #extension
'no-destroy' => ['adr', 'geo'],
},
'rdf:type' => ["${vcard}VCard"] ,
'rdf:property' => {
'adr' => { 'resource' => ["${vcard}adr"] } ,
'agent' => { 'resource' => ["${vcard}agent"] , 'literal' => ["${vx}agent-literal"] } ,
'anniversary' => { 'literal' => ["${vx}anniversary"] },
'bday' => { 'literal' => ["${vcard}bday"] },
'birth' => { 'resource' => ["${vx}birth"] , 'literal' => ["${vx}birth-literal"] },
'caladruri' => { 'resource' => ["${vx}caladruri"] },
'caluri' => { 'resource' => ["${vx}caluri"] },
'category' => { 'resource' => ["${vx}category", 'http://www.holygoat.co.uk/owl/redwood/0.1/tags/taggedWithTag'] , 'literal' => ["${vcard}category"]},
'class' => { 'literal' => ["${vcard}class"] },
'dday' => { 'literal' => ["${vx}dday"] },
'death' => { 'resource' => ["${vx}death"] , 'literal' => ["${vx}death-literal"] },
'email' => { 'resource' => ["${vcard}email"] },
'fn' => { 'literal' => ["${vcard}fn", "http://www.w3.org/2000/01/rdf-schema#label"] },
'fburl' => { 'resource' => ["${vx}fburl"] },
'gender' => { 'literal' => ["${vx}gender"] },
'geo' => { 'resource' => ["${vcard}geo"] } ,
'impp' => { 'resource' => ["${vx}impp"] },
'kind' => { 'literal' => ["${vx}kind"] },
'key' => { 'resource' => ["${vcard}key"] },
'label' => { 'resource' => ["${vcard}label"] },
'lang' => { 'literal' => ["${vx}lang"] },
'logo' => { 'resource' => ["${vcard}logo"] },
'mailer' => { 'literal' => ["${vcard}mailer"] },
'n' => { 'resource' => ["${vcard}n"] },
'nickname' => { 'literal' => ["${vcard}nickname"] },
'note' => { 'literal' => ["${vcard}note"] },
'org' => { 'resource' => ["${vcard}org"] },
'photo' => { 'resource' => ["${vcard}photo"] },
'rev' => { 'literal' => ["${vcard}rev"] },
'role' => { 'literal' => ["${vcard}role"] },
'sex' => { 'literal' => ["${vx}sex"] },
'sort-string' => { 'literal' => ["${vcard}sort-string"] },
'sound' => { 'resource' => ["${vcard}sound"] },
'species' => { 'resource' => ["${vx}x-species"] },
'tel' => { 'resource' => ["${vcard}tel"] },
'title' => { 'literal' => ["${vcard}title"] },
'tz' => { 'literal' => ["${vcard}tz"] },
'uid' => { 'resource' => ["${vcard}uid"], 'literal' => ["${vcard}uid"] },
'url' => { 'resource' => ["${vcard}url"] },
'cn' => { 'literal' => ["${ical}cn"] },
'cutype' => { 'literal' => ["${ical}cutype"] },
'rsvp' => { 'literal' => ["${ical}rsvp"] },
'delegated-from' => { 'resource' => ["${ix}delegatedFrom"] , 'literal' => ["${ical}delegatedFrom"] },
'sent-by' => { 'resource' => ["${ix}sentBy"] , 'literal' => ["${ical}sentBy"] },
},
};
if (ref $self and $self->{'in_hcalendar'})
{
push @{ $rv->{'classes'} }, ( # these are ALL extensions
['cn', '?'],
['cutype', '?'],
['member', '?'],
['rsvp', '?'],
['delegated-from', 'Mu*',{'embedded'=>'hCard'}],
['sent-by', 'Mu*', {'embedded'=>'hCard'}],
);
$rv->{'rdf:property'}->{'member'} = { 'resource' => ["${ix}member"] , 'literal' => ["${ix}member"] };
}
else
{
push @{ $rv->{'classes'} }, (
['member', 'Mu*', {'embedded'=>'hCard'}], #extension
);
$rv->{'rdf:property'}->{'member'} = { 'resource' => ["${vx}member"] , 'literal' => ["${vx}member"] };
}
return $rv;
}
sub add_to_model
{
my $self = shift;
my $model = shift;
$self->_simple_rdf($model);
foreach my $property (qw(n org adr geo agent tel email label impp birth caluri death fburl delegated-from sent-by member species))
{
foreach my $value (@{ $self->data->{$property} })
{
if (Scalar::Util::blessed($value) and $value->can('add_to_model'))
{
$value->add_to_model($model);
}
}
}
# From the vCard we can infer data about its holder.
{
$model->add_statement(RDF::Trine::Statement->new(
$self->id(1, 'holder'),
RDF::Trine::Node::Resource->new('http://purl.org/uF/hCard/terms/hasCard'),
$self->id(1),
));
if (lc $self->data->{'kind'} eq 'individual')
{
$model->add_statement(RDF::Trine::Statement->new(
$self->id(1, 'holder'),
RDF::Trine::Node::Resource->new('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),
RDF::Trine::Node::Resource->new('http://xmlns.com/foaf/0.1/Person'),
));
}
elsif (lc $self->data->{'kind'} eq 'org')
{
$model->add_statement(RDF::Trine::Statement->new(
$self->id(1, 'holder'),
RDF::Trine::Node::Resource->new('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),
RDF::Trine::Node::Resource->new('http://xmlns.com/foaf/0.1/Organization'),
));
}
elsif (lc $self->data->{'kind'} eq 'group')
{
$model->add_statement(RDF::Trine::Statement->new(
$self->id(1, 'holder'),
RDF::Trine::Node::Resource->new('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),
RDF::Trine::Node::Resource->new('http://xmlns.com/foaf/0.1/Group'),
));
}
elsif (lc $self->data->{'kind'} eq 'location')
{
$model->add_statement(RDF::Trine::Statement->new(
$self->id(1, 'holder'),
RDF::Trine::Node::Resource->new('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),
RDF::Trine::Node::Resource->new('http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing'),
));
}
$model->add_statement(RDF::Trine::Statement->new(
$self->id(1, 'holder'),
RDF::Trine::Node::Resource->new('http://xmlns.com/foaf/0.1/name'),
$self->_make_literal($self->data->{'fn'}),
));
$model->add_statement(RDF::Trine::Statement->new(
$self->id(1, 'holder'),
RDF::Trine::Node::Resource->new('http://xmlns.com/foaf/0.1/gender'),
$self->_make_literal($self->data->{'gender'}),
))
if defined $self->data->{'gender'};
foreach my $url (@{ $self->data->{'url'} })
{
$model->add_statement(RDF::Trine::Statement->new(
$self->id(1, 'holder'),
RDF::Trine::Node::Resource->new('http://xmlns.com/foaf/0.1/page'),
RDF::Trine::Node::Resource->new($url),
));
}
foreach my $tel (@{ $self->data->{'tel'} })
{
$model->add_statement(RDF::Trine::Statement->new(
$self->id(1, 'holder'),
RDF::Trine::Node::Resource->new('http://xmlns.com/foaf/0.1/phone'),
RDF::Trine::Node::Resource->new($tel->get_value),
))
if $tel->get_value =~ /^(tel|fax|modem):\S+$/i;
}
foreach my $e (@{ $self->data->{'email'} })
{
$model->add_statement(RDF::Trine::Statement->new(
$self->id(1, 'holder'),
RDF::Trine::Node::Resource->new('http://xmlns.com/foaf/0.1/mbox'),
RDF::Trine::Node::Resource->new($e->get_value),
))
if $e->get_value =~ /^(mailto):\S+$/i;
}
foreach my $photo (@{ $self->data->{'photo'} })
{
$model->add_statement(RDF::Trine::Statement->new(
$self->id(1, 'holder'),
RDF::Trine::Node::Resource->new('http://xmlns.com/foaf/0.1/depiction'),
RDF::Trine::Node::Resource->new($photo),
));
}
foreach my $geo (@{ $self->data->{'geo'} })
{
$model->add_statement(RDF::Trine::Statement->new(
$self->id(1, 'holder'),
RDF::Trine::Node::Resource->new('http://xmlns.com/foaf/0.1/based_near'),
$geo->id(1, 'location'),
));
}
foreach my $species (@{ $self->data->{'species'} })
{
$model->add_statement(RDF::Trine::Statement->new(
$self->id(1, 'holder'),
RDF::Trine::Node::Resource->new('http://purl.org/NET/biol/ns#hasTaxonomy'),
$species->id(1),
));
}
}
$self->context->representative_hcard;
if ($self->{'representative'})
{
$model->add_statement(RDF::Trine::Statement->new(
RDF::Trine::Node::Resource->new($self->context->document_uri),
RDF::Trine::Node::Resource->new('http://purl.org/uF/hCard/terms/representative'),
$self->id(1),
));
}
$self->context->contact_hcard;
if ($self->{'contact'})
{
$model->add_statement(RDF::Trine::Statement->new(
RDF::Trine::Node::Resource->new($self->context->document_uri),
RDF::Trine::Node::Resource->new('http://purl.org/uF/hCard/terms/contact'),
$self->id(1),
));
}
return $self;
}
sub to_vcard
{
my ($self) = @_;
die "Need RDF::vCard to export vCard.\n" unless $HAS_VCARD_EXPORT;
my $exporter = RDF::vCard::Exporter->new();
return $exporter->export_card($self->model, $self->id(1))->to_string;
}
sub to_vcard4
{
my ($self) = @_;
die "Need RDF::vCard to export vCard.\n" unless $HAS_VCARD_EXPORT;
my $exporter = RDF::vCard::Exporter->new( vcard_version => 4 );
return $exporter->export_card($self->model, $self->id(1))->to_string;
}
sub to_vcard4_xml
{
my ($self) = @_;
die "Need RDF::vCard and XML::LibXML to export vCard.\n" unless $HAS_VCARD_XML_EXPORT;
my $exporter = RDF::vCard::Exporter->new( vcard_version => 4 );
return $exporter->export_card($self->model, $self->id(1))->to_xml;
}
sub profiles
{
my $class = shift;
return qw(http://microformats.org/profile/hcard
http://ufs.cc/x/hcard
http://microformats.org/profile/specs
http://ufs.cc/x/specs
http://www.w3.org/2006/03/hcard
http://purl.org/uF/hCard/1.0/
http://purl.org/uF/2008/03/);
}
1;
=head1 MICROFORMAT
HTML::Microformats::Format::hCard supports hCard as described at
L<http://microformats.org/wiki/hcard>, with the following additions:
=over 4
=item * vCard 4.0 terms
This module includes additional property terms taken from the latest
vCard 4.0 drafts. For example the property 'impp' may be used to mark up
instant messaging addresses for a contact.
The vCard 4.0 property 'kind' is used to record the kind of contact described
by the hCard (an individual, an organisation, etc). In many cases this is
automatically inferred.
=item * Embedded species microformat
If the species microformat (see L<HTML::Microformats::Format::species>) is found
embedded within an hCard, then this is taken to be the species of a contact.
=item * Embedded hMeasure
If the hMeasure microformat (see L<HTML::Microformats::Format::hMeasure>) is
found embedded within an hCard, and no 'item' property is provided, then
the measurement is taken to pertain to the contact described by the hCard.
=back
=head1 RDF OUTPUT
Data is returned using the W3C's vCard vocabulary
(L<http://www.w3.org/2006/vcard/ns#>) with some supplemental
terms from Toby Inkster's vCard extensions vocabulary
(L<http://buzzword.org.uk/rdf/vcardx#>) and occasional other terms.
After long deliberation on the "has-a/is-a issue", the author of this
module decided that the holder of a vCard and the vCard itself should
be modelled as two separate resources, and this is how the data is
returned. Some information about the holder of the vCard can be inferred
from information about the vCard; for instance, the vCard's fn property
can be used to determin the holder's foaf:name. This module uses FOAF
(L<http://xmlns.com/foaf/0.1/>) to represent information about the holder
of the vCard.
=head1 BUGS
Please report any bugs to L<http://rt.cpan.org/>.
=head1 SEE ALSO
L<HTML::Microformats::Format>,
L<HTML::Microformats>.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT AND LICENCE
Copyright 2008-2012 Toby Inkster
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
=cut
|