X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=diaspora%2Fdiaspora.php;h=64388bbd225eba760ef1673c1e5cf79852d0a6f0;hb=64369ebfa490ff9d5e5a44177e4eebd4371ceb0e;hp=09262d839a0dfb41d55322fe917ed4859198f98e;hpb=21f3adb91172c497e4fff928e2990eae02e36468;p=friendica-addons.git diff --git a/diaspora/diaspora.php b/diaspora/diaspora.php index 09262d83..64388bbd 100755 --- a/diaspora/diaspora.php +++ b/diaspora/diaspora.php @@ -3,10 +3,15 @@ /** * Name: Diaspora Post Connector * Description: Post to Diaspora - * Version: 0.1 + * Version: 0.2 * Author: Michael Vogel */ +require_once("addon/diaspora/Diaspora_Connection.php"); + +use Friendica\Core\PConfig; +use Friendica\Database\DBM; + function diaspora_install() { register_hook('post_local', 'addon/diaspora/diaspora.php', 'diaspora_post_local'); register_hook('notifier_normal', 'addon/diaspora/diaspora.php', 'diaspora_send'); @@ -29,9 +34,9 @@ function diaspora_jot_nets(&$a,&$b) { if(! local_user()) return; - $diaspora_post = get_pconfig(local_user(),'diaspora','post'); + $diaspora_post = PConfig::get(local_user(),'diaspora','post'); if(intval($diaspora_post) == 1) { - $diaspora_defpost = get_pconfig(local_user(),'diaspora','post_by_default'); + $diaspora_defpost = PConfig::get(local_user(),'diaspora','post_by_default'); $selected = ((intval($diaspora_defpost) == 1) ? ' checked="checked" ' : ''); $b .= '
' . t('Post to Diaspora') . '
'; @@ -39,6 +44,8 @@ function diaspora_jot_nets(&$a,&$b) { } function diaspora_queue_hook(&$a,&$b) { + $hostname = $a->get_hostname(); + $qi = q("SELECT * FROM `queue` WHERE `network` = '%s'", dbesc(NETWORK_DIASPORA2) ); @@ -62,16 +69,14 @@ function diaspora_queue_hook(&$a,&$b) { $userdata = $r[0]; - $diaspora_username = get_pconfig($userdata['uid'],'diaspora','diaspora_username'); - $diaspora_password = get_pconfig($userdata['uid'],'diaspora','diaspora_password'); - $diaspora_url = get_pconfig($userdata['uid'],'diaspora','diaspora_url'); + $handle = PConfig::get($userdata['uid'],'diaspora','handle'); + $password = PConfig::get($userdata['uid'],'diaspora','password'); + $aspect = PConfig::get($userdata['uid'],'diaspora','aspect'); $success = false; - if($diaspora_url && $diaspora_username && $diaspora_password) { - require_once("addon/diaspora/diasphp.php"); - - logger('diaspora_queue: able to post for user '.$diaspora_username); + if ($handle && $password) { + logger('diaspora_queue: able to post for user '.$handle); $z = unserialize($x['content']); @@ -81,11 +86,12 @@ function diaspora_queue_hook(&$a,&$b) { try { logger('diaspora_queue: prepare', LOGGER_DEBUG); - $conn = new Diasphp($diaspora_url); - logger('diaspora_queue: try to log in '.$diaspora_username, LOGGER_DEBUG); - $conn->login($diaspora_username, $diaspora_password); + $conn = new Diaspora_Connection($handle, $password); + logger('diaspora_queue: try to log in '.$handle, LOGGER_DEBUG); + $conn->logIn(); logger('diaspora_queue: try to send '.$body, LOGGER_DEBUG); - $conn->post($post); + $conn->provider = $hostname; + $conn->postStatusMessage($post, $aspect); logger('diaspora_queue: send '.$userdata['uid'].' success', LOGGER_DEBUG); @@ -107,66 +113,110 @@ function diaspora_queue_hook(&$a,&$b) { function diaspora_settings(&$a,&$s) { - if(! local_user()) - return; + if(! local_user()) + return; - /* Add our stylesheet to the page so we can make our settings look nice */ + /* Add our stylesheet to the page so we can make our settings look nice */ - $a->page['htmlhead'] .= '' . "\r\n"; + $a->page['htmlhead'] .= '' . "\r\n"; - /* Get the current state of our config variables */ + /* Get the current state of our config variables */ - $enabled = get_pconfig(local_user(),'diaspora','post'); + $enabled = PConfig::get(local_user(),'diaspora','post'); + $checked = (($enabled) ? ' checked="checked" ' : ''); + $css = (($enabled) ? '' : '-disabled'); - $checked = (($enabled) ? ' checked="checked" ' : ''); + $def_enabled = PConfig::get(local_user(),'diaspora','post_by_default'); - $def_enabled = get_pconfig(local_user(),'diaspora','post_by_default'); + $def_checked = (($def_enabled) ? ' checked="checked" ' : ''); - $def_checked = (($def_enabled) ? ' checked="checked" ' : ''); + $handle = PConfig::get(local_user(), 'diaspora', 'handle'); + $password = PConfig::get(local_user(), 'diaspora', 'password'); + $aspect = PConfig::get(local_user(),'diaspora','aspect'); - $diaspora_username = get_pconfig(local_user(), 'diaspora', 'diaspora_username'); - $diaspora_password = get_pconfig(local_user(), 'diaspora', 'diaspora_password'); - $diaspora_url = get_pconfig(local_user(), 'diaspora', 'diaspora_url'); + $status = ""; + $r = q("SELECT `addr` FROM `contact` WHERE `self` AND `uid` = %d", intval(local_user())); + if (DBM::is_result($r)) { + $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']); + } - /* Add some HTML to the existing form */ + $aspects = false; - $s .= ''; - $s .= '

' . t('Diaspora') . '

'; - $s .= '
'; - $s .= ''; + $s .= '
'; } @@ -175,46 +225,53 @@ function diaspora_settings_post(&$a,&$b) { if(x($_POST,'diaspora-submit')) { - set_pconfig(local_user(),'diaspora','post',intval($_POST['diaspora'])); - set_pconfig(local_user(),'diaspora','post_by_default',intval($_POST['diaspora_bydefault'])); - set_pconfig(local_user(),'diaspora','diaspora_username',trim($_POST['diaspora_username'])); - set_pconfig(local_user(),'diaspora','diaspora_password',trim($_POST['diaspora_password'])); - set_pconfig(local_user(),'diaspora','diaspora_url',trim($_POST['diaspora_url'])); - + 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'])); } } function diaspora_post_local(&$a,&$b) { - if($b['edit']) + if ($b['edit']) { return; + } - if((! local_user()) || (local_user() != $b['uid'])) + if (!local_user() || (local_user() != $b['uid'])) { return; + } - if($b['private'] || $b['parent']) + if ($b['private'] || $b['parent']) { return; + } - $diaspora_post = intval(get_pconfig(local_user(),'diaspora','post')); + $diaspora_post = intval(PConfig::get(local_user(),'diaspora','post')); $diaspora_enable = (($diaspora_post && x($_REQUEST,'diaspora_enable')) ? intval($_REQUEST['diaspora_enable']) : 0); - if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'diaspora','post_by_default'))) + if ($b['api_source'] && intval(PConfig::get(local_user(),'diaspora','post_by_default'))) { $diaspora_enable = 1; + } - if(! $diaspora_enable) - return; + if (!$diaspora_enable) { + return; + } + + if (strlen($b['postopts'])) { + $b['postopts'] .= ','; + } - if(strlen($b['postopts'])) - $b['postopts'] .= ','; - $b['postopts'] .= 'diaspora'; + $b['postopts'] .= 'diaspora'; } function diaspora_send(&$a,&$b) { + $hostname = $a->get_hostname(); logger('diaspora_send: invoked'); @@ -229,11 +286,11 @@ function diaspora_send(&$a,&$b) { logger('diaspora_send: prepare posting', LOGGER_DEBUG); - $diaspora_username = get_pconfig($b['uid'],'diaspora','diaspora_username'); - $diaspora_password = get_pconfig($b['uid'],'diaspora','diaspora_password'); - $diaspora_url = get_pconfig($b['uid'],'diaspora','diaspora_url'); + $handle = PConfig::get($b['uid'],'diaspora','handle'); + $password = PConfig::get($b['uid'],'diaspora','password'); + $aspect = PConfig::get($b['uid'],'diaspora','aspect'); - if($diaspora_url && $diaspora_username && $diaspora_password) { + if ($handle && $password) { logger('diaspora_send: all values seem to be okay', LOGGER_DEBUG); @@ -279,13 +336,13 @@ function diaspora_send(&$a,&$b) { try { logger('diaspora_send: prepare', LOGGER_DEBUG); - $conn = new Diasphp($diaspora_url); - logger('diaspora_send: try to log in '.$diaspora_username, LOGGER_DEBUG); - $conn->login($diaspora_username, $diaspora_password); + $conn = new Diaspora_Connection($handle, $password); + logger('diaspora_send: try to log in '.$handle, LOGGER_DEBUG); + $conn->logIn(); logger('diaspora_send: try to send '.$body, LOGGER_DEBUG); - //throw new Exception('Test'); - $conn->post($body); + $conn->provider = $hostname; + $conn->postStatusMessage($body, $aspect); logger('diaspora_send: success'); } catch (Exception $e) {