diff options
Diffstat (limited to 'mod/foafssl/views/foaf')
-rw-r--r-- | mod/foafssl/views/foaf/canvas/layouts/widgets.php | 2 | ||||
-rw-r--r-- | mod/foafssl/views/foaf/foafssl/profile.php | 16 | ||||
-rwxr-xr-x | mod/foafssl/views/foaf/pageshells/pageshell.php | 54 |
3 files changed, 72 insertions, 0 deletions
diff --git a/mod/foafssl/views/foaf/canvas/layouts/widgets.php b/mod/foafssl/views/foaf/canvas/layouts/widgets.php new file mode 100644 index 000000000..acb6c3546 --- /dev/null +++ b/mod/foafssl/views/foaf/canvas/layouts/widgets.php @@ -0,0 +1,2 @@ +<?php +?> diff --git a/mod/foafssl/views/foaf/foafssl/profile.php b/mod/foafssl/views/foaf/foafssl/profile.php new file mode 100644 index 000000000..b11708a32 --- /dev/null +++ b/mod/foafssl/views/foaf/foafssl/profile.php @@ -0,0 +1,16 @@ +<?php +$user = $vars['user']; +if ($user) { + $options = array('types'=>'object','subtypes'=>'sslkey','owner_guid'=>$user->getGUID()); + $userkeys = elgg_get_entities($options); + foreach($userkeys as $key) { +?> +<rsa:RSAPublicKey> + <cert:identity rdf:resource="#me"/> + <rsa:public_exponent cert:decimal="<?php echo $key->exponent; ?>"/> + <rsa:modulus cert:hex="<?php echo $key->modulus; ?>"/> +</rsa:RSAPublicKey> +<?php + } +} +?> diff --git a/mod/foafssl/views/foaf/pageshells/pageshell.php b/mod/foafssl/views/foaf/pageshells/pageshell.php new file mode 100755 index 000000000..909c9aa58 --- /dev/null +++ b/mod/foafssl/views/foaf/pageshells/pageshell.php @@ -0,0 +1,54 @@ +<?php +/** + * Elgg XML output pageshell + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + * + */ + +header("Content-Type: application/rdf+xml"); +// echo $vars['body']; + +echo "<?xml version='1.0'?>\n"; + +if (!$owner = page_owner_entity()) { + if (!isloggedin()) { + exit; + } else { + $owner = $vars['user']; + } +} + +?> +<rdf:RDF + xml:lang="en" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" + xmlns:foaf="http://xmlns.com/foaf/0.1/" + xmlns:cert="http://www.w3.org/ns/auth/cert#" + xmlns:rsa="http://www.w3.org/ns/auth/rsa#" + xmlns:ya="http://blogs.yandex.ru/schema/foaf/" + xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <rdf:Description rdf:about=""> + <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/PersonalProfileDocument"/> + <foaf:maker rdf:resource="#me"/> + <foaf:primaryTopic rdf:resource="#me"/> + </rdf:Description> + <foaf:Person rdf:about="#me"> + <foaf:nick><?php echo $owner->username; ?></foaf:nick> + <foaf:name><?php echo $owner->name; ?></foaf:name> + <foaf:homepage rdf:resource="<?php echo $owner->getURL(); ?>" /> + <foaf:mbox_sha1sum><?php echo sha1("mailto:" . $owner->email); ?></foaf:mbox_sha1sum> + <foaf:img rdf:resource="<?php echo $vars['url']; ?>pg/icon/<?php echo $owner->username; ?>/large/icon.jpg" /> + <?php + echo $vars['body']; + ?> + </foaf:Person> + <?php + echo elgg_view('foafssl/profile', array('user'=>$owner)); + ?> +</rdf:RDF> |