X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=diaspora%2Fdiaspora.php;h=cb2eb9968c743755f13f0bf9454c8d11d437d242;hb=38460a4cff68b24075300c5c7c493c03bd387ee4;hp=037933100d1c198ae5e6136f522ff2ee2e45ac3b;hpb=2d745b11d762ceb10f8d621cbbcb6fd25791dbaa;p=friendica-addons.git diff --git a/diaspora/diaspora.php b/diaspora/diaspora.php index 03793310..cb2eb996 100644 --- a/diaspora/diaspora.php +++ b/diaspora/diaspora.php @@ -11,255 +11,153 @@ require_once 'addon/diaspora/Diaspora_Connection.php'; use Friendica\App; use Friendica\Content\Text\BBCode; -use Friendica\Core\Addon; -use Friendica\Core\L10n; +use Friendica\Core\Hook; use Friendica\Core\Logger; -use Friendica\Core\PConfig; -use Friendica\Core\Protocol; +use Friendica\Core\Renderer; use Friendica\Database\DBA; -use Friendica\Model\Queue; +use Friendica\Core\Worker; +use Friendica\DI; +use Friendica\Model\Post; function diaspora_install() { - Addon::registerHook('post_local', 'addon/diaspora/diaspora.php', 'diaspora_post_local'); - Addon::registerHook('notifier_normal', 'addon/diaspora/diaspora.php', 'diaspora_send'); - Addon::registerHook('jot_networks', 'addon/diaspora/diaspora.php', 'diaspora_jot_nets'); - Addon::registerHook('connector_settings', 'addon/diaspora/diaspora.php', 'diaspora_settings'); - Addon::registerHook('connector_settings_post', 'addon/diaspora/diaspora.php', 'diaspora_settings_post'); - Addon::registerHook('queue_predeliver', 'addon/diaspora/diaspora.php', 'diaspora_queue_hook'); + Hook::register('hook_fork', 'addon/diaspora/diaspora.php', 'diaspora_hook_fork'); + Hook::register('post_local', 'addon/diaspora/diaspora.php', 'diaspora_post_local'); + Hook::register('notifier_normal', 'addon/diaspora/diaspora.php', 'diaspora_send'); + Hook::register('jot_networks', 'addon/diaspora/diaspora.php', 'diaspora_jot_nets'); + Hook::register('connector_settings', 'addon/diaspora/diaspora.php', 'diaspora_settings'); + Hook::register('connector_settings_post', 'addon/diaspora/diaspora.php', 'diaspora_settings_post'); } -function diaspora_uninstall() +function diaspora_jot_nets(array &$jotnets_fields) { - Addon::unregisterHook('post_local', 'addon/diaspora/diaspora.php', 'diaspora_post_local'); - Addon::unregisterHook('notifier_normal', 'addon/diaspora/diaspora.php', 'diaspora_send'); - Addon::unregisterHook('jot_networks', 'addon/diaspora/diaspora.php', 'diaspora_jot_nets'); - Addon::unregisterHook('connector_settings', 'addon/diaspora/diaspora.php', 'diaspora_settings'); - Addon::unregisterHook('connector_settings_post', 'addon/diaspora/diaspora.php', 'diaspora_settings_post'); - Addon::unregisterHook('queue_predeliver', 'addon/diaspora/diaspora.php', 'diaspora_queue_hook'); -} - -function diaspora_jot_nets(App $a, &$b) -{ - if (!local_user()) { + if (!DI::userSession()->getLocalUserId()) { return; } - $diaspora_post = PConfig::get(local_user(), 'diaspora', 'post'); - - if (intval($diaspora_post) == 1) { - $diaspora_defpost = PConfig::get(local_user(), 'diaspora', 'post_by_default'); - - $selected = ((intval($diaspora_defpost) == 1) ? ' checked="checked" ' : ''); - - $b .= '
' - . L10n::t('Post to Diaspora') . '
'; + if (DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'diaspora', 'post')) { + $jotnets_fields[] = [ + 'type' => 'checkbox', + 'field' => [ + 'diaspora_enable', + DI::l10n()->t('Post to Diaspora'), + DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'diaspora', 'post_by_default') + ] + ]; } } -function diaspora_queue_hook(App $a, &$b) { - $hostname = $a->getHostName(); - - $qi = q("SELECT * FROM `queue` WHERE `network` = '%s'", - DBA::escape(Protocol::DIASPORA2) - ); - - if (!DBA::isResult($qi)) { - return; - } - - foreach ($qi as $x) { - if ($x['network'] !== Protocol::DIASPORA2) { - continue; - } - - Logger::log('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 (!DBA::isResult($r)) { - continue; - } - - $userdata = $r[0]; - - $handle = PConfig::get($userdata['uid'], 'diaspora', 'handle'); - $password = PConfig::get($userdata['uid'], 'diaspora', 'password'); - $aspect = PConfig::get($userdata['uid'], 'diaspora', 'aspect'); - - $success = false; - - if ($handle && $password) { - Logger::log('diaspora_queue: able to post for user '.$handle); - - $z = unserialize($x['content']); - - $post = $z['post']; - - Logger::log('diaspora_queue: post: '.$post, Logger::DATA); - - try { - Logger::log('diaspora_queue: prepare', Logger::DEBUG); - $conn = new Diaspora_Connection($handle, $password); - Logger::log('diaspora_queue: try to log in '.$handle, Logger::DEBUG); - $conn->logIn(); - Logger::log('diaspora_queue: try to send '.$body, Logger::DEBUG); - $conn->provider = $hostname; - $conn->postStatusMessage($post, $aspect); - - Logger::log('diaspora_queue: send '.$userdata['uid'].' success', Logger::DEBUG); - - $success = true; - - Queue::removeItem($x['id']); - } catch (Exception $e) { - Logger::log("diaspora_queue: Send ".$userdata['uid']." failed: ".$e->getMessage(), Logger::DEBUG); - } - } else { - Logger::log('diaspora_queue: send '.$userdata['uid'].' missing username or password', Logger::DEBUG); - } - - if (!$success) { - Logger::log('diaspora_queue: delayed'); - Queue::updateTime($x['id']); - } - } -} - -function diaspora_settings(App $a, &$s) +function diaspora_settings(array &$data) { - if (! local_user()) { + if (!DI::userSession()->getLocalUserId()) { return; } - /* Add our stylesheet to the page so we can make our settings look nice */ - - $a->page['htmlhead'] .= '' . "\r\n"; - - /* Get the current state of our config variables */ + $enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'diaspora', 'post', false); + $def_enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'diaspora', 'post_by_default'); - $enabled = PConfig::get(local_user(),'diaspora','post'); - $checked = (($enabled) ? ' checked="checked" ' : ''); - $css = (($enabled) ? '' : '-disabled'); + $handle = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'diaspora', 'handle'); + $password = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'diaspora', 'password'); + $aspect = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'diaspora', 'aspect'); - $def_enabled = PConfig::get(local_user(),'diaspora','post_by_default'); - - $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'); - - $status = ""; - - $r = q("SELECT `addr` FROM `contact` WHERE `self` AND `uid` = %d", intval(local_user())); - - if (DBA::isResult($r)) { - $status = L10n::t("Please remember: You can always be reached from Diaspora with your Friendica handle %s. ", $r[0]['addr']); - $status .= L10n::t('This connector is only meant if you still want to use your old Diaspora account for some time. '); - $status .= L10n::t('However, it is preferred that you tell your Diaspora contacts the new handle %s instead.', $r[0]['addr']); + $info = ''; + $error = ''; + if (DI::session()->get('my_address')) { + $info = DI::l10n()->t('Please remember: You can always be reached from Diaspora with your Friendica handle %s. ', DI::session()->get('my_address')); + $info .= DI::l10n()->t('This connector is only meant if you still want to use your old Diaspora account for some time. '); + $info .= DI::l10n()->t('However, it is preferred that you tell your Diaspora contacts the new handle %s instead.', DI::session()->get('my_address')); } - $aspects = false; - + $aspect_select = ''; if ($handle && $password) { $conn = new Diaspora_Connection($handle, $password); $conn->logIn(); - $aspects = $conn->getAspects(); + $rawAspects = $conn->getAspects(); + if ($rawAspects) { + $availableAspects = [ + 'all_aspects' => DI::l10n()->t('All aspects'), + 'public' => DI::l10n()->t('Public'), + ]; + foreach ($rawAspects as $rawAspect) { + $availableAspects[$rawAspect->id] = $rawAspect->name; + } - if (!$aspects) { - $status = L10n::t("Can't login to your Diaspora account. Please check handle (in the format user@domain.tld) and password."); + $aspect_select = ['aspect', DI::l10n()->t('Post to aspect:'), $aspect, '', $availableAspects]; + $info = DI::l10n()->t('Connected with your Diaspora account %s', $handle); + } else { + $info = ''; + $error = DI::l10n()->t("Can't login to your Diaspora account. Please check handle (in the format user@domain.tld) and password."); } } - /* Add some HTML to the existing form */ + $t = Renderer::getMarkupTemplate('connector_settings.tpl', 'addon/diaspora/'); + $html = Renderer::replaceMacros($t, [ + '$l10n' => [ + 'info_header' => DI::l10n()->t('Information'), + 'error_header' => DI::l10n()->t('Error'), + ], + + '$info' => $info, + '$error' => $error, + + '$enabled' => ['enabled', DI::l10n()->t('Enable Diaspora Post Addon'), $enabled], + '$handle' => ['handle', DI::l10n()->t('Diaspora handle'), $handle, null, null, 'placeholder="user@domain.tld"'], + '$password' => ['password', DI::l10n()->t('Diaspora password'), '', DI::l10n()->t('Privacy notice: Your Diaspora password will be stored unencrypted to authenticate you with your Diaspora pod. This means your Friendica node administrator can have access to it.')], + '$aspect_select' => $aspect_select, + '$post_by_default' => ['post_by_default', DI::l10n()->t('Post to Diaspora by default'), $def_enabled], + ]); + + $data = [ + 'connector' => 'diaspora', + 'title' => DI::l10n()->t('Diaspora Export'), + 'image' => 'images/diaspora-logo.png', + 'enabled' => $enabled, + 'html' => $html, + ]; +} - $s .= ''; - $s .= '

'. L10n::t('Diaspora Export').'

'; - $s .= '
'; - $s .= ''; - } - -function diaspora_settings_post(App $a, &$b) +function diaspora_hook_fork(array &$b) { - if (!empty($_POST['diaspora-submit'])) { - 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'])); + if ($b['name'] != 'notifier_normal') { + return; + } + + $post = $b['data']; + + if ($post['deleted'] || $post['private'] || ($post['created'] !== $post['edited']) || + !strstr($post['postopts'] ?? '', 'diaspora') || ($post['parent'] != $post['id'])) { + $b['execute'] = false; + return; } } -function diaspora_post_local(App $a, array &$b) +function diaspora_post_local(array &$b) { if ($b['edit']) { return; } - if (!local_user() || (local_user() != $b['uid'])) { + if (!DI::userSession()->getLocalUserId() || (DI::userSession()->getLocalUserId() != $b['uid'])) { return; } @@ -267,11 +165,11 @@ function diaspora_post_local(App $a, array &$b) return; } - $diaspora_post = intval(PConfig::get(local_user(),'diaspora','post')); + $diaspora_post = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(),'diaspora','post')); - $diaspora_enable = (($diaspora_post && x($_REQUEST,'diaspora_enable')) ? intval($_REQUEST['diaspora_enable']) : 0); + $diaspora_enable = (($diaspora_post && !empty($_REQUEST['diaspora_enable'])) ? intval($_REQUEST['diaspora_enable']) : 0); - if ($b['api_source'] && intval(PConfig::get(local_user(),'diaspora','post_by_default'))) { + if ($b['api_source'] && intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(),'diaspora','post_by_default'))) { $diaspora_enable = 1; } @@ -286,11 +184,11 @@ function diaspora_post_local(App $a, array &$b) $b['postopts'] .= 'diaspora'; } -function diaspora_send(App $a, array &$b) +function diaspora_send(array &$b) { - $hostname = $a->getHostName(); + $hostname = DI::baseUrl()->getHost(); - Logger::log('diaspora_send: invoked'); + Logger::notice('diaspora_send: invoked'); if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) { return; @@ -304,36 +202,24 @@ function diaspora_send(App $a, array &$b) return; } + $b['body'] = Post\Media::addAttachmentsToBody($b['uri-id'], DI::contentItem()->addSharedPost($b)); + // Dont't post if the post doesn't belong to us. - // This is a check for forum postings + // This is a check for group postings $self = DBA::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]); if ($b['contact-id'] != $self['id']) { return; } - Logger::log('diaspora_send: prepare posting', Logger::DEBUG); + Logger::info('diaspora_send: prepare posting'); - $handle = PConfig::get($b['uid'],'diaspora','handle'); - $password = PConfig::get($b['uid'],'diaspora','password'); - $aspect = PConfig::get($b['uid'],'diaspora','aspect'); + $handle = DI::pConfig()->get($b['uid'],'diaspora','handle'); + $password = DI::pConfig()->get($b['uid'],'diaspora','password'); + $aspect = DI::pConfig()->get($b['uid'],'diaspora','aspect'); if ($handle && $password) { - Logger::log('diaspora_send: all values seem to be okay', Logger::DEBUG); - - $tag_arr = []; - $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); - } + Logger::info('diaspora_send: all values seem to be okay'); $title = $b['title']; $body = $b['body']; @@ -364,29 +250,22 @@ function diaspora_send(App $a, array &$b) require_once "addon/diaspora/diasphp.php"; try { - Logger::log('diaspora_send: prepare', Logger::DEBUG); + Logger::info('diaspora_send: prepare'); $conn = new Diaspora_Connection($handle, $password); - Logger::log('diaspora_send: try to log in '.$handle, Logger::DEBUG); + Logger::info('diaspora_send: try to log in '.$handle); $conn->logIn(); - Logger::log('diaspora_send: try to send '.$body, Logger::DEBUG); + Logger::info('diaspora_send: try to send '.$body); $conn->provider = $hostname; $conn->postStatusMessage($body, $aspect); - Logger::log('diaspora_send: success'); + Logger::notice('diaspora_send: success'); } catch (Exception $e) { - Logger::log("diaspora_send: Error submitting the post: " . $e->getMessage()); - - Logger::log('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"]; + Logger::notice("diaspora_send: Error submitting the post: " . $e->getMessage()); - $s = serialize(['url' => $url, 'item' => $b['id'], 'post' => $body]); + Logger::info('diaspora_send: requeueing '.$b['uid']); - Queue::add($a->contact, Protocol::DIASPORA2, $s); - notice(L10n::t('Diaspora post failed. Queued for retry.').EOL); + Worker::defer(); } } }