aboutsummaryrefslogtreecommitdiffstats
path: root/include/diaspora.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-08-22 19:27:40 -0700
committerFriendika <info@friendika.com>2011-08-22 19:27:40 -0700
commitb0211499c1990792eaa501e86c984d67d4cd4f39 (patch)
treeb524d312fd2a5e8d7ea90a8f1bf98914de9ecddd /include/diaspora.php
parenteb2ef6dec43391631e2989b55bc4d762336680ca (diff)
downloadvolse-hubzilla-b0211499c1990792eaa501e86c984d67d4cd4f39.tar.gz
volse-hubzilla-b0211499c1990792eaa501e86c984d67d4cd4f39.tar.bz2
volse-hubzilla-b0211499c1990792eaa501e86c984d67d4cd4f39.zip
invoke notifier
Diffstat (limited to 'include/diaspora.php')
-rw-r--r--include/diaspora.php88
1 files changed, 41 insertions, 47 deletions
diff --git a/include/diaspora.php b/include/diaspora.php
index f3adc608e..78a642048 100644
--- a/include/diaspora.php
+++ b/include/diaspora.php
@@ -3,6 +3,43 @@
require_once('include/crypto.php');
require_once('include/items.php');
+function diaspora_get_contact_by_handle($uid,$handle) {
+ $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `addr` = '%s' LIMIT 1",
+ dbesc(NETWORK_DIASPORA),
+ intval($uid),
+ dbesc($handle)
+ );
+ if($r && count($r))
+ return $r[0];
+ return false;
+}
+
+function find_diaspora_person_by_handle($handle) {
+ $r = q("select * from fcontact where network = '%s' and addr = '%s' limit 1",
+ dbesc(NETWORK_DIASPORA),
+ dbesc($handle)
+ );
+ if(count($r)) {
+ // update record occasionally so it doesn't get stale
+ $d = strtotime($r[0]['updated'] . ' +00:00');
+ if($d < strtotime('now - 14 days')) {
+ q("delete from fcontact where id = %d limit 1",
+ intval($r[0]['id'])
+ );
+ }
+ else
+ return $r[0];
+ }
+ require_once('include/Scrape.php');
+ $r = probe_url($handle, PROBE_DIASPORA);
+ if((count($r)) && ($r['network'] === NETWORK_DIASPORA)) {
+ add_fcontact($r);
+ return ($r);
+ }
+ return false;
+}
+
+
function get_diaspora_key($uri) {
logger('Fetching diaspora key for: ' . $uri);
@@ -13,16 +50,6 @@ function get_diaspora_key($uri) {
}
-function diaspora_base_message($type,$data) {
-
- $tpl = get_markup_template('diaspora_' . $type . '.tpl');
- if(! $tpl)
- return '';
- return replace_macros($tpl,$data);
-
-}
-
-
function diaspora_msg_build($msg,$user,$contact,$prvkey,$pubkey) {
$a = get_app();
@@ -262,42 +289,6 @@ function diaspora_decode($importer,$xml) {
}
-function diaspora_get_contact_by_handle($uid,$handle) {
- $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `addr` = '%s' LIMIT 1",
- dbesc(NETWORK_DIASPORA),
- intval($uid),
- dbesc($handle)
- );
- if($r && count($r))
- return $r[0];
- return false;
-}
-
-function find_diaspora_person_by_handle($handle) {
- $r = q("select * from fcontact where network = '%s' and addr = '%s' limit 1",
- dbesc(NETWORK_DIASPORA),
- dbesc($handle)
- );
- if(count($r)) {
- // update record occasionally so it doesn't get stale
- $d = strtotime($r[0]['updated'] . ' +00:00');
- if($d < strtotime('now - 14 days')) {
- q("delete from fcontact where id = %d limit 1",
- intval($r[0]['id'])
- );
- }
- else
- return $r[0];
- }
- require_once('include/Scrape.php');
- $r = probe_url($handle, PROBE_DIASPORA);
- if((count($r)) && ($r['network'] === NETWORK_DIASPORA)) {
- add_fcontact($r);
- return ($r);
- }
- return false;
-}
-
function diaspora_request($importer,$xml) {
@@ -599,6 +590,8 @@ function diaspora_comment($importer,$xml,$msg) {
}
// notify others
+ proc_run('php','include/notifier.php','comment',$message_id);
+
return;
}
@@ -768,7 +761,8 @@ EOT;
);
}
- // FIXME send notification
+ // notify others
+ proc_run('php','include/notifier.php','comment',$message_id);
return;
}