1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hubzilla_ynh.git synced 2024-09-03 19:26:21 +02:00
hubzilla_ynh/sources/addons/libertree/libertree.php
2016-02-28 16:41:12 +05:30

211 lines
7 KiB
PHP
Executable file

<?php
/**
* Name: Libertree Post feature
* Description: Post to libertree accounts
* Version: 1.0
* Author: Tony Baldwin <https://red.free-haven.org/channel/tony>
* Maintainer: none
*/
require_once('include/permissions.php');
function libertree_load() {
register_hook('post_local', 'addon/libertree/libertree.php', 'libertree_post_local');
register_hook('notifier_normal', 'addon/libertree/libertree.php', 'libertree_send');
register_hook('jot_networks', 'addon/libertree/libertree.php', 'libertree_jot_nets');
register_hook('feature_settings', 'addon/libertree/libertree.php', 'libertree_settings');
register_hook('feature_settings_post', 'addon/libertree/libertree.php', 'libertree_settings_post');
}
function libertree_unload() {
unregister_hook('post_local', 'addon/libertree/libertree.php', 'libertree_post_local');
unregister_hook('notifier_normal', 'addon/libertree/libertree.php', 'libertree_send');
unregister_hook('jot_networks', 'addon/libertree/libertree.php', 'libertree_jot_nets');
unregister_hook('feature_settings', 'addon/libertree/libertree.php', 'libertree_settings');
unregister_hook('feature_settings_post', 'addon/libertree/libertree.php', 'libertree_settings_post');
}
function libertree_jot_nets(&$a,&$b) {
if((! local_channel()) || (! perm_is_allowed(local_channel(),'','view_stream')))
return;
$ltree_post = get_pconfig(local_channel(),'libertree','post');
if(intval($ltree_post) == 1) {
$ltree_defpost = get_pconfig(local_channel(),'libertree','post_by_default');
$selected = ((intval($ltree_defpost) == 1) ? ' checked="checked" ' : '');
$b .= '<div class="profile-jot-net"><input type="checkbox" name="libertree_enable"' . $selected . ' value="1" /> <img src="addon/libertree/libertree.png" /> ' . t('Post to Libertree') . '</div>';
}
}
function libertree_settings(&$a,&$s) {
if(! local_channel())
return;
/* Add our stylesheet to the page so we can make our settings look nice */
//$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/libertree/libertree.css' . '" media="all" />' . "\r\n";
/* Get the current state of our config variables */
$enabled = get_pconfig(local_channel(),'libertree','post');
$checked = (($enabled) ? 1 : false);
$def_enabled = get_pconfig(local_channel(),'libertree','post_by_default');
$def_checked = (($def_enabled) ? 1 : false);
$ltree_api_token = get_pconfig(local_channel(), 'libertree', 'libertree_api_token');
$ltree_url = get_pconfig(local_channel(), 'libertree', 'libertree_url');
/* Add some HTML to the existing form */
$sc .= replace_macros(get_markup_template('field_checkbox.tpl'), array(
'$field' => array('libertree', t('Enable Libertree Post Plugin'), $checked, '', array(t('No'),t('Yes'))),
));
$sc .= replace_macros(get_markup_template('field_input.tpl'), array(
'$field' => array('libertree_api_token', t('Libertree API token'), $ltree_api_token, '')
));
$sc .= replace_macros(get_markup_template('field_input.tpl'), array(
'$field' => array('libertree_url', t('Libertree site URL'), $ltree_url, '')
));
$sc .= replace_macros(get_markup_template('field_checkbox.tpl'), array(
'$field' => array('libertree_bydefault', t('Post to Libertree by default'), $def_checked, '', array(t('No'),t('Yes'))),
));
$s .= replace_macros(get_markup_template('generic_addon_settings.tpl'), array(
'$addon' => array('libertree','<img src="addon/libertree/libertree.png" style="width:auto; height:1em; margin:-3px 5px 0px 0px;">' . t('Libertree Post Settings'), '', t('Submit')),
'$content' => $sc
));
}
function libertree_settings_post(&$a,&$b) {
if(x($_POST,'libertree-submit')) {
set_pconfig(local_channel(),'libertree','post',intval($_POST['libertree']));
set_pconfig(local_channel(),'libertree','post_by_default',intval($_POST['libertree_bydefault']));
set_pconfig(local_channel(),'libertree','libertree_api_token',trim($_POST['libertree_api_token']));
set_pconfig(local_channel(),'libertree','libertree_url',trim($_POST['libertree_url']));
info( t('Libertree Settings saved.') . EOL);
}
}
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_channel()) || (local_channel() != $b['uid']))
return;
if($b['item_private'] || ($b['mid'] != $b['parent_mid']))
return;
$ltree_post = intval(get_pconfig(local_channel(),'libertree','post'));
$ltree_enable = (($ltree_post && x($_REQUEST,'libertree_enable')) ? intval($_REQUEST['libertree_enable']) : 0);
if($_REQUEST['api_source'] && intval(get_pconfig(local_channel(),'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) {
if((! is_item_normal($b)) || $b['item_private'] || ($b['created'] !== $b['edited']))
return;
if(! perm_is_allowed($b['uid'],'','view_stream'))
return;
if(! strstr($b['postopts'],'libertree'))
return;
if($b['parent'] != $b['id'])
return;
logger('libertree xpost invoked');
$ltree_api_token = get_pconfig($b['uid'],'libertree','libertree_api_token');
$ltree_url = get_pconfig($b['uid'],'libertree','libertree_url');
$ltree_blog = "$ltree_url/api/v1/posts/create/?token=$ltree_api_token";
$ltree_source = "[".$a->config['system']['sitename']."](".$a->get_baseurl().")";
// $ltree_source = "Hubzilla";
logger('sitename: ' . print_r($ltree_source,true));
if($ltree_url && $ltree_api_token && $ltree_blog && $ltree_source) {
require_once('include/bb2diaspora.php');
$tag_arr = array();
$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 = bb2diaspora($body, false, false);
// Adding the title
if(strlen($title))
$body = "## ".html_entity_decode($title)."\n\n".$body;
$params = array(
'text' => $body,
'source' => $ltree_source
// 'token' => $ltree_api_token
);
$level = 0;
$result = z_post_url($ltree_blog,$params,$level,array('novalidate' => true));
logger('libertree: ' . print_r($result,true));
}
}