cinecturlink2/src/Widgets.php

296 lines
9 KiB
PHP
Raw Normal View History

2021-09-07 12:33:18 +00:00
<?php
2023-10-15 18:49:39 +00:00
2023-08-24 11:55:44 +00:00
declare(strict_types=1);
namespace Dotclear\Plugin\cinecturlink2;
2021-09-07 12:33:18 +00:00
2023-10-15 18:49:39 +00:00
use Dotclear\App;
2023-08-24 11:55:44 +00:00
use Dotclear\Helper\Html\Html;
use Dotclear\Plugin\widgets\WidgetsStack;
use Dotclear\Plugin\widgets\WidgetsElement;
2021-09-07 12:33:18 +00:00
2023-10-15 18:49:39 +00:00
/**
* @brief cinecturlink2 widgets class.
* @ingroup cinecturlink2
*
* @author Jean-Christian Denis (author)
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2023-08-24 11:55:44 +00:00
class Widgets
2021-09-07 12:33:18 +00:00
{
2023-10-15 18:49:39 +00:00
public static function init(WidgetsStack $w): void
2021-09-07 13:21:38 +00:00
{
2023-08-24 11:55:44 +00:00
$categories_combo = array_merge(
Combo::categoriesCombo(),
[__('Uncategorized') => 'null']
);
2021-09-07 13:21:38 +00:00
2021-09-07 14:00:49 +00:00
$sortby_combo = [
2021-11-02 22:55:41 +00:00
__('Update date') => 'link_upddt',
__('My rating') => 'link_note',
__('Title') => 'link_title',
__('Random') => 'RANDOM',
2022-11-17 21:01:00 +00:00
__('Number of views') => 'COUNTER',
2021-09-07 14:00:49 +00:00
];
$order_combo = [
2021-11-02 22:55:41 +00:00
__('Ascending') => 'asc',
2022-11-17 21:01:00 +00:00
__('Descending') => 'desc',
2021-09-07 14:00:49 +00:00
];
$w
->create(
'cinecturlink2links',
__('My cinecturlink'),
2023-10-15 18:49:39 +00:00
self::parseLinks(...),
2021-09-07 14:00:49 +00:00
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
2021-09-07 14:00:49 +00:00
$w
->create(
'cinecturlink2cats',
__('List of categories of cinecturlink'),
2023-10-15 18:49:39 +00:00
self::parseCats(...),
2021-09-07 14:00:49 +00:00
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
}
2023-08-24 11:55:44 +00:00
public static function parseLinks(WidgetsElement $w): string
2021-09-07 13:21:38 +00:00
{
2023-08-24 11:55:44 +00:00
if (!My::settings()->avtive
2023-10-15 18:49:39 +00:00
|| !$w->checkHomeOnly(App::url()->type)
2021-09-07 13:21:38 +00:00
) {
2023-08-24 11:55:44 +00:00
return '';
2021-09-07 13:21:38 +00:00
}
2023-08-24 11:55:44 +00:00
$C2 = new Utils();
$params = [];
2021-09-07 13:21:38 +00:00
if ($w->category) {
if ($w->category == 'null') {
$params['sql'] = ' AND L.cat_id IS NULL ';
2021-11-02 22:55:41 +00:00
} elseif (is_numeric($w->category)) {
$params['cat_id'] = (int) $w->category;
2021-09-07 13:21:38 +00:00
}
}
2021-11-02 22:55:41 +00:00
$limit = abs((int) $w->limit);
2021-09-07 13:21:38 +00:00
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()) {
2023-08-24 11:55:44 +00:00
return '';
2021-09-07 13:21:38 +00:00
}
2021-11-02 22:55:41 +00:00
$ids = [];
while ($big_rs->fetch()) {
2021-09-07 13:21:38 +00:00
$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-11-02 22:55:41 +00:00
foreach ($ids as $id) {
2021-09-07 13:21:38 +00:00
$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()) {
2023-08-24 11:55:44 +00:00
return '';
2021-09-07 13:21:38 +00:00
}
2023-08-24 11:55:44 +00:00
$widthmax = (int) My::settings()->widthmax;
2021-11-02 22:55:41 +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-11-02 22:55:41 +00:00
while ($rs->fetch()) {
$url = $rs->link_url;
$img = $rs->link_img;
2023-08-24 11:55:44 +00:00
$title = Html::escapeHTML($rs->link_title);
$author = Html::escapeHTML($rs->link_author);
$cat = Html::escapeHTML($rs->cat_title);
2021-11-02 22:55:41 +00:00
$note = $w->shownote ? ' <em>(' . $rs->link_note . '/20)</em>' : '';
2023-08-24 11:55:44 +00:00
$desc = $w->showdesc ? '<br /><em>' . Html::escapeHTML($rs->link_desc) . '</em>' : '';
2021-11-02 22:55:41 +00:00
$lang = $rs->link_lang ? ' hreflang="' . $rs->link_lang . '"' : '';
$count = abs((int) $rs->link_count);
2021-09-07 13:21:38 +00:00
# --BEHAVIOR-- cinecturlink2WidgetLinks
2023-10-15 18:49:39 +00:00
$bhv = App::behavior()->callBehavior('cinecturlink2WidgetLinks', $rs->link_id);
2021-09-07 13:21:38 +00:00
2021-11-02 22:55:41 +00:00
$entries[] = '<p style="text-align:center;">' .
2021-09-07 14:00:49 +00:00
($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 {
2023-10-15 18:49:39 +00:00
$cur = App::con()->openCursor($C2->table);
2021-09-07 13:21:38 +00:00
$cur->link_count = ($count + 1);
2023-08-24 11:55:44 +00:00
$C2->updLink((int) $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
2022-11-17 21:01:00 +00:00
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);
2023-08-24 11:55:44 +00:00
if (My::settings()->triggeronrandom) {
2023-10-15 18:49:39 +00:00
App::blog()->triggerBlog();
2021-09-07 13:21:38 +00:00
}
}
2021-09-07 14:00:49 +00:00
return $w->renderDiv(
2023-08-24 11:55:44 +00:00
(bool) $w->content_only,
2021-11-02 22:55:41 +00:00
'cinecturlink2list ' . $w->class,
'',
2023-08-24 11:55:44 +00:00
($w->title ? $w->renderTitle(Html::escapeHTML($w->title)) : '') . implode(' ', $entries) .
2021-11-02 22:55:41 +00:00
(
2023-08-24 11:55:44 +00:00
$w->showpagelink && My::settings()->public_active ?
2023-10-15 18:49:39 +00:00
'<p><a href="' . App::blog()->url() . App::url()->getBase(My::id()) . '" title="' . __('view all links') . '">' . __('More links') . '</a></p>' : ''
2021-09-07 14:00:49 +00:00
)
);
2021-09-07 13:21:38 +00:00
}
2023-08-24 11:55:44 +00:00
public static function parseCats(WidgetsElement $w): string
2021-09-07 13:21:38 +00:00
{
2023-08-24 11:55:44 +00:00
if (!My::settings()->avtive
|| !My::settings()->public_active
2023-10-15 18:49:39 +00:00
|| !$w->checkHomeOnly(App::url()->type)
2021-09-07 13:21:38 +00:00
) {
2023-08-24 11:55:44 +00:00
return '';
2021-09-07 13:21:38 +00:00
}
2023-08-24 11:55:44 +00:00
$C2 = new Utils();
2021-09-07 14:00:49 +00:00
$rs = $C2->getCategories([]);
2021-09-07 13:21:38 +00:00
if ($rs->isEmpty()) {
2023-08-24 11:55:44 +00:00
return '';
2021-09-07 13:21:38 +00:00
}
2021-11-02 22:55:41 +00:00
$res = [];
$res[] = '<li><a href="' .
2023-10-15 18:49:39 +00:00
App::blog()->url() . App::url()->getBase(My::id()) .
2021-09-07 14:00:49 +00:00
'" title="' . __('view all links') . '">' . __('all links') .
2021-11-02 22:55:41 +00:00
'</a>' . ($w->shownumlink ? ' (' . ($C2->getLinks([], true)->f(0)) . ')' : '') .
2021-09-07 14:00:49 +00:00
'</li>';
2021-09-07 13:21:38 +00:00
2021-11-02 22:55:41 +00:00
while ($rs->fetch()) {
$res[] = '<li><a href="' .
2023-10-15 18:49:39 +00:00
App::blog()->url() . App::url()->getBase('cinecturlink2') . '/' .
2023-08-24 11:55:44 +00:00
My::settings()->public_caturl . '/' .
2021-09-07 14:00:49 +00:00
urlencode($rs->cat_title) .
2021-11-02 22:55:41 +00:00
'" title="' . __('view links of this category') . '">' .
2023-08-24 11:55:44 +00:00
Html::escapeHTML($rs->cat_title) .
2021-11-02 22:55:41 +00:00
'</a>' . ($w->shownumlink ? ' (' .
2021-09-07 14:00:49 +00:00
($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(
2023-08-24 11:55:44 +00:00
(bool) $w->content_only,
2021-11-02 22:55:41 +00:00
'cinecturlink2cat ' . $w->class,
'',
2023-08-24 11:55:44 +00:00
($w->title ? $w->renderTitle(Html::escapeHTML($w->title)) : '') .
2021-11-02 22:55:41 +00:00
'<ul>' . implode(' ', $res) . '</ul>'
2021-09-07 14:00:49 +00:00
);
2021-09-07 13:21:38 +00:00
}
2021-11-02 22:55:41 +00:00
}