class/Plugins/Myalbum.php
<?php
declare(strict_types=1);
namespace XoopsModules\Rssfit\Plugins;
/*
* You may not change or alter any portion of this comment or credits
* of supporting developers from this source code or any supporting source code
* which is considered copyrighted (c) material of the original comment or credit authors.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* @copyright XOOPS Project (https://xoops.org)
* @license GNU GPL 2 or later (https://www.gnu.org/licenses/gpl-2.0.html)
* @package RSSFit - Extendable XML news feed generator
* @author NS Tai (aka tuff) <http://www.brandycoke.com>
* @author XOOPS Development Team
*/
/*
* This file is a dummy for making a RSSFit plug-in, follow the following steps
* if you really want to do so.
* Step 0: Stop here if you are not sure what you are doing, it's no fun at all
* Step 1: Clone this file and rename as something like rssfit.[mod_dir].php
* Step 2: Replace the text "RssfitMyalbum" with "Rssfit[mod_dir]" at line 59 and
* line 65, i.e. "RssfitNews" for the module "News"
* Step 3: Modify the word in line 60 from 'Myalbum' to [mod_dir]
* Step 4: Modify the function "grabEntries" to satisfy your needs
* Step 5: Move your new plug-in file to the RSSFit plugins folder,
* i.e. your-xoops-root/modules/rssfit/plugins
* Step 6: Install your plug-in by pointing your browser to
* your-xoops-url/modules/rssfit/admin/?do=plugins
* Step 7: Finally, tell us about yourself and this file by modifying the
* "About this RSSFit plug-in" section which is located... somewhere.
*
* [mod_dir]: Name of the driectory of your module, i.e. 'news'
*
* About this RSSFit plug-in
* Author: John Doe <http://www.your.site>
* Requirements (or Tested with):
* Module: Blah <http://www.where.to.find.it>
* Version: 1.0
* RSSFit verision: 1.2 / 1.5
* XOOPS version: 2.0.13.2 / 2.2.3
*/
use XoopsModules\Myalbum\Helper as PluginHelper;
use XoopsModules\Rssfit\{
AbstractPlugin
};
if (!\defined('RSSFIT_ROOT_PATH')) {
exit();
}
/**
* Class Myalbum
* @package XoopsModules\Rssfit\Plugins
*/
final class Myalbum extends AbstractPlugin
{
public function __construct() {
if (\class_exists(PluginHelper::class)) {
$this->helper = PluginHelper::getInstance();
$this->dirname = $this->helper->dirname();
}
}
public function myGetUnameFromId(int $uid): string
{
static $thisUser = false;
static $lastUid = false;
static $lastName = '';
if ($lastUid === $uid) {
return $lastName;
}
if (!\is_object($thisUser)) {
/** @var \XoopsMemberHandler $memberHandler */
$memberHandler = \xoops_getHandler('member');
$thisUser = $memberHandler->getUser($uid);
}
$name = \htmlspecialchars($thisUser->getVar('name'), \ENT_QUOTES | \ENT_HTML5);
if ('' === $name) {
$name = \htmlspecialchars($thisUser->getVar('uname'), \ENT_QUOTES | \ENT_HTML5);
}
$lastUid = $uid;
$lastName = $name;
return $name;
}
public function grabEntries(\XoopsMySQLDatabase $xoopsDB): ?array
{
$myts = \MyTextSanitizer::getInstance();
$ret = null;
$i = 0;
// For myalbum-p with thumbs enabled
$sql = 'SELECT p.lid, p.title, p.ext, p.date, t.description, c.cid, c.title as cat, p.submitter';
$sql .= ' FROM ' . $xoopsDB->prefix('myalbum_photos') . ' p, ';
$sql .= $xoopsDB->prefix('myalbum_text') . ' t, ';
$sql .= $xoopsDB->prefix('myalbum_cat') . ' c ';
$sql .= 'WHERE p.status > 0 AND p.cid = c.cid AND p.lid = t.lid ';
$sql .= 'ORDER BY date DESC';
$result = $xoopsDB->query($sql, $this->grab, 0);
if ($result instanceof \mysqli_result) {
$ret = [];
while (false !== ($row = $xoopsDB->fetchArray($result))) {
$link = XOOPS_URL . '/modules/' . $this->dirname . '/photo.php?lid=' . $row['lid'];
$thumb = XOOPS_URL . '/uploads/thumbs/' . $row['lid'] . '.' . $row['ext'];
$name = $this->myGetUnameFromId($row['submitter']);
$title = $myts->displayTarea($row['title']);
$cat = $myts->displayTarea($row['cat']);
$catlink = XOOPS_URL . '/modules/' . $this->dirname . '/viewcat.php?cid=' . $row['cid'];
/*
* Required elements of an RSS item
*/
// 1. Title of an item
$ret[$i]['title'] = $this->modname . ': ' . $title;
// 2. URL of an item
$ret[$i]['link'] = $link;
// 3. Item modification date, must be in Unix time format
$ret[$i]['timestamp'] = $row['date'];
// 4. The item synopsis, or description, whatever
$desc = '<p><a href="' . $link . '"><img src="' . $thumb . '" align="left" alt="' . $title . '" border="0"></a> ';
$desc .= 'By ' . $name . ' in <a href="' . $catlink . '">' . $cat . '</a><br>';
$desc .= $myts->displayTarea($row['description']) . '</p><br clear="all">';
$ret[$i]['description'] = $desc;
/*
* Optional elements of an RSS item
*/
// 5. The item synopsis, or description, whatever
$ret[$i]['guid'] = $link;
// 6. A string + domain that identifies a categorization taxonomy
$ret[$i]['category'] = $cat;
$ret[$i]['domain'] = $catlink;
$i++;
}
}
return $ret;
}
}