This repository has been archived by the owner on Dec 1, 2021. It is now read-only.
forked from easyrdf/easyrdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
foafinfo.php
87 lines (78 loc) · 2.4 KB
/
foafinfo.php
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
<?php
/**
* Display the basic information in a FOAF document
*
* The example starts by loading the requested FOAF document
* from the web. It then tries to work out if the URI given
* was for the person or the document about the person.
*
* If a person is found, then the person's name, homepage
* and description are shown, along with a list of the
* person's friends.
*
* @package EasyRdf
* @copyright Copyright (c) 2009-2014 Nicholas J Humfrey
* @license http://unlicense.org/
*/
require_once realpath(__DIR__.'/..')."/vendor/autoload.php";
require_once __DIR__."/html_tag_helpers.php";
?>
<html>
<head><title>EasyRdf FOAF Info Example</title></head>
<body>
<h1>EasyRdf FOAF Info Example</h1>
<?= form_tag() ?>
<?= text_field_tag('uri', 'http://njh.me/foaf.rdf', array('size'=>50)) ?>
<?= submit_tag() ?>
<?= form_end_tag() ?>
<?php
if (isset($_REQUEST['uri'])) {
$graph = \EasyRdf\Graph::newAndLoad($_REQUEST['uri']);
if ($graph->type() == 'foaf:PersonalProfileDocument') {
$person = $graph->primaryTopic();
} elseif ($graph->type() == 'foaf:Person') {
$person = $graph->resource();
}
}
if (isset($person)) {
?>
<dl>
<dt>Name:</dt><dd><?= $person->get('foaf:name') ?></dd>
<dt>Homepage:</dt><dd><?= link_to($person->get('foaf:homepage')) ?></dd>
</dl>
<?php
echo "<h2>Known Persons</h2>\n";
echo "<ul>\n";
foreach ($person->all('foaf:knows') as $friend) {
$label = $friend->label();
if (!$label) {
$label = $friend->getUri();
}
if ($friend->isBNode()) {
echo "<li>$label</li>";
} else {
echo "<li>".link_to_self($label, 'uri='.urlencode($friend))."</li>";
}
}
echo "</ul>\n";
echo "<h2>Interests</h2>\n";
echo "<ul>\n";
foreach ($person->all('foaf:interest') as $interest) {
$label = $interest->label();
if ($label) {
if ($interest->isBNode()) {
echo "<li>$label</li>";
} else {
echo "<li>".$interest->htmlLink($label)."</li>";
}
}
}
echo "</ul>\n";
}
if (isset($graph)) {
echo "<br />";
echo $graph->dump();
}
?>
</body>
</html>