X-Git-Url: https://git.mxchange.org/?p=friendica-addons.git;a=blobdiff_plain;f=libertree%2Flibertree.php;h=0b9f839b72b408d11d6e3f3a354ab225e2986175;hp=f57c773b394588c05730a90854ab93d95d53c848;hb=27b60e003f92dd9f3aebbeddb34ebb905488ca82;hpb=182951f4eee76fbf793285fc349d70ec78dfa915 diff --git a/libertree/libertree.php b/libertree/libertree.php old mode 100755 new mode 100644 index f57c773b..0b9f839b --- a/libertree/libertree.php +++ b/libertree/libertree.php @@ -7,6 +7,8 @@ * Author: Tony Baldwin */ +use Friendica\Core\PConfig; + function libertree_install() { register_hook('post_local', 'addon/libertree/libertree.php', 'libertree_post_local'); register_hook('notifier_normal', 'addon/libertree/libertree.php', 'libertree_send'); @@ -28,9 +30,9 @@ function libertree_jot_nets(&$a,&$b) { if(! local_user()) return; - $ltree_post = get_pconfig(local_user(),'libertree','post'); + $ltree_post = PConfig::get(local_user(),'libertree','post'); if(intval($ltree_post) == 1) { - $ltree_defpost = get_pconfig(local_user(),'libertree','post_by_default'); + $ltree_defpost = PConfig::get(local_user(),'libertree','post_by_default'); $selected = ((intval($ltree_defpost) == 1) ? ' checked="checked" ' : ''); $b .= '
' . t('Post to libertree') . '
'; @@ -49,22 +51,28 @@ function libertree_settings(&$a,&$s) { /* Get the current state of our config variables */ - $enabled = get_pconfig(local_user(),'libertree','post'); - + $enabled = PConfig::get(local_user(),'libertree','post'); $checked = (($enabled) ? ' checked="checked" ' : ''); + $css = (($enabled) ? '' : '-disabled'); - $def_enabled = get_pconfig(local_user(),'libertree','post_by_default'); + $def_enabled = PConfig::get(local_user(),'libertree','post_by_default'); $def_checked = (($def_enabled) ? ' checked="checked" ' : ''); - $ltree_api_token = get_pconfig(local_user(), 'libertree', 'libertree_api_token'); - $ltree_url = get_pconfig(local_user(), 'libertree', 'libertree_url'); + $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 .= '

' . t('libertree Post Settings') . '

'; + $s .= ''; + $s .= '

'. t('libertree Export').'

'; + $s .= '
'; + $s .= ''; } @@ -96,10 +104,10 @@ function libertree_settings_post(&$a,&$b) { if(x($_POST,'libertree-submit')) { - set_pconfig(local_user(),'libertree','post',intval($_POST['libertree'])); - set_pconfig(local_user(),'libertree','post_by_default',intval($_POST['libertree_bydefault'])); - set_pconfig(local_user(),'libertree','libertree_api_token',trim($_POST['libertree_api_token'])); - set_pconfig(local_user(),'libertree','libertree_url',trim($_POST['libertree_url'])); + 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'])); } @@ -109,28 +117,35 @@ function libertree_post_local(&$a,&$b) { // This can probably be changed to allow editing by pointing to a different API endpoint - 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; + } - $ltree_post = intval(get_pconfig(local_user(),'libertree','post')); + $ltree_post = intval(PConfig::get(local_user(),'libertree','post')); $ltree_enable = (($ltree_post && x($_REQUEST,'libertree_enable')) ? intval($_REQUEST['libertree_enable']) : 0); - if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'libertree','post_by_default'))) + if ($b['api_source'] && intval(PConfig::get(local_user(),'libertree','post_by_default'))) { $ltree_enable = 1; + } - if(! $ltree_enable) - return; + if (!$ltree_enable) { + return; + } + + if (strlen($b['postopts'])) { + $b['postopts'] .= ','; + } - if(strlen($b['postopts'])) - $b['postopts'] .= ','; - $b['postopts'] .= 'libertree'; + $b['postopts'] .= 'libertree'; } @@ -140,24 +155,37 @@ function libertree_send(&$a,&$b) { logger('libertree_send: invoked'); - if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) - return; + if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) { + return; + } - if(! strstr($b['postopts'],'libertree')) - return; + if (! strstr($b['postopts'],'libertree')) { + return; + } - if($b['parent'] != $b['id']) - 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 = get_pconfig($b['uid'],'libertree','libertree_api_token'); - $ltree_url = get_pconfig($b['uid'],'libertree','libertree_url'); + $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 = $a->get_hostname(); - if($ltree_url && $ltree_api_token && $ltree_blog) { + if ($b['app'] != "") + $ltree_source .= " (".$b['app'].")"; + + if($ltree_url && $ltree_api_token && $ltree_blog && $ltree_source) { require_once('include/bb2diaspora.php'); - $tag_arr = array(); + $tag_arr = []; $tags = ''; $x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER); @@ -171,14 +199,35 @@ function libertree_send(&$a,&$b) { $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, false); + + // Adding the title if(strlen($title)) - $body = "[b]".html_entity_decode($title)."[/b]\n\n".$body; + $body = "## ".html_entity_decode($title)."\n\n".$body; + - $params = array( - 'text' => bb2diaspora($body) + $params = [ + 'text' => $body, + 'source' => $ltree_source // 'token' => $ltree_api_token - ); + ]; $result = post_url($ltree_blog,$params); logger('libertree: ' . $result);