2016-10-03 09:43:49 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Plugin Isso.
|
|
|
|
*/
|
|
|
|
|
2017-05-09 18:12:15 +02:00
|
|
|
use Shaarli\Config\ConfigManager;
|
|
|
|
|
2016-10-03 09:43:49 +02:00
|
|
|
/**
|
|
|
|
* Display an error everywhere if the plugin is enabled without configuration.
|
|
|
|
*
|
|
|
|
* @param $conf ConfigManager instance
|
|
|
|
*
|
|
|
|
* @return mixed - linklist data with Isso plugin.
|
|
|
|
*/
|
|
|
|
function isso_init($conf)
|
|
|
|
{
|
|
|
|
$issoUrl = $conf->get('plugins.ISSO_SERVER');
|
|
|
|
if (empty($issoUrl)) {
|
2017-05-09 18:12:15 +02:00
|
|
|
$error = t('Isso plugin error: '.
|
|
|
|
'Please define the "ISSO_SERVER" setting in the plugin administration page.');
|
2016-10-03 09:43:49 +02:00
|
|
|
return array($error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render linklist hook.
|
|
|
|
* Will only display Isso comments on permalinks.
|
|
|
|
*
|
|
|
|
* @param $data array List of links
|
|
|
|
* @param $conf ConfigManager instance
|
|
|
|
*
|
|
|
|
* @return mixed - linklist data with Isso plugin.
|
|
|
|
*/
|
|
|
|
function hook_isso_render_linklist($data, $conf)
|
|
|
|
{
|
|
|
|
$issoUrl = $conf->get('plugins.ISSO_SERVER');
|
|
|
|
if (empty($issoUrl)) {
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only display comments for permalinks.
|
|
|
|
if (count($data['links']) == 1 && empty($data['search_tags']) && empty($data['search_term'])) {
|
|
|
|
$link = reset($data['links']);
|
2016-11-28 16:16:44 +01:00
|
|
|
$issoHtml = file_get_contents(PluginManager::$PLUGINS_PATH . '/isso/isso.html');
|
2016-10-03 09:43:49 +02:00
|
|
|
|
2016-11-28 18:24:15 +01:00
|
|
|
$isso = sprintf($issoHtml, $issoUrl, $issoUrl, $link['id'], $link['id']);
|
2016-10-03 09:43:49 +02:00
|
|
|
$data['plugin_end_zone'][] = $isso;
|
2018-08-14 13:39:31 +02:00
|
|
|
} else {
|
|
|
|
$button = '<span><a href="?%s#isso-thread">';
|
|
|
|
// For the default theme we use a FontAwesome icon which is better than an image
|
|
|
|
if ($conf->get('resource.theme') === 'default') {
|
|
|
|
$button .= '<i class="linklist-plugin-icon fa fa-comment"></i>';
|
|
|
|
} else {
|
|
|
|
$button .= '<img class="linklist-plugin-icon" src="plugins/isso/comment.png" ';
|
|
|
|
$button .= 'title="Comment on this shaare" alt="Comments" />';
|
|
|
|
}
|
|
|
|
$button .= '</a></span>';
|
|
|
|
foreach ($data['links'] as &$value) {
|
|
|
|
$commentLink = sprintf($button, $value['shorturl']);
|
|
|
|
$value['link_plugin'][] = $commentLink;
|
|
|
|
}
|
|
|
|
}
|
2016-10-03 09:43:49 +02:00
|
|
|
|
2018-08-14 13:39:31 +02:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When linklist is displayed, include isso CSS file.
|
|
|
|
*
|
|
|
|
* @param array $data - header data.
|
|
|
|
*
|
|
|
|
* @return mixed - header data with isso CSS file added.
|
|
|
|
*/
|
|
|
|
function hook_isso_render_includes($data)
|
|
|
|
{
|
|
|
|
if ($data['_PAGE_'] == Router::$PAGE_LINKLIST) {
|
|
|
|
$data['css_files'][] = PluginManager::$PLUGINS_PATH . '/isso/isso.css';
|
2016-10-03 09:43:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
2017-05-09 18:12:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is never called, but contains translation calls for GNU gettext extraction.
|
|
|
|
*/
|
|
|
|
function isso_dummy_translation()
|
|
|
|
{
|
|
|
|
// meta
|
|
|
|
t('Let visitor comment your shaares on permalinks with Isso.');
|
|
|
|
t('Isso server URL (without \'http://\')');
|
|
|
|
}
|