*/ use Friendica\App; use Friendica\Content\Text\BBCode; use Friendica\Core\Hook; use Friendica\Core\L10n; use Friendica\Core\Logger; use Friendica\Core\PConfig; use Friendica\Database\DBA; use Friendica\DI; use Friendica\Util\Network; function libertree_install() { 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() { Hook::unregister('hook_fork', 'addon/libertree/libertree.php', 'libertree_hook_fork'); Hook::unregister('post_local', 'addon/libertree/libertree.php', 'libertree_post_local'); Hook::unregister('notifier_normal', 'addon/libertree/libertree.php', 'libertree_send'); Hook::unregister('jot_networks', 'addon/libertree/libertree.php', 'libertree_jot_nets'); Hook::unregister('connector_settings', 'addon/libertree/libertree.php', 'libertree_settings'); Hook::unregister('connector_settings_post', 'addon/libertree/libertree.php', 'libertree_settings_post'); } function libertree_jot_nets(App &$a, array &$jotnets_fields) { if(! local_user()) { return; } if (PConfig::get(local_user(), 'libertree', 'post')) { $jotnets_fields[] = [ 'type' => 'checkbox', 'field' => [ 'libertree_enable', L10n::t('Post to libertree'), PConfig::get(local_user(), 'libertree', 'post_by_default') ] ]; } } 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 .= ''; } 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_hook_fork(App &$a, array &$b) { if ($b['name'] != 'notifier_normal') { return; } $post = $b['data']; if ($post['deleted'] || $post['private'] || ($post['created'] !== $post['edited']) || !strstr($post['postopts'], 'libertree') || ($post['parent'] != $post['id'])) { $b['execute'] = false; return; } } function libertree_post_local(&$a,&$b) { // This can probably be changed to allow editing by pointing to a different API endpoint if ($b['edit']) { return; } if ((! local_user()) || (local_user() != $b['uid'])) { return; } if ($b['private'] || $b['parent']) { return; } $ltree_post = intval(PConfig::get(local_user(),'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'))) { $ltree_enable = 1; } if (!$ltree_enable) { return; } if (strlen($b['postopts'])) { $b['postopts'] .= ','; } $b['postopts'] .= 'libertree'; } function libertree_send(&$a,&$b) { Logger::log('libertree_send: invoked'); if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) { return; } if (! strstr($b['postopts'],'libertree')) { return; } if ($b['parent'] != $b['id']) { return; } // Dont't post if the post doesn't belong to us. // This is a check for forum 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'); $ltree_blog = "$ltree_url/api/v1/posts/create/?token=$ltree_api_token"; $ltree_source = DI::baseUrl()->getHostname(); 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 $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 = BBCode::toMarkdown($body, false); // Adding the title if(strlen($title)) $body = "## ".html_entity_decode($title)."\n\n".$body; $params = [ 'text' => $body, 'source' => $ltree_source // 'token' => $ltree_api_token ]; $result = Network::post($ltree_blog, $params)->getBody(); Logger::log('libertree: ' . $result); } }