mambax7 /
extgallery
This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include, or for example
via PHP's auto-loading mechanism.
| 1 | <?php |
||
| 2 | |||
| 3 | namespace XoopsModules\Extgallery; |
||
| 4 | |||
| 5 | /** |
||
| 6 | * ExtGallery Class Manager |
||
| 7 | * |
||
| 8 | * You may not change or alter any portion of this comment or credits |
||
| 9 | * of supporting developers from this source code or any supporting source code |
||
| 10 | * which is considered copyrighted (c) material of the original comment or credit authors. |
||
| 11 | * This program is distributed in the hope that it will be useful, |
||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
||
| 14 | * |
||
| 15 | * @copyright {@link https://xoops.org/ XOOPS Project} |
||
| 16 | * @license GNU GPL 2 (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html) |
||
| 17 | * @author Zoullou (http://www.zoullou.net) |
||
| 18 | * @package ExtGallery |
||
| 19 | */ |
||
| 20 | |||
| 21 | use Criteria; |
||
| 22 | use CriteriaCompo; |
||
| 23 | use XoopsDatabase; |
||
| 24 | use XoopsModules\Extgallery; |
||
| 25 | use XoopsObject; |
||
| 26 | |||
| 27 | |||
| 28 | |||
| 29 | |||
| 30 | //require_once __DIR__ . '/photoHandler.php'; |
||
| 31 | //require_once __DIR__ . '/publicPerm.php'; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Class Extgallery\PublicPhotoHandler |
||
| 35 | */ |
||
| 36 | class PublicPhotoHandler extends Extgallery\PhotoHandler |
||
| 37 | { |
||
| 38 | /** |
||
| 39 | * Extgallery\PublicPhotoHandler constructor. |
||
| 40 | * @param \XoopsDatabase|null $db |
||
| 41 | */ |
||
| 42 | public function __construct(XoopsDatabase $db = null) |
||
| 43 | { |
||
| 44 | parent::__construct($db, 'public'); |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @param $photo |
||
| 49 | */ |
||
| 50 | public function deleteFile(XoopsObject $photo = null) |
||
| 51 | { |
||
| 52 | if (\is_file(XOOPS_ROOT_PATH . '/uploads/extgallery/public-photo/thumb/thumb_' . $photo->getVar('photo_name'))) { |
||
|
0 ignored issues
–
show
|
|||
| 53 | \unlink(XOOPS_ROOT_PATH . '/uploads/extgallery/public-photo/thumb/thumb_' . $photo->getVar('photo_name')); |
||
| 54 | } |
||
| 55 | |||
| 56 | if (\is_file(XOOPS_ROOT_PATH . '/uploads/extgallery/public-photo/medium/' . $photo->getVar('photo_name'))) { |
||
| 57 | \unlink(XOOPS_ROOT_PATH . '/uploads/extgallery/public-photo/medium/' . $photo->getVar('photo_name')); |
||
| 58 | } |
||
| 59 | |||
| 60 | if (\is_file(XOOPS_ROOT_PATH . '/uploads/extgallery/public-photo/large/large_' . $photo->getVar('photo_name'))) { |
||
| 61 | \unlink(XOOPS_ROOT_PATH . '/uploads/extgallery/public-photo/large/large_' . $photo->getVar('photo_name')); |
||
| 62 | } |
||
| 63 | |||
| 64 | if ('' != $photo->getVar('photo_orig_name') |
||
| 65 | && \is_file(XOOPS_ROOT_PATH . '/uploads/extgallery/public-photo/original/' . $photo->getVar('photo_orig_name'))) { |
||
| 66 | \unlink(XOOPS_ROOT_PATH . '/uploads/extgallery/public-photo/original/' . $photo->getVar('photo_orig_name')); |
||
| 67 | } |
||
| 68 | } |
||
| 69 | |||
| 70 | /** |
||
| 71 | * @return array|int|string |
||
| 72 | */ |
||
| 73 | public function getAllSize() |
||
| 74 | { |
||
| 75 | return $this->getSum(null, 'photo_size'); |
||
| 76 | } |
||
| 77 | |||
| 78 | /** |
||
| 79 | * @return string |
||
| 80 | */ |
||
| 81 | public function getUploadPhotoPath() |
||
| 82 | { |
||
| 83 | return XOOPS_ROOT_PATH . '/uploads/extgallery/public-photo/'; |
||
| 84 | } |
||
| 85 | |||
| 86 | /** |
||
| 87 | * @param $userId |
||
| 88 | * @param $start |
||
| 89 | * @param $sortby |
||
| 90 | * @param $orderby |
||
| 91 | * |
||
| 92 | * @return array |
||
| 93 | */ |
||
| 94 | public function getUserAlbumPhotoPage($userId, $start, $sortby, $orderby) |
||
| 95 | { |
||
| 96 | $catHandler = Extgallery\Helper::getInstance()->getHandler('PublicCategory'); |
||
| 97 | |||
| 98 | $criteria = new CriteriaCompo(); |
||
| 99 | $criteria->add($catHandler->getCatRestrictCriteria()); |
||
| 100 | $criteria->add(new Criteria('photo_approved', 1)); |
||
| 101 | $criteria->add(new Criteria('uid', $userId)); |
||
| 102 | $criteria->setSort($sortby); |
||
| 103 | $criteria->setOrder($orderby); |
||
| 104 | $criteria->setStart($start); |
||
| 105 | $criteria->setLimit($GLOBALS['xoopsModuleConfig']['nb_column'] * $GLOBALS['xoopsModuleConfig']['nb_line']); |
||
| 106 | |||
| 107 | return $this->getObjects($criteria); |
||
| 108 | } |
||
| 109 | |||
| 110 | /** |
||
| 111 | * @param $userId |
||
| 112 | * @param $photoDate |
||
| 113 | * |
||
| 114 | * @return array |
||
| 115 | */ |
||
| 116 | public function getUserAlbumPrevPhoto($userId, $photoDate) |
||
| 117 | { |
||
| 118 | $catHandler = Extgallery\Helper::getInstance()->getHandler('PublicCategory'); |
||
| 119 | |||
| 120 | $criteria = new CriteriaCompo(); |
||
| 121 | $criteria->add($catHandler->getCatRestrictCriteria()); |
||
| 122 | $criteria->add(new Criteria('photo_approved', 1)); |
||
| 123 | $criteria->add(new Criteria('uid', $userId)); |
||
| 124 | $criteria->add(new Criteria('photo_date', $photoDate, '>')); |
||
| 125 | $criteria->setSort('photo_date'); |
||
| 126 | $criteria->setOrder('ASC'); |
||
| 127 | $criteria->setLimit(1); |
||
| 128 | |||
| 129 | return $this->getObjects($criteria); |
||
| 130 | } |
||
| 131 | |||
| 132 | /** |
||
| 133 | * @param $userId |
||
| 134 | * @param $photoDate |
||
| 135 | * |
||
| 136 | * @return array |
||
| 137 | */ |
||
| 138 | public function getUserAlbumNextPhoto($userId, $photoDate) |
||
| 139 | { |
||
| 140 | $catHandler = Extgallery\Helper::getInstance()->getHandler('PublicCategory'); |
||
| 141 | |||
| 142 | $criteria = new CriteriaCompo(); |
||
| 143 | $criteria->add($catHandler->getCatRestrictCriteria()); |
||
| 144 | $criteria->add(new Criteria('photo_approved', 1)); |
||
| 145 | $criteria->add(new Criteria('uid', $userId)); |
||
| 146 | $criteria->add(new Criteria('photo_date', $photoDate, '<')); |
||
| 147 | $criteria->setSort('photo_date'); |
||
| 148 | $criteria->setOrder('DESC'); |
||
| 149 | $criteria->setLimit(1); |
||
| 150 | |||
| 151 | return $this->getObjects($criteria); |
||
| 152 | } |
||
| 153 | |||
| 154 | /** |
||
| 155 | * @param $userId |
||
| 156 | * @param $photoDate |
||
| 157 | * |
||
| 158 | * @return int |
||
| 159 | */ |
||
| 160 | public function getUserAlbumCurrentPhotoPlace($userId, $photoDate) |
||
| 161 | { |
||
| 162 | $catHandler = Extgallery\Helper::getInstance()->getHandler('PublicCategory'); |
||
| 163 | |||
| 164 | $criteria = new CriteriaCompo(); |
||
| 165 | $criteria->add($catHandler->getCatRestrictCriteria()); |
||
| 166 | $criteria->add(new Criteria('photo_approved', 1)); |
||
| 167 | $criteria->add(new Criteria('uid', $userId)); |
||
| 168 | $criteria->add(new Criteria('photo_date', $photoDate, '>=')); |
||
| 169 | $criteria->setSort('photo_date'); |
||
| 170 | $criteria->setOrder('ASC'); |
||
| 171 | |||
| 172 | return $this->getCount($criteria); |
||
| 173 | } |
||
| 174 | |||
| 175 | /** |
||
| 176 | * @param $userId |
||
| 177 | * |
||
| 178 | * @return int |
||
| 179 | */ |
||
| 180 | public function getUserAlbumCount($userId) |
||
| 181 | { |
||
| 182 | $catHandler = Extgallery\Helper::getInstance()->getHandler('PublicCategory'); |
||
| 183 | |||
| 184 | $criteria = new CriteriaCompo(); |
||
| 185 | $criteria->add($catHandler->getCatRestrictCriteria()); |
||
| 186 | $criteria->add(new Criteria('photo_approved', 1)); |
||
| 187 | $criteria->add(new Criteria('uid', $userId)); |
||
| 188 | |||
| 189 | return $this->getCount($criteria); |
||
| 190 | } |
||
| 191 | |||
| 192 | /** |
||
| 193 | * @param $userId |
||
| 194 | * |
||
| 195 | * @return array |
||
| 196 | */ |
||
| 197 | public function getUserPhotoAlbumId($userId) |
||
| 198 | { |
||
| 199 | $ret = []; |
||
| 200 | $criteria = new CriteriaCompo(); |
||
| 201 | $criteria->add(new Criteria('uid', $userId)); |
||
| 202 | $criteria->add(new Criteria('photo_approved', 1)); |
||
| 203 | |||
| 204 | $sql = 'SELECT photo_id FROM ' . $this->db->prefix('extgallery_publicphoto') . ' ' . $criteria->renderWhere() . ' ORDER BY photo_date, photo_id DESC;'; |
||
| 205 | |||
| 206 | $result = $this->db->query($sql); |
||
| 207 | if ($result instanceof \mysqli_result) { |
||
| 208 | while (false !== ($myrow = $this->db->fetchArray($result))) { |
||
| 209 | $ret[] = $myrow['photo_id']; |
||
| 210 | } |
||
| 211 | } |
||
| 212 | return $ret; |
||
| 213 | } |
||
| 214 | } |
||
| 215 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.