2021-09-07 12:33:18 +00:00
|
|
|
|
<?php
|
2021-09-07 13:21:38 +00:00
|
|
|
|
/**
|
|
|
|
|
* @brief cinecturlink2, a plugin for Dotclear 2
|
|
|
|
|
*
|
|
|
|
|
* @package Dotclear
|
|
|
|
|
* @subpackage Plugin
|
|
|
|
|
*
|
|
|
|
|
* @author Jean-Christian Denis and Contributors
|
|
|
|
|
*
|
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
|
*/
|
2021-09-07 12:33:18 +00:00
|
|
|
|
|
|
|
|
|
if (!defined('DC_RC_PATH')) {
|
2021-09-07 13:21:38 +00:00
|
|
|
|
return null;
|
2021-09-07 12:33:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$core->addBehavior(
|
2021-09-07 13:21:38 +00:00
|
|
|
|
'initWidgets',
|
2021-09-07 14:00:49 +00:00
|
|
|
|
['cinecturlink2Widget', 'adminLinks']
|
2021-09-07 12:33:18 +00:00
|
|
|
|
);
|
|
|
|
|
$core->addBehavior(
|
2021-09-07 13:21:38 +00:00
|
|
|
|
'initWidgets',
|
2021-09-07 14:00:49 +00:00
|
|
|
|
['cinecturlink2Widget', 'adminCats']
|
2021-09-07 12:33:18 +00:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
class cinecturlink2Widget
|
|
|
|
|
{
|
2021-09-07 13:21:38 +00:00
|
|
|
|
public static function adminLinks($w)
|
|
|
|
|
{
|
|
|
|
|
global $core;
|
|
|
|
|
|
|
|
|
|
$C2 = new cinecturlink2($core);
|
|
|
|
|
|
2021-09-07 14:00:49 +00:00
|
|
|
|
$categories_combo = ['' => '', __('Uncategorized') => 'null'];
|
2021-09-07 13:21:38 +00:00
|
|
|
|
$categories = $C2->getCategories();
|
|
|
|
|
while($categories->fetch()) {
|
|
|
|
|
$cat_title = html::escapeHTML($categories->cat_title);
|
|
|
|
|
$categories_combo[$cat_title] = $categories->cat_id;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 14:00:49 +00:00
|
|
|
|
$sortby_combo = [
|
|
|
|
|
__('Update date') => 'link_upddt',
|
|
|
|
|
__('My rating') => 'link_note',
|
|
|
|
|
__('Title') => 'link_title',
|
|
|
|
|
__('Random') => 'RANDOM',
|
|
|
|
|
__('Number of views') => 'COUNTER'
|
|
|
|
|
];
|
|
|
|
|
$order_combo = [
|
|
|
|
|
__('Ascending') => 'asc',
|
|
|
|
|
__('Descending') => 'desc'
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$w
|
|
|
|
|
->create(
|
|
|
|
|
'cinecturlink2links',
|
|
|
|
|
__('My cinecturlink'),
|
|
|
|
|
['cinecturlink2Widget', 'publicLinks'],
|
|
|
|
|
null,
|
|
|
|
|
__('Show selection of cinecturlinks')
|
2021-09-07 13:21:38 +00:00
|
|
|
|
)
|
2021-09-07 14:00:49 +00:00
|
|
|
|
->addTitle(
|
|
|
|
|
__('My cinecturlink'),
|
|
|
|
|
)
|
|
|
|
|
->setting(
|
|
|
|
|
'category',
|
|
|
|
|
__('Category:'),
|
|
|
|
|
'',
|
|
|
|
|
'combo',
|
|
|
|
|
$categories_combo
|
|
|
|
|
)
|
|
|
|
|
->setting(
|
|
|
|
|
'sortby',
|
|
|
|
|
__('Order by:'),
|
|
|
|
|
'link_upddt',
|
|
|
|
|
'combo',
|
|
|
|
|
$sortby_combo
|
|
|
|
|
)
|
|
|
|
|
->setting(
|
|
|
|
|
'sort',
|
|
|
|
|
__('Sort: (only for date, note and title)'),
|
|
|
|
|
'desc',
|
|
|
|
|
'combo',
|
|
|
|
|
$order_combo
|
|
|
|
|
)
|
|
|
|
|
->setting(
|
|
|
|
|
'limit',
|
|
|
|
|
__('Limit:'),
|
|
|
|
|
10,
|
|
|
|
|
'text'
|
|
|
|
|
)
|
|
|
|
|
->setting(
|
|
|
|
|
'withlink',
|
|
|
|
|
__('Enable link'),
|
|
|
|
|
1,
|
|
|
|
|
'check'
|
|
|
|
|
)
|
|
|
|
|
->setting(
|
|
|
|
|
'showauthor',
|
|
|
|
|
__('Show author'),
|
|
|
|
|
1,
|
|
|
|
|
'check'
|
|
|
|
|
)
|
|
|
|
|
->setting(
|
|
|
|
|
'shownote',
|
|
|
|
|
__('Show my rating'),
|
|
|
|
|
0,
|
|
|
|
|
'check'
|
|
|
|
|
)
|
|
|
|
|
->setting(
|
|
|
|
|
'showdesc',
|
|
|
|
|
__('Show description'),
|
|
|
|
|
0,
|
|
|
|
|
'check'
|
|
|
|
|
)
|
|
|
|
|
->setting(
|
|
|
|
|
'showpagelink',
|
|
|
|
|
__('Show a link to cinecturlink page'),
|
|
|
|
|
0,
|
|
|
|
|
'check'
|
|
|
|
|
)
|
|
|
|
|
->addHomeOnly()
|
|
|
|
|
->addContentOnly()
|
|
|
|
|
->addClass()
|
|
|
|
|
->addOffline();
|
2021-09-07 13:21:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function adminCats($w)
|
|
|
|
|
{
|
2021-09-07 14:00:49 +00:00
|
|
|
|
$w
|
|
|
|
|
->create(
|
|
|
|
|
'cinecturlink2cats',
|
|
|
|
|
__('List of categories of cinecturlink'),
|
|
|
|
|
['cinecturlink2Widget', 'publicCats'],
|
|
|
|
|
null,
|
|
|
|
|
__('List of categories of cinecturlink')
|
2021-09-07 13:21:38 +00:00
|
|
|
|
)
|
2021-09-07 14:00:49 +00:00
|
|
|
|
->addTitle(
|
|
|
|
|
__('My cinecturlink by categories')
|
|
|
|
|
)
|
|
|
|
|
->setting(
|
|
|
|
|
'title',
|
|
|
|
|
__('Title:'),
|
|
|
|
|
__('My cinecturlink by categories'),
|
|
|
|
|
'text'
|
|
|
|
|
)
|
|
|
|
|
->setting(
|
|
|
|
|
'shownumlink',
|
|
|
|
|
__('Show number of links'),
|
|
|
|
|
0,
|
|
|
|
|
'check'
|
|
|
|
|
)
|
|
|
|
|
->addHomeOnly()
|
|
|
|
|
->addContentOnly()
|
|
|
|
|
->addClass()
|
|
|
|
|
->addOffline();
|
2021-09-07 13:21:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function publicLinks($w)
|
|
|
|
|
{
|
|
|
|
|
global $core;
|
|
|
|
|
|
|
|
|
|
$core->blog->settings->addNamespace('cinecturlink2');
|
|
|
|
|
|
2021-09-07 14:00:49 +00:00
|
|
|
|
if (!$core->blog->settings->cinecturlink2->cinecturlink2_active
|
|
|
|
|
|| $w->homeonly == 1 && !$core->url->isHome($core->url->type)
|
|
|
|
|
|| $w->homeonly == 2 && $core->url->isHome($core->url->type)
|
2021-09-07 13:21:38 +00:00
|
|
|
|
) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$C2 = new cinecturlink2($core);
|
|
|
|
|
|
|
|
|
|
if ($w->category) {
|
|
|
|
|
if ($w->category == 'null') {
|
|
|
|
|
$params['sql'] = ' AND L.cat_id IS NULL ';
|
|
|
|
|
}
|
|
|
|
|
elseif (is_numeric($w->category)) {
|
|
|
|
|
$params['cat_id'] = (integer) $w->category;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$limit = abs((integer) $w->limit);
|
|
|
|
|
|
2021-09-07 14:00:49 +00:00
|
|
|
|
// Tirage al<61>atoire: Consomme beaucoup de ressources!
|
2021-09-07 13:21:38 +00:00
|
|
|
|
if ($w->sortby == 'RANDOM') {
|
|
|
|
|
$big_rs = $C2->getLinks($params);
|
|
|
|
|
|
|
|
|
|
if ($big_rs->isEmpty()) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 14:00:49 +00:00
|
|
|
|
$ids= [];
|
2021-09-07 13:21:38 +00:00
|
|
|
|
while($big_rs->fetch()) {
|
|
|
|
|
$ids[] = $big_rs->link_id;
|
|
|
|
|
}
|
|
|
|
|
shuffle($ids);
|
|
|
|
|
$ids = array_slice($ids, 0, $limit);
|
|
|
|
|
|
2021-09-07 14:00:49 +00:00
|
|
|
|
$params['link_id'] = [];
|
2021-09-07 13:21:38 +00:00
|
|
|
|
foreach($ids as $id) {
|
|
|
|
|
$params['link_id'][] = $id;
|
|
|
|
|
}
|
2021-09-07 14:00:49 +00:00
|
|
|
|
} elseif ($w->sortby == 'COUNTER') {
|
2021-09-07 13:21:38 +00:00
|
|
|
|
$params['order'] = 'link_count asc';
|
|
|
|
|
$params['limit'] = $limit;
|
2021-09-07 14:00:49 +00:00
|
|
|
|
} else {
|
2021-09-07 13:21:38 +00:00
|
|
|
|
$params['order'] = $w->sortby;
|
|
|
|
|
$params['order'] .= $w->sort == 'asc' ? ' asc' : ' desc';
|
|
|
|
|
$params['limit'] = $limit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$rs = $C2->getLinks($params);
|
|
|
|
|
|
|
|
|
|
if ($rs->isEmpty()) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$widthmax = (integer) $core->blog->settings->cinecturlink2->cinecturlink2_widthmax;
|
2021-09-07 14:00:49 +00:00
|
|
|
|
$style = $widthmax ? ' style="width:' . $widthmax . 'px;"' : '';
|
2021-09-07 13:21:38 +00:00
|
|
|
|
|
2021-09-07 14:00:49 +00:00
|
|
|
|
$entries = [];
|
2021-09-07 13:21:38 +00:00
|
|
|
|
while($rs->fetch()) {
|
2021-09-07 14:00:49 +00:00
|
|
|
|
$url = $rs->link_url;
|
|
|
|
|
$img = $rs->link_img;
|
|
|
|
|
$title = html::escapeHTML($rs->link_title);
|
|
|
|
|
$author = html::escapeHTML($rs->link_author);
|
|
|
|
|
$cat = html::escapeHTML($rs->cat_title);
|
|
|
|
|
$note = $w->shownote ? ' <em>(' . $rs->link_note . '/20)</em>' : '';
|
|
|
|
|
$desc = $w->showdesc ? '<br /><em>' . html::escapeHTML($rs->link_desc) . '</em>' : '';
|
|
|
|
|
$lang = $rs->link_lang ? ' hreflang="' . $rs->link_lang . '"' : '';
|
|
|
|
|
$count = abs((integer) $rs->link_count);
|
2021-09-07 13:21:38 +00:00
|
|
|
|
|
|
|
|
|
# --BEHAVIOR-- cinecturlink2WidgetLinks
|
|
|
|
|
$bhv = $core->callBehavior('cinecturlink2WidgetLinks', $rs->link_id);
|
|
|
|
|
|
|
|
|
|
$entries[] =
|
2021-09-07 14:00:49 +00:00
|
|
|
|
'<p style="text-align:center;">' .
|
|
|
|
|
($w->withlink && !empty($url) ? '<a href="' . $url . '"' . $lang . ' title="' . $cat . '">' : '') .
|
|
|
|
|
'<strong>' . $title . '</strong>' . $note . '<br />' .
|
|
|
|
|
($w->showauthor ? $author . '<br />' : '') . '<br />' .
|
|
|
|
|
'<img src="' . $img . '" alt="' . $title . ' - ' . $author . '"' . $style . ' />' .
|
|
|
|
|
$desc .
|
|
|
|
|
($w->withlink && !empty($url) ? '</a>' : '') .
|
|
|
|
|
'</p>' . $bhv;
|
2021-09-07 13:21:38 +00:00
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$cur = $core->con->openCursor($C2->table);
|
|
|
|
|
$cur->link_count = ($count + 1);
|
|
|
|
|
$C2->updLink($rs->link_id, $cur, false);
|
2021-09-07 14:00:49 +00:00
|
|
|
|
} catch (Exception $e) {
|
2021-09-07 13:21:38 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
# Tirage al<61>atoire
|
|
|
|
|
if ($w->sortby == 'RANDOM'
|
2021-09-07 14:00:49 +00:00
|
|
|
|
|| $w->sortby == 'COUNTER'
|
2021-09-07 13:21:38 +00:00
|
|
|
|
) {
|
|
|
|
|
shuffle($entries);
|
|
|
|
|
if ($core->blog->settings->cinecturlink2->cinecturlink2_triggeronrandom) {
|
|
|
|
|
$core->blog->triggerBlog();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 14:00:49 +00:00
|
|
|
|
return $w->renderDiv(
|
|
|
|
|
$w->content_only,
|
|
|
|
|
'cinecturlink2list '. $w->class,
|
|
|
|
|
'',
|
|
|
|
|
($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : '') . implode(' ',$entries) .
|
|
|
|
|
($w->showpagelink && $core->blog->settings->cinecturlink2->cinecturlink2_public_active ?
|
|
|
|
|
'<p><a href="' . $core->blog->url . $core->url->getBase('cinecturlink2') . '" title="' . __('view all links') . '">' . __('More links') . '</a></p>' : ''
|
|
|
|
|
)
|
|
|
|
|
);
|
2021-09-07 13:21:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function publicCats($w)
|
|
|
|
|
{
|
|
|
|
|
global $core;
|
|
|
|
|
|
|
|
|
|
$core->blog->settings->addNamespace('cinecturlink2');
|
|
|
|
|
|
2021-09-07 14:00:49 +00:00
|
|
|
|
if (!$core->blog->settings->cinecturlink2->cinecturlink2_active
|
|
|
|
|
|| !$core->blog->settings->cinecturlink2->cinecturlink2_public_active
|
|
|
|
|
|| $w->homeonly == 1 && !$core->url->isHome($core->url->type)
|
|
|
|
|
|| $w->homeonly == 2 && $core->url->isHome($core->url->type)
|
2021-09-07 13:21:38 +00:00
|
|
|
|
) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$C2 = new cinecturlink2($core);
|
2021-09-07 14:00:49 +00:00
|
|
|
|
$rs = $C2->getCategories([]);
|
2021-09-07 13:21:38 +00:00
|
|
|
|
if ($rs->isEmpty()) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 14:00:49 +00:00
|
|
|
|
$res = [];
|
|
|
|
|
$res[] =
|
|
|
|
|
'<li><a href="' .
|
|
|
|
|
$core->blog->url . $core->url->getBase('cinecturlink2') .
|
|
|
|
|
'" title="' . __('view all links') . '">' . __('all links') .
|
|
|
|
|
'</a>'. ($w->shownumlink ? ' ('. ($C2->getLinks([], true)->f(0)) . ')' : '') .
|
|
|
|
|
'</li>';
|
2021-09-07 13:21:38 +00:00
|
|
|
|
|
|
|
|
|
while($rs->fetch()) {
|
2021-09-07 14:00:49 +00:00
|
|
|
|
$res[] =
|
|
|
|
|
'<li><a href="' .
|
|
|
|
|
$core->blog->url . $core->url->getBase('cinecturlink2') . '/' .
|
|
|
|
|
$core->blog->settings->cinecturlink2->cinecturlink2_public_caturl . '/' .
|
|
|
|
|
urlencode($rs->cat_title) .
|
|
|
|
|
'" title="'.__('view links of this category') . '">' .
|
|
|
|
|
html::escapeHTML($rs->cat_title) .
|
|
|
|
|
'</a>'. ($w->shownumlink ? ' (' .
|
|
|
|
|
($C2->getLinks(['cat_id' => $rs->cat_id], true)->f(0)) . ')' : '') .
|
|
|
|
|
'</li>';
|
2021-09-07 13:21:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 14:00:49 +00:00
|
|
|
|
return $w->renderDiv(
|
|
|
|
|
$w->content_only,
|
|
|
|
|
'cinecturlink2cat '. $w->class,
|
|
|
|
|
'',
|
|
|
|
|
($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : '') .
|
|
|
|
|
'<ul>' . implode(' ',$res) . '</ul>'
|
|
|
|
|
);
|
2021-09-07 13:21:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|