X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=libertree%2Flibertree.php;h=c0f896c0c43346e295af163f63aeb29bb5538033;hb=607cc9238cb62a049f9393906a656d7216095203;hp=d5aa97e5a866a243625f538f0e8a92d37e34b106;hpb=94ed7bf163e0b814afcc159ddaf00bf652e7387d;p=friendica-addons.git diff --git a/libertree/libertree.php b/libertree/libertree.php index d5aa97e5..c0f896c0 100644 --- a/libertree/libertree.php +++ b/libertree/libertree.php @@ -8,121 +8,82 @@ 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\Renderer; use Friendica\Database\DBA; -use Friendica\Util\Network; +use Friendica\DI; +use Friendica\Model\Post; function libertree_install() { - Addon::registerHook('hook_fork', 'addon/libertree/libertree.php', 'libertree_hook_fork'); - Addon::registerHook('post_local', 'addon/libertree/libertree.php', 'libertree_post_local'); - Addon::registerHook('notifier_normal', 'addon/libertree/libertree.php', 'libertree_send'); - Addon::registerHook('jot_networks', 'addon/libertree/libertree.php', 'libertree_jot_nets'); - Addon::registerHook('connector_settings', 'addon/libertree/libertree.php', 'libertree_settings'); - Addon::registerHook('connector_settings_post', 'addon/libertree/libertree.php', 'libertree_settings_post'); + Hook::register('hook_fork', 'addon/libertree/libertree.php', 'libertree_hook_fork'); + Hook::register('post_local', 'addon/libertree/libertree.php', 'libertree_post_local'); + Hook::register('notifier_normal', 'addon/libertree/libertree.php', 'libertree_send'); + Hook::register('jot_networks', 'addon/libertree/libertree.php', 'libertree_jot_nets'); + Hook::register('connector_settings', 'addon/libertree/libertree.php', 'libertree_settings'); + Hook::register('connector_settings_post', 'addon/libertree/libertree.php', 'libertree_settings_post'); } -function libertree_uninstall() +function libertree_jot_nets(array &$jotnets_fields) { - Addon::unregisterHook('hook_fork', 'addon/libertree/libertree.php', 'libertree_hook_fork'); - Addon::unregisterHook('post_local', 'addon/libertree/libertree.php', 'libertree_post_local'); - Addon::unregisterHook('notifier_normal', 'addon/libertree/libertree.php', 'libertree_send'); - Addon::unregisterHook('jot_networks', 'addon/libertree/libertree.php', 'libertree_jot_nets'); - Addon::unregisterHook('connector_settings', 'addon/libertree/libertree.php', 'libertree_settings'); - Addon::unregisterHook('connector_settings_post', 'addon/libertree/libertree.php', 'libertree_settings_post'); -} + if (!DI::userSession()->getLocalUserId()) { + return; + } -function libertree_jot_nets(&$a,&$b) { - if(! local_user()) - return; - - $ltree_post = PConfig::get(local_user(),'libertree','post'); - if(intval($ltree_post) == 1) { - $ltree_defpost = PConfig::get(local_user(),'libertree','post_by_default'); - $selected = ((intval($ltree_defpost) == 1) ? ' checked="checked" ' : ''); - $b .= '
' - . L10n::t('Post to libertree') . '
'; - } + if (DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'libertree', 'post')) { + $jotnets_fields[] = [ + 'type' => 'checkbox', + 'field' => [ + 'libertree_enable', + DI::l10n()->t('Post to libertree'), + DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'libertree', 'post_by_default'), + ], + ]; + } } +function libertree_settings(array &$data) +{ + if (!DI::userSession()->getLocalUserId()) { + return; + } -function libertree_settings(&$a,&$s) { - - if(! local_user()) - 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 = PConfig::get(local_user(),'libertree','post'); - $checked = (($enabled) ? ' checked="checked" ' : ''); - $css = (($enabled) ? '' : '-disabled'); - - $def_enabled = PConfig::get(local_user(),'libertree','post_by_default'); - - $def_checked = (($def_enabled) ? ' checked="checked" ' : ''); - - $ltree_api_token = PConfig::get(local_user(), 'libertree', 'libertree_api_token'); - $ltree_url = PConfig::get(local_user(), 'libertree', 'libertree_url'); - - - /* Add some HTML to the existing form */ - - $s .= ''; - $s .= '

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

'; - $s .= '
'; - $s .= ''; - + $enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'libertree', 'post', false); + $ltree_api_token = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'libertree', 'libertree_api_token'); + $ltree_url = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'libertree', 'libertree_url'); + $def_enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'libertree', 'post_by_default'); + + $t = Renderer::getMarkupTemplate('connector_settings.tpl', 'addon/libertree/'); + $html = Renderer::replaceMacros($t, [ + '$enabled' => ['libertree', DI::l10n()->t('Enable Libertree Post Addon'), $enabled], + '$ltree_url' => ['libertree_url', DI::l10n()->t('Libertree site URL'), $ltree_url], + '$ltree_api_token' => ['libertree_api_token', DI::l10n()->t('Libertree API token'), $ltree_api_token], + '$bydefault' => ['ij_bydefault', DI::l10n()->t('Post to Libertree by default'), $def_enabled], + ]); + + $data = [ + 'connector' => 'libertree', + 'title' => DI::l10n()->t('Libertree Export'), + 'image' => 'images/libertree.png', + 'enabled' => $enabled, + 'html' => $html, + ]; } - -function libertree_settings_post(&$a,&$b) { - - if(!empty($_POST['libertree-submit'])) { - - PConfig::set(local_user(),'libertree','post',intval($_POST['libertree'])); - PConfig::set(local_user(),'libertree','post_by_default',intval($_POST['libertree_bydefault'])); - PConfig::set(local_user(),'libertree','libertree_api_token',trim($_POST['libertree_api_token'])); - PConfig::set(local_user(),'libertree','libertree_url',trim($_POST['libertree_url'])); +function libertree_settings_post(array &$b) +{ + if (!empty($_POST['libertree-submit'])) { + DI::pConfig()->set(DI::userSession()->getLocalUserId(),'libertree','post',intval($_POST['libertree'])); + DI::pConfig()->set(DI::userSession()->getLocalUserId(),'libertree','post_by_default',intval($_POST['libertree_bydefault'])); + DI::pConfig()->set(DI::userSession()->getLocalUserId(),'libertree','libertree_api_token',trim($_POST['libertree_api_token'])); + DI::pConfig()->set(DI::userSession()->getLocalUserId(),'libertree','libertree_url',trim($_POST['libertree_url'])); } } -function libertree_hook_fork(App &$a, array &$b) +function libertree_hook_fork(array &$b) { if ($b['name'] != 'notifier_normal') { return; @@ -137,7 +98,8 @@ function libertree_hook_fork(App &$a, array &$b) } } -function libertree_post_local(&$a,&$b) { +function libertree_post_local(array &$b) +{ // This can probably be changed to allow editing by pointing to a different API endpoint @@ -145,7 +107,7 @@ function libertree_post_local(&$a,&$b) { return; } - if ((! local_user()) || (local_user() != $b['uid'])) { + if (!DI::userSession()->getLocalUserId() || (DI::userSession()->getLocalUserId() != $b['uid'])) { return; } @@ -153,11 +115,11 @@ function libertree_post_local(&$a,&$b) { return; } - $ltree_post = intval(PConfig::get(local_user(),'libertree','post')); + $ltree_post = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(),'libertree','post')); $ltree_enable = (($ltree_post && !empty($_REQUEST['libertree_enable'])) ? intval($_REQUEST['libertree_enable']) : 0); - if ($b['api_source'] && intval(PConfig::get(local_user(),'libertree','post_by_default'))) { + if ($b['api_source'] && intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(),'libertree','post_by_default'))) { $ltree_enable = 1; } @@ -172,12 +134,9 @@ function libertree_post_local(&$a,&$b) { $b['postopts'] .= 'libertree'; } - - - -function libertree_send(&$a,&$b) { - - Logger::log('libertree_send: invoked'); +function libertree_send(array &$b) +{ + Logger::notice('libertree_send: invoked'); if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) { return; @@ -192,33 +151,23 @@ function libertree_send(&$a,&$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; } - $ltree_api_token = PConfig::get($b['uid'],'libertree','libertree_api_token'); - $ltree_url = PConfig::get($b['uid'],'libertree','libertree_url'); + $b['body'] = Post\Media::addAttachmentsToBody($b['uri-id'], DI::contentItem()->addSharedPost($b)); + + $ltree_api_token = DI::pConfig()->get($b['uid'],'libertree','libertree_api_token'); + $ltree_url = DI::pConfig()->get($b['uid'],'libertree','libertree_url'); $ltree_blog = "$ltree_url/api/v1/posts/create/?token=$ltree_api_token"; - $ltree_source = $a->getHostName(); + $ltree_source = DI::baseUrl()->getHost(); if ($b['app'] != "") $ltree_source .= " (".$b['app'].")"; if($ltree_url && $ltree_api_token && $ltree_blog && $ltree_source) { - $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); - $title = $b['title']; $body = $b['body']; // Insert a newline before and after a quote @@ -234,15 +183,16 @@ function libertree_send(&$a,&$b) { // remove multiple newlines do { $oldbody = $body; - $body = str_replace("\n\n\n", "\n\n", $body); - } while ($oldbody != $body); + $body = str_replace("\n\n\n", "\n\n", $body); + } while ($oldbody != $body); // convert to markdown $body = BBCode::toMarkdown($body, false); // Adding the title - if(strlen($title)) - $body = "## ".html_entity_decode($title)."\n\n".$body; + if (strlen($title)) { + $body = '## ' . html_entity_decode($title) . "\n\n" . $body; + } $params = [ @@ -251,7 +201,7 @@ function libertree_send(&$a,&$b) { // 'token' => $ltree_api_token ]; - $result = Network::post($ltree_blog, $params)->getBody(); - Logger::log('libertree: ' . $result); + $result = DI::httpClient()->post($ltree_blog, $params)->getBody(); + Logger::notice('libertree: ' . $result); } }