2015-04-25 19:25:03 +00:00
|
|
|
<?php
|
2021-09-11 09:56:57 +00:00
|
|
|
/**
|
|
|
|
* @brief zoneclearFeedServer, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
|
|
|
* @author Jean-Christian Denis, BG, Pierre Van Glabeke
|
|
|
|
*
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2015-04-25 19:25:03 +00:00
|
|
|
|
|
|
|
if (!defined('DC_CONTEXT_ADMIN')) {
|
2021-09-11 09:56:57 +00:00
|
|
|
return null;
|
2015-04-25 19:25:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$core->blog->settings->addNamespace('zoneclearFeedServer');
|
|
|
|
|
2021-09-12 00:24:36 +00:00
|
|
|
require_once dirname(__FILE__) . '/_widgets.php';
|
2015-04-25 19:25:03 +00:00
|
|
|
|
2021-09-12 00:24:36 +00:00
|
|
|
$_menu['Plugins']->addItem(
|
2021-09-11 09:56:57 +00:00
|
|
|
__('Feeds server'),
|
2021-09-12 00:24:36 +00:00
|
|
|
$core->adminurl->get('admin.plugin.zoneclearFeedServer'),
|
|
|
|
dcPage::getPF('zoneclearFeedServer/icon.png'),
|
2021-09-11 09:56:57 +00:00
|
|
|
preg_match(
|
2021-09-12 00:24:36 +00:00
|
|
|
'/' . preg_quote($core->adminurl->get('admin.plugin.zoneclearFeedServer')) . '(&.*)?$/',
|
2021-09-11 09:56:57 +00:00
|
|
|
$_SERVER['REQUEST_URI']
|
|
|
|
),
|
|
|
|
$core->auth->check('admin', $core->blog->id)
|
2015-04-25 19:25:03 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
# Delete related info about feed post in meta table
|
2021-09-12 00:24:36 +00:00
|
|
|
$core->addBehavior('adminBeforePostDelete',['zcfsAdminBehaviors', 'adminBeforePostDelete']);
|
2015-04-25 19:25:03 +00:00
|
|
|
|
|
|
|
if ($core->auth->check('admin', $core->blog->id)) {
|
|
|
|
|
2021-09-11 09:56:57 +00:00
|
|
|
# Dashboard icon
|
2021-09-12 00:24:36 +00:00
|
|
|
$core->addBehavior('adminDashboardFavorites', ['zcfsAdminBehaviors', 'adminDashboardFavorites']);
|
2021-10-09 20:21:31 +00:00
|
|
|
# User pref
|
|
|
|
$core->addBehavior('adminColumnsLists', ['zcfsAdminBehaviors', 'adminColumnsLists']);
|
|
|
|
$core->addBehavior('adminFiltersLists', ['zcfsAdminBehaviors', 'adminFiltersLists']);
|
2021-09-11 09:56:57 +00:00
|
|
|
# Add info about feed on post page sidebar
|
2021-09-12 00:24:36 +00:00
|
|
|
$core->addBehavior('adminPostHeaders', ['zcfsAdminBehaviors', 'adminPostHeaders']);
|
|
|
|
$core->addBehavior('adminPostFormItems', ['zcfsAdminBehaviors', 'adminPostFormItems']);
|
2015-04-25 19:25:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Take care about tweakurls (thanks Mathieu M.)
|
|
|
|
if (version_compare($core->plugins->moduleInfo('tweakurls', 'version'), '0.8', '>=')) {
|
|
|
|
|
2021-09-12 00:24:36 +00:00
|
|
|
$core->addbehavior('zcfsAfterPostCreate', ['zoneclearFeedServer', 'tweakurlsAfterPostCreate']);
|
2015-04-25 19:25:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup DC_PLUGIN_ZONECLEARFEEDSERVER
|
|
|
|
* @brief Mix your blog with a feeds planet - admin methods.
|
|
|
|
* @since 2.6
|
|
|
|
*/
|
|
|
|
class zcfsAdminBehaviors
|
|
|
|
{
|
2021-10-09 20:21:31 +00:00
|
|
|
public static function feedsSortbyCombo()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
__('Date') => 'feed_upddt',
|
|
|
|
__('Name') => 'lowername',
|
|
|
|
__('Frequency') => 'feed_upd_int',
|
|
|
|
__('Date of update') => 'feed_upd_last',
|
|
|
|
__('Status') => 'feed_status'
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2021-09-11 09:56:57 +00:00
|
|
|
/**
|
|
|
|
* Favorites.
|
|
|
|
*
|
|
|
|
* @param dcCore $core dcCore instance
|
|
|
|
* @param arrayObject $favs Array of favorites
|
|
|
|
*/
|
2021-09-12 00:24:36 +00:00
|
|
|
public static function adminDashboardFavorites(dcCore $core, dcFavorites $favs)
|
2021-09-11 09:56:57 +00:00
|
|
|
{
|
|
|
|
$favs->register('zcfs', array(
|
|
|
|
'title' => __('Feeds server'),
|
2021-09-12 00:24:36 +00:00
|
|
|
'url' => $core->adminurl->get('admin.plugin.zoneclearFeedServer'),
|
|
|
|
'small-icon' => dcPage::getPF('zoneclearFeedServer/icon.png'),
|
|
|
|
'large-icon' => dcPage::getPF('zoneclearFeedServer/icon-big.png'),
|
|
|
|
'permissions' => 'usage,contentadmin',
|
|
|
|
'active_cb' => ['zcfsAdminBehaviors', 'adminDashboardFavoritesActive'],
|
|
|
|
'dashboard_cb' => ['zcfsAdminBehaviors', 'adminDashboardFavoritesCallback']
|
2021-09-11 09:56:57 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Favorites selection.
|
|
|
|
*
|
|
|
|
* @param string $request Requested page
|
|
|
|
* @param array $params Requested parameters
|
|
|
|
*/
|
|
|
|
public static function adminDashboardFavoritesActive($request, $params)
|
|
|
|
{
|
|
|
|
return $request == 'plugin.php'
|
|
|
|
&& isset($params['p'])
|
|
|
|
&& $params['p'] == 'zoneclearFeedServer';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Favorites hack.
|
|
|
|
*
|
|
|
|
* @param dcCore $core dcCore instance
|
|
|
|
* @param arrayObject $fav Fav attributes
|
|
|
|
*/
|
|
|
|
public static function adminDashboardFavoritesCallback(dcCore $core, $fav)
|
|
|
|
{
|
|
|
|
$zcfs = new zoneclearFeedServer($core);
|
|
|
|
|
2021-09-12 00:24:36 +00:00
|
|
|
$count = $zcfs->getFeeds(['feed_status' => '0'], true)->f(0);
|
2021-09-11 09:56:57 +00:00
|
|
|
if (!$count) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-09-12 00:24:36 +00:00
|
|
|
$fav['title'] .= '<br />'.sprintf(__('%s feed disabled', '%s feeds disabled', $count), $count);
|
|
|
|
$fav['large-icon'] = dcPage::getPF('zoneclearFeedServer/icon-big-update.png');
|
|
|
|
$fav['url'] = $core->adminurl->get(
|
|
|
|
'admin.plugin.zoneclearFeedServer',
|
|
|
|
['part' => 'feeds', 'sortby' => 'feed_status', 'order' => 'asc']
|
2021-09-11 09:56:57 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-10-09 20:21:31 +00:00
|
|
|
/**
|
|
|
|
* User pref columns lists.
|
|
|
|
*
|
|
|
|
* @param dcCore $core dcCore instance
|
|
|
|
* @param arrayObject $cols Columns
|
|
|
|
*/
|
|
|
|
public static function adminColumnsLists(dcCore $core, $cols)
|
|
|
|
{
|
|
|
|
$cols['zcfs_feeds'] = [
|
|
|
|
__('Feeds server: Feeds'),
|
|
|
|
[
|
|
|
|
'desc' => [true, __('Feed')],
|
|
|
|
'period' => [true, __('Frequency')],
|
|
|
|
'update' => [true, __('Last update')],
|
|
|
|
'entries' => [true, __('Entries')]
|
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* User pref filters options.
|
|
|
|
*
|
|
|
|
* @param dcCore $core dcCore instance
|
|
|
|
* @param arrayObject $sorts Sort options
|
|
|
|
*/
|
|
|
|
public static function adminFiltersLists(dcCore $core, $sorts)
|
|
|
|
{
|
|
|
|
$sorts['zcfs_feeds'] = [
|
|
|
|
__('Feeds server: Feeds'),
|
|
|
|
self::feedsSortbyCombo(),
|
|
|
|
'lowername',
|
|
|
|
'asc',
|
|
|
|
[__('Links per page'), 30]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2021-09-11 09:56:57 +00:00
|
|
|
/**
|
|
|
|
* Add javascript for toggle to post edition page header.
|
|
|
|
*
|
|
|
|
* @return string Page header
|
|
|
|
*/
|
|
|
|
public static function adminPostHeaders()
|
|
|
|
{
|
2021-09-12 00:24:36 +00:00
|
|
|
return dcPage::jsLoad(dcPage::getPF('zoneclearFeedServer/js/post.js'));
|
2021-09-11 09:56:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add form to post sidebar.
|
|
|
|
*
|
|
|
|
* @param ArrayObject $main_items Main items
|
|
|
|
* @param ArrayObject $sidebar_items Sidebar items
|
|
|
|
* @param record $post Post record or null
|
|
|
|
*/
|
|
|
|
public static function adminPostFormItems(ArrayObject $main_items, ArrayObject $sidebar_items, $post)
|
|
|
|
{
|
|
|
|
if ($post === null || $post->post_type != 'post') {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
global $core;
|
|
|
|
|
2021-09-12 00:24:36 +00:00
|
|
|
$url = $core->meta->getMetadata([
|
|
|
|
'post_id' => $post->post_id,
|
|
|
|
'meta_type' => 'zoneclearfeed_url',
|
|
|
|
'limit' => 1
|
|
|
|
]);
|
2021-09-11 09:56:57 +00:00
|
|
|
$url = $url->isEmpty() ? '' : $url->meta_id;
|
|
|
|
if (!$url) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-09-12 00:24:36 +00:00
|
|
|
$author = $core->meta->getMetadata([
|
|
|
|
'post_id' => $post->post_id,
|
|
|
|
'meta_type' => 'zoneclearfeed_author',
|
|
|
|
'limit' => 1
|
|
|
|
]);
|
2021-09-11 09:56:57 +00:00
|
|
|
$author = $author->isEmpty() ? '' : $author->meta_id;
|
|
|
|
|
2021-09-12 00:24:36 +00:00
|
|
|
$site = $core->meta->getMetadata([
|
|
|
|
'post_id' => $post->post_id,
|
|
|
|
'meta_type' => 'zoneclearfeed_site',
|
|
|
|
'limit' => 1
|
|
|
|
]);
|
2021-09-11 09:56:57 +00:00
|
|
|
$site = $site->isEmpty() ? '' : $site->meta_id;
|
|
|
|
|
2021-09-12 00:24:36 +00:00
|
|
|
$sitename = $core->meta->getMetadata([
|
|
|
|
'post_id' => $post->post_id,
|
|
|
|
'meta_type' => 'zoneclearfeed_sitename',
|
|
|
|
'limit' => 1
|
|
|
|
]);
|
2021-09-11 09:56:57 +00:00
|
|
|
$sitename = $sitename->isEmpty() ? '' : $sitename->meta_id;
|
|
|
|
|
|
|
|
$edit = '';
|
|
|
|
if ($core->auth->check('admin', $core->blog->id)) {
|
2021-09-12 00:24:36 +00:00
|
|
|
$fid = $core->meta->getMetadata([
|
|
|
|
'post_id' => $post->post_id,
|
|
|
|
'meta_type' => 'zoneclearfeed_id',
|
|
|
|
'limit' => 1
|
|
|
|
]);
|
2021-09-11 09:56:57 +00:00
|
|
|
if (!$fid->isEmpty()) {
|
2021-09-12 00:24:36 +00:00
|
|
|
$edit = sprintf(
|
|
|
|
'<p><a href="%s">%s</a></p>',
|
|
|
|
$core->adminurl->get(
|
|
|
|
'admin.plugin.zoneclearFeedServer',
|
|
|
|
['part' => 'feed', 'feed' => $fid->meta_id]
|
|
|
|
),
|
|
|
|
__('Edit this feed')
|
|
|
|
);
|
2021-09-11 09:56:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$sidebar_items['options-box']['items']['zcfs'] =
|
|
|
|
'<div id="zcfs">'.
|
2021-09-12 00:24:36 +00:00
|
|
|
'<h5>' . __('Feed source') . '</h5>' .
|
|
|
|
'<p>' .
|
|
|
|
'<a href="' . $url . '" title="' . $author . ' - ' . $url . '">' . __('feed URL') . '</a> - ' .
|
|
|
|
'<a href="' . $site . '" title="' . $sitename . ' - ' . $site . '">' . __('site URL') . '</a>' .
|
|
|
|
'</p>' .
|
|
|
|
$edit .
|
2021-09-11 09:56:57 +00:00
|
|
|
'</div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete related info about feed post in meta table.
|
|
|
|
*
|
|
|
|
* @param integer $post_id Post id
|
|
|
|
*/
|
|
|
|
public static function adminBeforePostDelete($post_id)
|
|
|
|
{
|
|
|
|
global $core;
|
|
|
|
|
|
|
|
$core->con->execute(
|
2021-09-12 00:24:36 +00:00
|
|
|
'DELETE FROM ' . $core->prefix . 'meta ' .
|
|
|
|
'WHERE post_id = ' . ((integer) $post_id) . ' ' .
|
|
|
|
'AND meta_type ' . $core->con->in([
|
2021-09-11 09:56:57 +00:00
|
|
|
'zoneclearfeed_url',
|
|
|
|
'zoneclearfeed_author',
|
|
|
|
'zoneclearfeed_site',
|
|
|
|
'zoneclearfeed_sitename',
|
|
|
|
'zoneclearfeed_id'
|
2021-09-12 00:24:36 +00:00
|
|
|
]).' '
|
2021-09-11 09:56:57 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|