2014-01-13 01:30:01 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Name: Diaspora Post Connector
|
|
|
|
* Description: Post to Diaspora
|
2017-01-11 01:34:13 +01:00
|
|
|
* Version: 0.2
|
2014-01-13 01:30:01 +01:00
|
|
|
* Author: Michael Vogel <heluecht@pirati.ca>
|
|
|
|
*/
|
|
|
|
|
2017-01-11 01:34:13 +01:00
|
|
|
require_once("addon/diaspora/Diaspora_Connection.php");
|
|
|
|
|
2017-11-07 00:55:24 +01:00
|
|
|
use Friendica\Core\PConfig;
|
2017-11-08 05:00:18 +01:00
|
|
|
use Friendica\Database\DBM;
|
2017-11-07 00:55:24 +01:00
|
|
|
|
2014-01-13 01:30:01 +01:00
|
|
|
function diaspora_install() {
|
|
|
|
register_hook('post_local', 'addon/diaspora/diaspora.php', 'diaspora_post_local');
|
|
|
|
register_hook('notifier_normal', 'addon/diaspora/diaspora.php', 'diaspora_send');
|
|
|
|
register_hook('jot_networks', 'addon/diaspora/diaspora.php', 'diaspora_jot_nets');
|
|
|
|
register_hook('connector_settings', 'addon/diaspora/diaspora.php', 'diaspora_settings');
|
|
|
|
register_hook('connector_settings_post', 'addon/diaspora/diaspora.php', 'diaspora_settings_post');
|
|
|
|
register_hook('queue_predeliver', 'addon/diaspora/diaspora.php', 'diaspora_queue_hook');
|
|
|
|
}
|
|
|
|
function diaspora_uninstall() {
|
|
|
|
unregister_hook('post_local', 'addon/diaspora/diaspora.php', 'diaspora_post_local');
|
|
|
|
unregister_hook('notifier_normal', 'addon/diaspora/diaspora.php', 'diaspora_send');
|
|
|
|
unregister_hook('jot_networks', 'addon/diaspora/diaspora.php', 'diaspora_jot_nets');
|
|
|
|
unregister_hook('connector_settings', 'addon/diaspora/diaspora.php', 'diaspora_settings');
|
|
|
|
unregister_hook('connector_settings_post', 'addon/diaspora/diaspora.php', 'diaspora_settings_post');
|
|
|
|
unregister_hook('queue_predeliver', 'addon/diaspora/diaspora.php', 'diaspora_queue_hook');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function diaspora_jot_nets(&$a,&$b) {
|
|
|
|
if(! local_user())
|
|
|
|
return;
|
|
|
|
|
2017-11-07 00:55:24 +01:00
|
|
|
$diaspora_post = PConfig::get(local_user(),'diaspora','post');
|
2014-01-13 01:30:01 +01:00
|
|
|
if(intval($diaspora_post) == 1) {
|
2017-11-07 00:55:24 +01:00
|
|
|
$diaspora_defpost = PConfig::get(local_user(),'diaspora','post_by_default');
|
2014-01-13 01:30:01 +01:00
|
|
|
$selected = ((intval($diaspora_defpost) == 1) ? ' checked="checked" ' : '');
|
|
|
|
$b .= '<div class="profile-jot-net"><input type="checkbox" name="diaspora_enable"' . $selected . ' value="1" /> '
|
|
|
|
. t('Post to Diaspora') . '</div>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function diaspora_queue_hook(&$a,&$b) {
|
2014-04-22 15:28:23 +02:00
|
|
|
$hostname = $a->get_hostname();
|
|
|
|
|
2014-01-13 01:30:01 +01:00
|
|
|
$qi = q("SELECT * FROM `queue` WHERE `network` = '%s'",
|
|
|
|
dbesc(NETWORK_DIASPORA2)
|
|
|
|
);
|
|
|
|
if(! count($qi))
|
|
|
|
return;
|
|
|
|
|
|
|
|
require_once('include/queue_fn.php');
|
|
|
|
|
|
|
|
foreach($qi as $x) {
|
|
|
|
if($x['network'] !== NETWORK_DIASPORA2)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
logger('diaspora_queue: run');
|
|
|
|
|
|
|
|
$r = q("SELECT `user`.* FROM `user` LEFT JOIN `contact` on `contact`.`uid` = `user`.`uid`
|
|
|
|
WHERE `contact`.`self` = 1 AND `contact`.`id` = %d LIMIT 1",
|
|
|
|
intval($x['cid'])
|
|
|
|
);
|
|
|
|
if(! count($r))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$userdata = $r[0];
|
|
|
|
|
2017-11-07 00:55:24 +01:00
|
|
|
$handle = PConfig::get($userdata['uid'],'diaspora','handle');
|
|
|
|
$password = PConfig::get($userdata['uid'],'diaspora','password');
|
|
|
|
$aspect = PConfig::get($userdata['uid'],'diaspora','aspect');
|
2014-01-13 01:30:01 +01:00
|
|
|
|
|
|
|
$success = false;
|
|
|
|
|
2017-01-11 01:34:13 +01:00
|
|
|
if ($handle && $password) {
|
|
|
|
logger('diaspora_queue: able to post for user '.$handle);
|
2014-01-13 01:30:01 +01:00
|
|
|
|
|
|
|
$z = unserialize($x['content']);
|
|
|
|
|
|
|
|
$post = $z['post'];
|
|
|
|
|
|
|
|
logger('diaspora_queue: post: '.$post, LOGGER_DATA);
|
|
|
|
|
|
|
|
try {
|
|
|
|
logger('diaspora_queue: prepare', LOGGER_DEBUG);
|
2017-01-11 01:34:13 +01:00
|
|
|
$conn = new Diaspora_Connection($handle, $password);
|
|
|
|
logger('diaspora_queue: try to log in '.$handle, LOGGER_DEBUG);
|
|
|
|
$conn->logIn();
|
2014-01-13 01:30:01 +01:00
|
|
|
logger('diaspora_queue: try to send '.$body, LOGGER_DEBUG);
|
2017-01-11 01:34:13 +01:00
|
|
|
$conn->provider = $hostname;
|
|
|
|
$conn->postStatusMessage($post, $aspect);
|
2014-01-13 01:30:01 +01:00
|
|
|
|
|
|
|
logger('diaspora_queue: send '.$userdata['uid'].' success', LOGGER_DEBUG);
|
|
|
|
|
|
|
|
$success = true;
|
|
|
|
|
|
|
|
remove_queue_item($x['id']);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
logger("diaspora_queue: Send ".$userdata['uid']." failed: ".$e->getMessage(), LOGGER_DEBUG);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
logger('diaspora_queue: send '.$userdata['uid'].' missing username or password', LOGGER_DEBUG);
|
|
|
|
|
|
|
|
if (!$success) {
|
|
|
|
logger('diaspora_queue: delayed');
|
|
|
|
update_queue_time($x['id']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function diaspora_settings(&$a,&$s) {
|
|
|
|
|
2014-01-18 22:06:41 +01:00
|
|
|
if(! local_user())
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Add our stylesheet to the page so we can make our settings look nice */
|
|
|
|
|
|
|
|
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/diaspora/diaspora.css' . '" media="all" />' . "\r\n";
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2014-01-18 22:06:41 +01:00
|
|
|
/* Get the current state of our config variables */
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2017-11-07 00:55:24 +01:00
|
|
|
$enabled = PConfig::get(local_user(),'diaspora','post');
|
2014-01-18 22:06:41 +01:00
|
|
|
$checked = (($enabled) ? ' checked="checked" ' : '');
|
2014-04-24 16:18:36 +02:00
|
|
|
$css = (($enabled) ? '' : '-disabled');
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2017-11-07 00:55:24 +01:00
|
|
|
$def_enabled = PConfig::get(local_user(),'diaspora','post_by_default');
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2014-01-18 22:06:41 +01:00
|
|
|
$def_checked = (($def_enabled) ? ' checked="checked" ' : '');
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2017-11-07 00:55:24 +01:00
|
|
|
$handle = PConfig::get(local_user(), 'diaspora', 'handle');
|
|
|
|
$password = PConfig::get(local_user(), 'diaspora', 'password');
|
|
|
|
$aspect = PConfig::get(local_user(),'diaspora','aspect');
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2014-01-18 22:06:41 +01:00
|
|
|
$status = "";
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2017-01-11 01:34:13 +01:00
|
|
|
$r = q("SELECT `addr` FROM `contact` WHERE `self` AND `uid` = %d", intval(local_user()));
|
2017-11-08 05:00:18 +01:00
|
|
|
if (DBM::is_result($r)) {
|
2017-01-11 01:34:13 +01:00
|
|
|
$status = sprintf(t("Please remember: You can always be reached from Diaspora with your Friendica handle %s. "), $r[0]['addr']);
|
|
|
|
$status .= t('This connector is only meant if you still want to use your old Diaspora account for some time. ');
|
|
|
|
$status .= sprintf(t('However, it is preferred that you tell your Diaspora contacts the new handle %s instead.'), $r[0]['addr']);
|
|
|
|
}
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2017-01-11 01:34:13 +01:00
|
|
|
$aspects = false;
|
|
|
|
|
2017-06-09 03:20:27 +02:00
|
|
|
if ($handle && $password) {
|
2017-01-11 01:34:13 +01:00
|
|
|
$conn = new Diaspora_Connection($handle, $password);
|
|
|
|
$conn->logIn();
|
|
|
|
$aspects = $conn->getAspects();
|
|
|
|
if (!$aspects) {
|
|
|
|
$status = t("Can't login to your Diaspora account. Please check handle (in the format user@domain.tld) and password.");
|
2014-01-18 22:06:41 +01:00
|
|
|
}
|
|
|
|
}
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2014-01-18 22:06:41 +01:00
|
|
|
/* Add some HTML to the existing form */
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2014-01-18 22:06:41 +01:00
|
|
|
$s .= '<span id="settings_diaspora_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_diaspora_expanded\'); openClose(\'settings_diaspora_inflated\');">';
|
2014-04-24 16:18:36 +02:00
|
|
|
$s .= '<img class="connector'.$css.'" src="images/diaspora-logo.png" /><h3 class="connector">'. t('Diaspora Export').'</h3>';
|
2014-01-18 22:06:41 +01:00
|
|
|
$s .= '</span>';
|
|
|
|
$s .= '<div id="settings_diaspora_expanded" class="settings-block" style="display: none;">';
|
|
|
|
$s .= '<span class="fakelink" onclick="openClose(\'settings_diaspora_expanded\'); openClose(\'settings_diaspora_inflated\');">';
|
2014-04-24 16:18:36 +02:00
|
|
|
$s .= '<img class="connector'.$css.'" src="images/diaspora-logo.png" /><h3 class="connector">'. t('Diaspora Export').'</h3>';
|
2014-01-18 22:06:41 +01:00
|
|
|
$s .= '</span>';
|
|
|
|
|
|
|
|
if ($status) {
|
|
|
|
$s .= '<div id="diaspora-status-wrapper"><strong>';
|
|
|
|
$s .= $status;
|
|
|
|
$s .= '</strong></div><div class="clear"></div>';
|
|
|
|
}
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2014-01-18 22:06:41 +01:00
|
|
|
$s .= '<div id="diaspora-enable-wrapper">';
|
|
|
|
$s .= '<label id="diaspora-enable-label" for="diaspora-checkbox">' . t('Enable Diaspora Post Plugin') . '</label>';
|
|
|
|
$s .= '<input id="diaspora-checkbox" type="checkbox" name="diaspora" value="1" ' . $checked . '/>';
|
|
|
|
$s .= '</div><div class="clear"></div>';
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2014-01-18 22:06:41 +01:00
|
|
|
$s .= '<div id="diaspora-username-wrapper">';
|
2017-01-11 01:34:13 +01:00
|
|
|
$s .= '<label id="diaspora-username-label" for="diaspora-username">' . t('Diaspora handle') . '</label>';
|
|
|
|
$s .= '<input id="diaspora-username" type="text" name="handle" value="' . $handle . '" />';
|
2014-01-18 22:06:41 +01:00
|
|
|
$s .= '</div><div class="clear"></div>';
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2014-01-18 22:06:41 +01:00
|
|
|
$s .= '<div id="diaspora-password-wrapper">';
|
|
|
|
$s .= '<label id="diaspora-password-label" for="diaspora-password">' . t('Diaspora password') . '</label>';
|
2017-01-11 01:34:13 +01:00
|
|
|
$s .= '<input id="diaspora-password" type="password" name="password" value="' . $password . '" />';
|
2014-01-18 22:06:41 +01:00
|
|
|
$s .= '</div><div class="clear"></div>';
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2017-01-11 01:34:13 +01:00
|
|
|
if ($aspects) {
|
|
|
|
$single_aspect = new stdClass();
|
|
|
|
$single_aspect->id = 'all_aspects';
|
|
|
|
$single_aspect->name = t('All aspects');
|
|
|
|
$aspects[] = $single_aspect;
|
|
|
|
|
|
|
|
$single_aspect = new stdClass();
|
|
|
|
$single_aspect->id = 'public';
|
|
|
|
$single_aspect->name = t('Public');
|
|
|
|
$aspects[] = $single_aspect;
|
|
|
|
|
|
|
|
$s .= '<label id="diaspora-aspect-label" for="diaspora-aspect">' . t('Post to aspect:') . '</label>';
|
|
|
|
$s .= '<select name="aspect" id="diaspora-aspect">';
|
|
|
|
foreach($aspects as $single_aspect) {
|
|
|
|
if ($single_aspect->id == $aspect)
|
|
|
|
$s .= "<option value='".$single_aspect->id."' selected>".$single_aspect->name."</option>";
|
|
|
|
else
|
|
|
|
$s .= "<option value='".$single_aspect->id."'>".$single_aspect->name."</option>";
|
|
|
|
}
|
|
|
|
|
|
|
|
$s .= "</select>";
|
|
|
|
$s .= '<div class="clear"></div>';
|
|
|
|
}
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2014-01-18 22:06:41 +01:00
|
|
|
$s .= '<div id="diaspora-bydefault-wrapper">';
|
|
|
|
$s .= '<label id="diaspora-bydefault-label" for="diaspora-bydefault">' . t('Post to Diaspora by default') . '</label>';
|
|
|
|
$s .= '<input id="diaspora-bydefault" type="checkbox" name="diaspora_bydefault" value="1" ' . $def_checked . '/>';
|
|
|
|
$s .= '</div><div class="clear"></div>';
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2014-01-18 22:06:41 +01:00
|
|
|
/* provide a submit button */
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2014-01-18 22:06:41 +01:00
|
|
|
$s .= '<div class="settings-submit-wrapper" ><input type="submit" id="diaspora-submit" name="diaspora-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
|
2014-01-13 01:30:01 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function diaspora_settings_post(&$a,&$b) {
|
|
|
|
|
|
|
|
if(x($_POST,'diaspora-submit')) {
|
|
|
|
|
2017-11-07 00:55:24 +01:00
|
|
|
PConfig::set(local_user(),'diaspora','post',intval($_POST['diaspora']));
|
|
|
|
PConfig::set(local_user(),'diaspora','post_by_default',intval($_POST['diaspora_bydefault']));
|
|
|
|
PConfig::set(local_user(),'diaspora','handle',trim($_POST['handle']));
|
|
|
|
PConfig::set(local_user(),'diaspora','password',trim($_POST['password']));
|
|
|
|
PConfig::set(local_user(),'diaspora','aspect',trim($_POST['aspect']));
|
2014-01-13 01:30:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function diaspora_post_local(&$a,&$b) {
|
|
|
|
|
2017-09-06 18:16:33 +02:00
|
|
|
if ($b['edit']) {
|
2014-01-13 01:30:01 +01:00
|
|
|
return;
|
2017-09-06 18:16:33 +02:00
|
|
|
}
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2017-09-06 18:16:33 +02:00
|
|
|
if (!local_user() || (local_user() != $b['uid'])) {
|
2014-01-13 01:30:01 +01:00
|
|
|
return;
|
2017-09-06 18:16:33 +02:00
|
|
|
}
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2017-09-06 18:16:33 +02:00
|
|
|
if ($b['private'] || $b['parent']) {
|
2014-01-13 01:30:01 +01:00
|
|
|
return;
|
2017-09-06 18:16:33 +02:00
|
|
|
}
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2017-11-07 00:55:24 +01:00
|
|
|
$diaspora_post = intval(PConfig::get(local_user(),'diaspora','post'));
|
2014-01-13 01:30:01 +01:00
|
|
|
|
|
|
|
$diaspora_enable = (($diaspora_post && x($_REQUEST,'diaspora_enable')) ? intval($_REQUEST['diaspora_enable']) : 0);
|
|
|
|
|
2017-11-07 00:55:24 +01:00
|
|
|
if ($b['api_source'] && intval(PConfig::get(local_user(),'diaspora','post_by_default'))) {
|
2014-01-13 01:30:01 +01:00
|
|
|
$diaspora_enable = 1;
|
2017-09-06 18:16:33 +02:00
|
|
|
}
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2017-09-06 18:16:33 +02:00
|
|
|
if (!$diaspora_enable) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strlen($b['postopts'])) {
|
|
|
|
$b['postopts'] .= ',';
|
|
|
|
}
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2017-09-06 18:16:33 +02:00
|
|
|
$b['postopts'] .= 'diaspora';
|
2014-01-13 01:30:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function diaspora_send(&$a,&$b) {
|
2014-04-22 15:28:23 +02:00
|
|
|
$hostname = $a->get_hostname();
|
2014-01-13 01:30:01 +01:00
|
|
|
|
|
|
|
logger('diaspora_send: invoked');
|
|
|
|
|
2018-01-10 04:27:40 +01:00
|
|
|
if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
|
2014-01-13 01:30:01 +01:00
|
|
|
return;
|
2018-01-10 04:27:40 +01:00
|
|
|
}
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2018-01-10 04:27:40 +01:00
|
|
|
if(! strstr($b['postopts'],'diaspora')) {
|
2014-01-13 01:30:01 +01:00
|
|
|
return;
|
2018-01-10 04:27:40 +01:00
|
|
|
}
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2018-01-10 04:27:40 +01:00
|
|
|
if($b['parent'] != $b['id']) {
|
2014-01-13 01:30:01 +01:00
|
|
|
return;
|
2018-01-10 04:27:40 +01:00
|
|
|
}
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2017-11-26 00:56:18 +01:00
|
|
|
// Dont't post if the post doesn't belong to us.
|
|
|
|
// This is a check for forum postings
|
2018-01-10 14:37:11 +01:00
|
|
|
$self = dba::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
|
2017-11-26 00:56:18 +01:00
|
|
|
if ($b['contact-id'] != $self['id']) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-13 01:30:01 +01:00
|
|
|
logger('diaspora_send: prepare posting', LOGGER_DEBUG);
|
|
|
|
|
2017-11-07 00:55:24 +01:00
|
|
|
$handle = PConfig::get($b['uid'],'diaspora','handle');
|
|
|
|
$password = PConfig::get($b['uid'],'diaspora','password');
|
|
|
|
$aspect = PConfig::get($b['uid'],'diaspora','aspect');
|
2014-01-13 01:30:01 +01:00
|
|
|
|
2017-01-11 01:34:13 +01:00
|
|
|
if ($handle && $password) {
|
2014-01-13 01:30:01 +01:00
|
|
|
|
|
|
|
logger('diaspora_send: all values seem to be okay', LOGGER_DEBUG);
|
|
|
|
|
|
|
|
require_once('include/bb2diaspora.php');
|
2018-01-15 14:15:33 +01:00
|
|
|
$tag_arr = [];
|
2014-01-13 01:30:01 +01:00
|
|
|
$tags = '';
|
|
|
|
$x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER);
|
|
|
|
|
|
|
|
if($x) {
|
|
|
|
foreach($matches as $mtch) {
|
|
|
|
$tag_arr[] = $mtch[2];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(count($tag_arr))
|
|
|
|
$tags = implode(',',$tag_arr);
|
|
|
|
|
|
|
|
$title = $b['title'];
|
|
|
|
$body = $b['body'];
|
|
|
|
// Insert a newline before and after a quote
|
|
|
|
$body = str_ireplace("[quote", "\n\n[quote", $body);
|
|
|
|
$body = str_ireplace("[/quote]", "[/quote]\n\n", $body);
|
|
|
|
|
|
|
|
// Removal of tags and mentions
|
|
|
|
// #-tags
|
|
|
|
$body = preg_replace('/#\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', '#$2', $body);
|
|
|
|
// @-mentions
|
|
|
|
$body = preg_replace('/@\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', '@$2', $body);
|
|
|
|
|
|
|
|
// remove multiple newlines
|
|
|
|
do {
|
|
|
|
$oldbody = $body;
|
|
|
|
$body = str_replace("\n\n\n", "\n\n", $body);
|
|
|
|
} while ($oldbody != $body);
|
|
|
|
|
|
|
|
// convert to markdown
|
|
|
|
$body = bb2diaspora($body, false, true);
|
|
|
|
|
|
|
|
// Adding the title
|
|
|
|
if(strlen($title))
|
|
|
|
$body = "## ".html_entity_decode($title)."\n\n".$body;
|
|
|
|
|
|
|
|
require_once("addon/diaspora/diasphp.php");
|
|
|
|
|
|
|
|
try {
|
|
|
|
logger('diaspora_send: prepare', LOGGER_DEBUG);
|
2017-01-11 01:34:13 +01:00
|
|
|
$conn = new Diaspora_Connection($handle, $password);
|
|
|
|
logger('diaspora_send: try to log in '.$handle, LOGGER_DEBUG);
|
|
|
|
$conn->logIn();
|
2014-01-13 01:30:01 +01:00
|
|
|
logger('diaspora_send: try to send '.$body, LOGGER_DEBUG);
|
|
|
|
|
2017-01-11 01:34:13 +01:00
|
|
|
$conn->provider = $hostname;
|
|
|
|
$conn->postStatusMessage($body, $aspect);
|
2014-01-13 01:30:01 +01:00
|
|
|
|
|
|
|
logger('diaspora_send: success');
|
|
|
|
} catch (Exception $e) {
|
|
|
|
logger("diaspora_send: Error submitting the post: " . $e->getMessage());
|
|
|
|
|
|
|
|
logger('diaspora_send: requeueing '.$b['uid'], LOGGER_DEBUG);
|
|
|
|
|
|
|
|
$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", $b['uid']);
|
|
|
|
if (count($r))
|
|
|
|
$a->contact = $r[0]["id"];
|
|
|
|
|
2018-01-15 14:15:33 +01:00
|
|
|
$s = serialize(['url' => $url, 'item' => $b['id'], 'post' => $body]);
|
2014-01-13 01:30:01 +01:00
|
|
|
require_once('include/queue_fn.php');
|
|
|
|
add_to_queue($a->contact,NETWORK_DIASPORA2,$s);
|
|
|
|
notice(t('Diaspora post failed. Queued for retry.').EOL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|