]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add extra Twitter cruft to jabber messages
authorEvan Prodromou <evan@prodromou.name>
Mon, 14 Jul 2008 03:45:03 +0000 (23:45 -0400)
committerEvan Prodromou <evan@prodromou.name>
Mon, 14 Jul 2008 03:45:03 +0000 (23:45 -0400)
darcs-hash:20080714034503-84dde-c06198f9d7b8b1c11f6c57e518dcf49b863ee6f3.gz

lib/jabber.php

index a36e19044e5dcb2a3e2da5c0a7b8f4c16ac33513..d8cc38dd5eec8b592c13343d323aa95718688b6f 100644 (file)
@@ -67,6 +67,53 @@ function jabber_connect($resource=NULL) {
        return $conn;
 }
 
+function jabber_send_notice($to, $notice) {
+       $conn = jabber_connect();
+       if (!$conn) {
+               return false;
+       }
+       $profile = Profile::staticGet($notice->profile_id);
+       if (!$profile) {
+               common_log(LOG_WARNING, 'Refusing to send notice with ' .
+                          'unknown profile ' . common_log_objstring($notice),
+                          __FILE__);
+               return false;
+       }
+       $msg = jabber_format_notice($profile, $notice);
+       $entry = jabber_format_entry($profile, $notice);
+       $conn->message($to, $msg, 'chat', $entry);
+       return true;
+}
+
+# Extra stuff defined by Twitter, needed by twitter clients
+
+function jabber_format_entry($profile, $notice) {
+       $noticeurl = common_local_url('shownotice',
+                                                                 array('notice' => $notice->id));
+       $entry = "<entry xmlns=\'http://www.w3.org/2005/Atom\'>\n";
+       $entry .= "<source>\n";
+       $entry .= "<title>" . $profile->nickname . " - " . common_config('site', 'name') . "</title>\n";
+       $entry .= "<link href='" . $profile->profileurl . "'/>\n";
+       $entry .= "<link rel='self' type='application/rss+xml' href='" . common_local_url('userrss', array('nickname' => $profile->nickname)) . "'/>\n";
+       $entry .= "<author><name>" . $profile->nickname . "</name></author>\n";
+       $entry .= "<icon>" . common_profile_avatar_url($profile, AVATAR_STREAM_SIZE) . "</icon>\n";
+       $entry .= "</source>\n";
+       $entry .= "<title>" . $msg . "</title>\n";
+       $entry .= "<summary>" . $msg . "</summary>\n";
+       $entry .= "<link rel='alternate' href='" . $noticeurl . "' />\n";
+       $entry .= "<id>". $notice->uri . "</id>\n";
+       $entry .= "<published>".common_date_w3dtf($notice->created)."</published>\n";
+       $entry .= "<updated>".common_date_w3dtf($notice->modified)."</updated>\n";
+       $entry .= "</entry>\n";
+       $entry .= "<event xmlns='http://jabber.org/protocol/pubsub#event'>\n";
+    $entry .= "<items xmlns='http://jabber.org/protocol/pubsub' ";
+       $entry .= "node='" . common_local_url('public') . "'>\n";
+       $entry .= "<item id='" . $notice->uri ."' />\n";
+       $entry .= "</items>\n";
+       $entry .= "</event>\n";
+       return $entry;
+}
+
 function jabber_send_message($to, $body, $type='chat', $subject=NULL) {
        $conn = jabber_connect();
        if (!$conn) {