1
1
Fork 0

inline salmon magic keys

This commit is contained in:
Mike Macgirvin 2010-10-12 04:07:03 -07:00
commit 013d2604f8
4 changed files with 31 additions and 8 deletions

View file

@ -8,14 +8,14 @@ function modexp_init(&$a) {
killme();
$nick = $a->argv[1];
$r = q("SELECT `pubkey` FROM `user` WHERE `nickname` = '%s' LIMIT 1",
$r = q("SELECT `spubkey` FROM `user` WHERE `nickname` = '%s' LIMIT 1",
dbesc($nick)
);
if(! count($r))
killme();
$lines = explode("\n",$r[0]['pubkey']);
$lines = explode("\n",$r[0]['spubkey']);
unset($lines[0]);
unset($lines[count($lines)]);
$x = base64_decode(implode('',$lines));
@ -30,4 +30,5 @@ function modexp_init(&$a) {
killme();
}
}

View file

@ -1,5 +1,6 @@
<?php
require_once('salmon.php');
function xrd_content(&$a) {
@ -16,6 +17,11 @@ function xrd_content(&$a) {
if(! count($r))
killme();
$salmon_key = salmon_key($r[0]['spubkey']);
$tpl = load_view_file('view/xrd_person.tpl');
$o = replace_macros($tpl, array(
@ -23,10 +29,10 @@ function xrd_content(&$a) {
'$profile_url' => $a->get_baseurl() . '/profile/' . $r[0]['nickname'],
'$photo' => $a->get_baseurl() . '/photo/profile/' . $r[0]['uid'],
'$salmon' => $a->get_baseurl() . '/salmon/' . $r[0]['nickname'] . '/mention',
'$modexp' => $a->get_baseurl() . '/modexp/' . $r[0]['nickname']
'$modexp' => 'data:application/magic-public-key,' . $salmon_key
));
echo $o;
killme();
}
}