Total Complexity | 132 |
Total Lines | 855 |
Duplicated Lines | 0 % |
Changes | 11 | ||
Bugs | 0 | Features | 0 |
Complex classes like ItemHandler often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use ItemHandler, and based on these observations, apply Extract Interface, too.
1 | <?php declare(strict_types=1); |
||
34 | class ItemHandler extends \XoopsPersistableObjectHandler |
||
35 | { |
||
36 | private const TABLE = 'publisher_items'; |
||
37 | private const ENTITY = Item::class; |
||
38 | private const ENTITYNAME = 'Item'; |
||
39 | private const KEYNAME = 'itemid'; |
||
40 | private const IDENTIFIER = 'title'; |
||
41 | /** |
||
42 | * @var Helper |
||
43 | */ |
||
44 | public $helper; |
||
45 | public $publisherIsAdmin; |
||
46 | protected $resultCatCounts = []; |
||
47 | |||
48 | public function __construct(?\XoopsDatabase $db = null, ?Helper $helper = null) |
||
49 | { |
||
50 | $this->helper = $helper ?? Helper::getInstance(); |
||
51 | $this->db = $db; |
||
52 | $this->publisherIsAdmin = $this->helper->isUserAdmin(); |
||
53 | parent::__construct($db, static::TABLE, static::ENTITY, static::KEYNAME, static::IDENTIFIER); |
||
54 | } |
||
55 | |||
56 | /** |
||
57 | * @param bool $isNew |
||
58 | * |
||
59 | * @return \XoopsObject |
||
60 | */ |
||
61 | public function create($isNew = true) |
||
62 | { |
||
63 | /** @var Item $obj */ |
||
64 | $obj = parent::create($isNew); |
||
65 | if ($isNew) { |
||
66 | $obj->setDefaultPermissions(); |
||
67 | } |
||
68 | $obj->helper = $this->helper; |
||
69 | |||
70 | return $obj; |
||
71 | } |
||
72 | |||
73 | /** |
||
74 | * retrieve an item |
||
75 | * |
||
76 | * @param null|int $id itemid of the user |
||
77 | * |
||
78 | * @param array|null $fields |
||
79 | * @return mixed reference to the <a href='psi_element://Item'>Item</a> object, FALSE if failed |
||
80 | */ |
||
81 | public function get($id = null, $fields = null) |
||
89 | } |
||
90 | |||
91 | /** |
||
92 | * insert a new item in the database |
||
93 | * |
||
94 | * @param \XoopsObject $item reference to the {@link Item} |
||
95 | * object |
||
96 | * @param bool $force |
||
97 | * |
||
98 | * @return bool FALSE if failed, TRUE if already present and unchanged or successful |
||
99 | */ |
||
100 | public function insert(\XoopsObject $item, $force = false) //insert(&$item, $force = false) |
||
101 | { |
||
102 | if (!$item->meta_keywords() || !$item->meta_description() || !$item->short_url()) { |
||
103 | $publisherMetagen = new Metagen($item->getTitle(), $item->getVar('meta_keywords'), $item->getVar('summary')); |
||
104 | // Auto create meta tags if empty |
||
105 | if (!$item->meta_keywords()) { |
||
106 | $item->setVar('meta_keywords', $publisherMetagen->keywords); |
||
107 | } |
||
108 | if (!$item->meta_description()) { |
||
109 | $item->setVar('meta_description', $publisherMetagen->description); |
||
110 | } |
||
111 | // Auto create short_url if empty |
||
112 | if (!$item->short_url()) { |
||
113 | $item->setVar('short_url', \mb_substr(Metagen::generateSeoTitle($item->getVar('title', 'n'), false), 0, 254)); |
||
114 | } |
||
115 | } |
||
116 | if (!parent::insert($item, $force)) { |
||
117 | return false; |
||
118 | } |
||
119 | if (\class_exists(\XoopsModules\Tag\TagHandler::class) && \xoops_isActiveModule('tag')) { |
||
120 | // Storing tags information |
||
121 | /** @var \XoopsModules\Tag\TagHandler $tagHandler */ |
||
122 | $tagHandler = \XoopsModules\Tag\Helper::getInstance() |
||
123 | ->getHandler('Tag'); |
||
124 | $tagHandler->updateByItem($item->getVar('item_tag'), $item->getVar('itemid'), $this->helper->getDirname(), 0); |
||
125 | } |
||
126 | |||
127 | return true; |
||
128 | } |
||
129 | |||
130 | /** |
||
131 | * delete an item from the database |
||
132 | * |
||
133 | * @param \XoopsObject $item reference to the ITEM to delete |
||
134 | * @param bool $force |
||
135 | * |
||
136 | * @return bool FALSE if failed. |
||
137 | */ |
||
138 | public function delete(\XoopsObject $item, $force = false) |
||
139 | { |
||
140 | // Deleting the files |
||
141 | if (!$this->helper->getHandler('File') |
||
142 | ->deleteItemFiles($item)) { |
||
143 | $item->setErrors(\_AM_PUBLISHER_FILE_DELETE_ERROR); |
||
144 | } |
||
145 | if (!parent::delete($item, $force)) { |
||
146 | $item->setErrors(\_AM_PUBLISHER_ITEM_DELETE_ERROR); |
||
147 | |||
148 | return false; |
||
149 | } |
||
150 | // Removing tags information |
||
151 | if (\class_exists(\XoopsModules\Tag\TagHandler::class) && \xoops_isActiveModule('tag')) { |
||
152 | /** @var \XoopsModules\Tag\TagHandler $tagHandler */ |
||
153 | $tagHandler = \XoopsModules\Tag\Helper::getInstance() |
||
154 | ->getHandler('Tag'); |
||
155 | $tagHandler->updateByItem('', $item->getVar('itemid'), $this->helper->getDirname(), 0); |
||
156 | } |
||
157 | |||
158 | return true; |
||
159 | } |
||
160 | |||
161 | /** |
||
162 | * retrieve items from the database |
||
163 | * |
||
164 | * @param \CriteriaElement|null $criteria {@link CriteriaElement} |
||
165 | * conditions to be met |
||
166 | * @param bool|string $idKey what shall we use as array key ? none, itemid, categoryid |
||
167 | * @param bool $as_object |
||
168 | * @param string|null $notNullFields |
||
169 | * @return array array of <a href='psi_element://Item'>Item</a> objects |
||
170 | */ |
||
171 | public function &getObjects(?\CriteriaElement $criteria = null, $idKey = 'none', $as_object = true, $notNullFields = null) |
||
172 | { |
||
173 | $limit = $start = 0; |
||
174 | $ret = []; |
||
175 | $notNullFields = (null !== $notNullFields) ?: ''; |
||
176 | |||
177 | $sql = 'SELECT * FROM ' . $this->db->prefix($this->helper->getDirname() . '_items'); |
||
178 | if (null !== $criteria && ($criteria instanceof \Criteria || $criteria instanceof \CriteriaCompo)) { |
||
179 | $whereClause = $criteria->renderWhere(); |
||
180 | if ('WHERE ()' !== $whereClause) { |
||
181 | $sql .= ' ' . $criteria->renderWhere(); |
||
182 | if (!empty($notNullFields)) { |
||
183 | $sql .= $this->notNullFieldClause($notNullFields, true); |
||
184 | } |
||
185 | } elseif (!empty($notNullFields)) { |
||
186 | $sql .= ' WHERE ' . $this->notNullFieldClause($notNullFields); |
||
187 | } |
||
188 | if ('' != $criteria->getSort()) { |
||
189 | $sql .= ' ORDER BY ' . $criteria->getSort() . ' ' . $criteria->getOrder(); |
||
190 | } |
||
191 | $limit = $criteria->getLimit(); |
||
192 | $start = $criteria->getStart(); |
||
193 | } elseif (!empty($notNullFields)) { |
||
194 | $sql .= $sql .= ' WHERE ' . $this->notNullFieldClause($notNullFields); |
||
195 | } |
||
196 | $result = $this->db->query($sql, $limit, $start); |
||
197 | if (!$result || 0 === $GLOBALS['xoopsDB']->getRowsNum($result)) { |
||
198 | return $ret; |
||
199 | } |
||
200 | $theObjects = []; |
||
201 | while (false !== ($myrow = $this->db->fetchArray($result))) { |
||
202 | // $item = new Item(); |
||
203 | $item = $this->create(); |
||
204 | $item->assignVars($myrow); |
||
205 | $theObjects[$myrow['itemid']] = $item; |
||
206 | unset($item); |
||
207 | } |
||
208 | foreach ($theObjects as $theObject) { |
||
209 | if ('none' === $idKey) { |
||
210 | $ret[] = $theObject; |
||
211 | } elseif ('itemid' === $idKey) { |
||
212 | $ret[$theObject->itemid()] = $theObject; |
||
213 | } else { |
||
214 | $ret[$theObject->getVar($idKey)][$theObject->itemid()] = $theObject; |
||
215 | } |
||
216 | unset($theObject); |
||
217 | } |
||
218 | |||
219 | return $ret; |
||
220 | } |
||
221 | |||
222 | /** |
||
223 | * count items matching a condition |
||
224 | * |
||
225 | * @param \CriteriaElement|null $criteria Criteria to match |
||
226 | * @param string|null $notNullFields |
||
227 | * |
||
228 | * @return int count of items |
||
229 | */ |
||
230 | public function getCount(?\CriteriaElement $criteria = null, $notNullFields = null) |
||
231 | { |
||
232 | // $notNullFields = $notNullFields ?? null; |
||
233 | $sql = 'SELECT COUNT(*) FROM ' . $this->db->prefix($this->helper->getDirname() . '_items'); |
||
234 | if (null !== $criteria && ($criteria instanceof \Criteria || $criteria instanceof \CriteriaCompo)) { |
||
235 | $whereClause = $criteria->renderWhere(); |
||
236 | if ('WHERE ()' !== $whereClause) { |
||
237 | $sql .= ' ' . $criteria->renderWhere(); |
||
238 | if (!empty($notNullFields)) { |
||
239 | $sql .= $this->notNullFieldClause($notNullFields, true); |
||
240 | } |
||
241 | } elseif (!empty($notNullFields)) { |
||
242 | $sql .= ' WHERE ' . $this->notNullFieldClause($notNullFields); |
||
243 | } |
||
244 | } elseif (!empty($notNullFields)) { |
||
245 | $sql .= ' WHERE ' . $this->notNullFieldClause($notNullFields); |
||
246 | } |
||
247 | $result = $this->db->query($sql); |
||
248 | if (!$result) { |
||
249 | return 0; |
||
250 | } |
||
251 | [$count] = $this->db->fetchRow($result); |
||
252 | |||
253 | return $count; |
||
254 | } |
||
255 | |||
256 | /** |
||
257 | * @param int $categoryid |
||
258 | * @param string|array $status |
||
259 | * @param string|null $notNullFields |
||
260 | * @param null|\CriteriaCompo $criteriaPermissions |
||
261 | * @return \CriteriaCompo |
||
262 | */ |
||
263 | private function getItemsCriteria($categoryid = -1, $status = '', $notNullFields = null, $criteriaPermissions = null) |
||
264 | { |
||
265 | // $notNullFields = (null !== $notNullFields) ?: ''; |
||
266 | // global $publisherIsAdmin; |
||
267 | // $ret = 0; |
||
268 | // if (!$publisherIsAdmin) { |
||
269 | // $criteriaPermissions = new \CriteriaCompo(); |
||
270 | // // Categories for which user has access |
||
271 | // $categoriesGranted = $this->helper->getHandler('Permission')->getGrantedItems('category_read'); |
||
272 | // if (!empty($categoriesGranted)) { |
||
273 | // $grantedCategories = new \Criteria('categoryid', "(" . implode(',', $categoriesGranted) . ")", 'IN'); |
||
274 | // $criteriaPermissions->add($grantedCategories, 'AND'); |
||
275 | // } else { |
||
276 | // return $ret; |
||
277 | // } |
||
278 | // } |
||
279 | |||
280 | $criteriaCategory = null; |
||
281 | if (isset($categoryid) && -1 !== $categoryid) { |
||
282 | $criteriaCategory = new \Criteria('categoryid', $categoryid); |
||
283 | } |
||
284 | |||
285 | $criteriaStatus = new \CriteriaCompo(); |
||
286 | if (!empty($status) && \is_array($status)) { |
||
287 | foreach ($status as $v) { |
||
288 | $criteriaStatus->add(new \Criteria('status', $v), 'OR'); |
||
289 | } |
||
290 | } elseif (!empty($status) && -1 !== $status) { |
||
291 | $criteriaStatus->add(new \Criteria('status', $status), 'OR'); |
||
292 | } |
||
293 | |||
294 | $criteria = new \CriteriaCompo(); |
||
295 | if (null !== $criteriaCategory) { |
||
296 | $criteria->add($criteriaCategory); |
||
297 | } |
||
298 | |||
299 | if (null !== $criteriaPermissions) { |
||
300 | $criteria->add($criteriaPermissions); |
||
301 | } |
||
302 | |||
303 | if (null !== $criteriaStatus) { |
||
304 | $criteria->add($criteriaStatus); |
||
305 | } |
||
306 | |||
307 | return $criteria; |
||
308 | } |
||
309 | |||
310 | /** |
||
311 | * @param $categoryid |
||
312 | * @param string $status |
||
313 | * @param string|null $notNullFields |
||
314 | * |
||
315 | * @return int |
||
316 | */ |
||
317 | public function getItemsCount($categoryid = -1, $status = '', $notNullFields = null) |
||
318 | { |
||
319 | // $notNullFields = $notNullFields ?? null; |
||
320 | $criteriaPermissions = null; |
||
321 | if (!$this->publisherIsAdmin) { |
||
322 | $criteriaPermissions = new \CriteriaCompo(); |
||
323 | // Categories for which user has access |
||
324 | $categoriesGranted = $this->helper->getHandler('Permission') |
||
325 | ->getGrantedItems('category_read'); |
||
326 | if (!empty($categoriesGranted)) { |
||
327 | $grantedCategories = new \Criteria('categoryid', '(' . \implode(',', $categoriesGranted) . ')', 'IN'); |
||
328 | $criteriaPermissions->add($grantedCategories, 'AND'); |
||
329 | } else { |
||
330 | return 0; |
||
331 | } |
||
332 | } |
||
333 | // $ret = []; |
||
334 | $criteria = $this->getItemsCriteria($categoryid, $status, $notNullFields, $criteriaPermissions); |
||
335 | |||
336 | $ret = $this->getCount($criteria, $notNullFields); |
||
337 | |||
338 | return $ret; |
||
339 | } |
||
340 | |||
341 | /** |
||
342 | * @param int $limit |
||
343 | * @param int $start |
||
344 | * @param int $categoryid |
||
345 | * @param string $sort |
||
346 | * @param string $order |
||
347 | * @param string|null $notNullFields |
||
348 | * @param bool $asObject |
||
349 | * @param string $idKey |
||
350 | * @param bool $excludeExpired |
||
351 | * |
||
352 | * @return array |
||
353 | */ |
||
354 | public function getAllPublished($limit = 0, $start = 0, $categoryid = -1, $sort = 'datesub', $order = 'DESC', $notNullFields = null, $asObject = true, $idKey = 'none', $excludeExpired = true) |
||
355 | { |
||
356 | $notNullFields = (null !== $notNullFields) ?: ''; |
||
357 | $otherCriteria = new \CriteriaCompo(); |
||
358 | if (!$this->publisherIsAdmin) { |
||
359 | $criteriaDateSub = new \Criteria('datesub', \time(), '<='); |
||
360 | $otherCriteria->add($criteriaDateSub); |
||
361 | } |
||
362 | if ($excludeExpired) { |
||
363 | // by default expired items are excluded from list of published items |
||
364 | $criteriaExpire = new \CriteriaCompo(); |
||
365 | $criteriaExpire->add(new \Criteria('dateexpire', '0'), 'OR'); |
||
366 | $criteriaExpire->add(new \Criteria('dateexpire', \time(), '>='), 'OR'); |
||
367 | $otherCriteria->add($criteriaExpire); |
||
368 | } |
||
369 | |||
370 | return $this->getItems($limit, $start, [Constants::PUBLISHER_STATUS_PUBLISHED], $categoryid, $sort, $order, $notNullFields, $asObject, $otherCriteria, $idKey); |
||
371 | } |
||
372 | |||
373 | /** |
||
374 | * @param int $limit |
||
375 | * @param int $start |
||
376 | * @param int $categoryid |
||
377 | * @param string $sort |
||
378 | * @param string $order |
||
379 | * @param string|null $notNullFields |
||
380 | * @param bool $asObject |
||
381 | * @param string $idKey |
||
382 | * |
||
383 | * @return array |
||
384 | */ |
||
385 | public function getAllExpired($limit = 0, $start = 0, $categoryid = -1, $sort = 'datesub', $order = 'DESC', $notNullFields = null, $asObject = true, $idKey = 'none') |
||
386 | { |
||
387 | $notNullFields = (null !== $notNullFields) ?: ''; |
||
388 | $otherCriteria = new \CriteriaCompo(); |
||
389 | $otherCriteria->add(new \Criteria('dateexpire', \time(), '<=')); |
||
390 | $otherCriteria->add(new \Criteria('dateexpire', 0, '>')); |
||
391 | |||
392 | return $this->getItems($limit, $start, -1, $categoryid, $sort, $order, $notNullFields, $asObject, $otherCriteria, $idKey); |
||
393 | } |
||
394 | |||
395 | /** |
||
396 | * @param Item $obj |
||
397 | * |
||
398 | * @return bool |
||
399 | */ |
||
400 | public function getPreviousPublished($obj) |
||
401 | { |
||
402 | $ret = false; |
||
403 | $otherCriteria = new \CriteriaCompo(); |
||
404 | $otherCriteria->add(new \Criteria('datesub', $obj->getVar('datesub'), '<')); |
||
405 | $objs = $this->getItems(1, 0, [Constants::PUBLISHER_STATUS_PUBLISHED], $obj->getVar('categoryid'), 'datesub', 'DESC', '', true, $otherCriteria, 'none'); |
||
406 | if (\count($objs) > 0) { |
||
407 | $ret = $objs[0]; |
||
408 | } |
||
409 | |||
410 | return $ret; |
||
411 | } |
||
412 | |||
413 | /** |
||
414 | * @param Item $obj |
||
415 | * |
||
416 | * @return bool |
||
417 | */ |
||
418 | public function getNextPublished($obj) |
||
419 | { |
||
420 | $ret = false; |
||
421 | $otherCriteria = new \CriteriaCompo(); |
||
422 | $otherCriteria->add(new \Criteria('datesub', $obj->getVar('datesub'), '>')); |
||
423 | $otherCriteria->add(new \Criteria('datesub', \time(), '<=')); |
||
424 | $objs = $this->getItems(1, 0, [Constants::PUBLISHER_STATUS_PUBLISHED], $obj->getVar('categoryid'), 'datesub', 'ASC', '', true, $otherCriteria, 'none'); |
||
425 | if (\count($objs) > 0) { |
||
426 | $ret = $objs[0]; |
||
427 | } |
||
428 | |||
429 | return $ret; |
||
430 | } |
||
431 | |||
432 | /** |
||
433 | * @param int $limit |
||
434 | * @param int $start |
||
435 | * @param int $categoryid |
||
436 | * @param string $sort |
||
437 | * @param string $order |
||
438 | * @param string|null $notNullFields |
||
439 | * @param bool $asObject |
||
440 | * @param string $idKey |
||
441 | * |
||
442 | * @return array |
||
443 | */ |
||
444 | public function getAllSubmitted($limit = 0, $start = 0, $categoryid = -1, $sort = 'datesub', $order = 'DESC', $notNullFields = null, $asObject = true, $idKey = 'none') |
||
445 | { |
||
446 | $notNullFields = (null !== $notNullFields) ?: ''; |
||
447 | |||
448 | return $this->getItems($limit, $start, [Constants::PUBLISHER_STATUS_SUBMITTED], $categoryid, $sort, $order, $notNullFields, $asObject, null, $idKey); |
||
449 | } |
||
450 | |||
451 | /** |
||
452 | * @param int $limit |
||
453 | * @param int $start |
||
454 | * @param int $categoryid |
||
455 | * @param string $sort |
||
456 | * @param string $order |
||
457 | * @param string $notNullFields |
||
458 | * @param bool $asObject |
||
459 | * @param string $idKey |
||
460 | * |
||
461 | * @return array |
||
462 | */ |
||
463 | public function getAllOffline($limit = 0, $start = 0, $categoryid = -1, $sort = 'datesub', $order = 'DESC', $notNullFields = '', $asObject = true, $idKey = 'none') |
||
464 | { |
||
465 | return $this->getItems($limit, $start, [Constants::PUBLISHER_STATUS_OFFLINE], $categoryid, $sort, $order, $notNullFields, $asObject, null, $idKey); |
||
466 | } |
||
467 | |||
468 | /** |
||
469 | * @param int $limit |
||
470 | * @param int $start |
||
471 | * @param int $categoryid |
||
472 | * @param string $sort |
||
473 | * @param string $order |
||
474 | * @param string $notNullFields |
||
475 | * @param bool $asObject |
||
476 | * @param string $idKey |
||
477 | * |
||
478 | * @return array |
||
479 | */ |
||
480 | public function getAllRejected($limit = 0, $start = 0, $categoryid = -1, $sort = 'datesub', $order = 'DESC', $notNullFields = '', $asObject = true, $idKey = 'none') |
||
483 | } |
||
484 | |||
485 | /** |
||
486 | * @param int $limit |
||
487 | * @param int $start |
||
488 | * @param array|string $status |
||
489 | * @param int $categoryid |
||
490 | * @param string $sort |
||
491 | * @param string $order |
||
492 | * @param string|null $notNullFields |
||
493 | * @param bool $asObject |
||
494 | * @param null|\CriteriaCompo $otherCriteria |
||
495 | * @param bool|string $idKey |
||
496 | * @return array |
||
497 | * @internal param bool $asObject |
||
498 | */ |
||
499 | public function getItems($limit = 0, $start = 0, $status = '', $categoryid = -1, $sort = 'datesub', $order = 'DESC', $notNullFields = null, $asObject = true, $otherCriteria = null, $idKey = 'none') |
||
552 | } |
||
553 | |||
554 | /** |
||
555 | * @param string $field |
||
556 | * @param string $status |
||
557 | * @param int $categoryid |
||
558 | * |
||
559 | * @return bool |
||
560 | * @throws \Exception |
||
561 | */ |
||
562 | public function getRandomItem($field = '', $status = '', $categoryid = -1) |
||
563 | { |
||
564 | $ret = false; |
||
565 | $notNullFields = $field; |
||
566 | // Getting the number of published Items |
||
567 | $totalItems = $this->getItemsCount($categoryid, $status, $notNullFields); |
||
568 | if ($totalItems > 0) { |
||
569 | --$totalItems; |
||
570 | $entryNumber = \random_int(0, $totalItems); |
||
571 | // $entryNumber2 = random_int(0, $totalItems); |
||
572 | |||
573 | $item = $this->getItems(1, $entryNumber, $status, $categoryid, $sort = 'datesub', $order = 'DESC', $notNullFields); |
||
574 | if ($item) { |
||
575 | $ret = $item[0]; |
||
576 | } |
||
577 | } |
||
578 | |||
579 | return $ret; |
||
580 | } |
||
581 | |||
582 | /** |
||
583 | * delete Items matching a set of conditions |
||
584 | * |
||
585 | * @param \CriteriaElement|null $criteria {@link CriteriaElement} |
||
586 | * |
||
587 | * @param bool $force |
||
588 | * @param bool $asObject |
||
589 | * @return bool FALSE if deletion failed |
||
590 | */ |
||
591 | public function deleteAll(?\CriteriaElement $criteria = null, $force = true, $asObject = false) //deleteAll($criteria = null) |
||
592 | { |
||
593 | //todo resource consuming, use get list instead? |
||
594 | $items = &$this->getObjects($criteria); |
||
595 | foreach ($items as $item) { |
||
596 | $this->delete($item); |
||
597 | } |
||
598 | |||
599 | return true; |
||
600 | } |
||
601 | |||
602 | /** |
||
603 | * @param $itemId |
||
604 | * |
||
605 | * @return bool |
||
606 | */ |
||
607 | public function updateCounter($itemId) |
||
608 | { |
||
609 | $sql = 'UPDATE ' . $this->db->prefix($this->helper->getDirname() . '_items') . ' SET counter=counter+1 WHERE itemid = ' . $itemId; |
||
610 | if ($this->db->queryF($sql)) { |
||
611 | return true; |
||
612 | } |
||
613 | |||
614 | return false; |
||
615 | } |
||
616 | |||
617 | /** |
||
618 | * @param string|array $notNullFields |
||
619 | * @param bool $withAnd |
||
620 | * |
||
621 | * @return string |
||
622 | */ |
||
623 | public function notNullFieldClause($notNullFields = '', $withAnd = false) |
||
624 | { |
||
625 | $ret = ''; |
||
626 | if ($withAnd) { |
||
627 | $ret .= ' AND '; |
||
628 | } |
||
629 | if (!empty($notNullFields) && \is_array($notNullFields)) { |
||
630 | foreach ($notNullFields as $v) { |
||
631 | $ret .= " ($v IS NOT NULL AND $v <> ' ' )"; |
||
632 | } |
||
633 | } elseif (!empty($notNullFields)) { |
||
634 | $ret .= " ($notNullFields IS NOT NULL AND $notNullFields <> ' ' )"; |
||
635 | } |
||
636 | |||
637 | return $ret; |
||
638 | } |
||
639 | |||
640 | /** |
||
641 | * @param array $queryArray |
||
642 | * @param string $andor |
||
643 | * @param int $limit |
||
644 | * @param int $offset |
||
645 | * @param int|array $userid |
||
646 | * @param array $categories |
||
647 | * @param int|string $sortby |
||
648 | * @param string|array $searchin |
||
649 | * @param string $extra |
||
650 | * |
||
651 | * @return array |
||
652 | */ |
||
653 | public function getItemsFromSearch($queryArray = [], $andor = 'AND', $limit = 0, $offset = 0, $userid = 0, $categories = [], $sortby = 0, $searchin = '', $extra = '') |
||
756 | } |
||
757 | |||
758 | /** |
||
759 | * @param array $categoriesObj |
||
760 | * @param array $status |
||
761 | * |
||
762 | * @return array |
||
763 | */ |
||
764 | public function getLastPublishedByCat($categoriesObj, $status = [Constants::PUBLISHER_STATUS_PUBLISHED]) |
||
765 | { |
||
766 | $ret = []; |
||
767 | $catIds = []; |
||
768 | foreach ($categoriesObj as $parentid) { |
||
769 | foreach ($parentid as $category) { |
||
770 | $catId = $category->getVar('categoryid'); |
||
771 | $catIds[$catId] = $catId; |
||
772 | } |
||
773 | } |
||
774 | if (empty($catIds)) { |
||
775 | return $ret; |
||
776 | } |
||
777 | /*$cat = []; |
||
778 | |||
779 | $sql = "SELECT categoryid, MAX(datesub) as date FROM " . $this->db->prefix($this->helper->getDirname() . '_items') . " WHERE status IN (" . implode(',', $status) . ") GROUP BY categoryid"; |
||
780 | $result = $this->db->query($sql); |
||
781 | while (false !== ($row = $this->db->fetchArray($result))) { |
||
782 | $cat[$row['categoryid']] = $row['date']; |
||
783 | } |
||
784 | if (count($cat) == 0) return $ret; |
||
785 | $sql = "SELECT categoryid, itemid, title, short_url, uid, datesub FROM " . $this->db->prefix($this->helper->getDirname() . '_items'); |
||
786 | $criteriaBig = new \CriteriaCompo(); |
||
787 | foreach ($cat as $id => $date) { |
||
788 | $criteria = new \CriteriaCompo(new \Criteria('categoryid', $id)); |
||
789 | $criteria->add(new \Criteria('datesub', $date)); |
||
790 | $criteriaBig->add($criteria, 'OR'); |
||
791 | unset($criteria); |
||
792 | } |
||
793 | $sql .= " " . $criteriaBig->renderWhere(); |
||
794 | $result = $this->db->query($sql); |
||
795 | while (false !== ($row = $this->db->fetchArray($result))) { |
||
796 | // $item = new Item(); |
||
797 | $item = static::create(); |
||
798 | $item->assignVars($row); |
||
799 | $ret[$row['categoryid']] = $item; |
||
800 | unset($item); |
||
801 | } |
||
802 | */ |
||
803 | $sql = 'SELECT mi.categoryid, mi.itemid, mi.title, mi.short_url, mi.uid, mi.datesub'; |
||
804 | $sql .= ' FROM (SELECT categoryid, MAX(datesub) AS date FROM ' . $this->db->prefix($this->helper->getDirname() . '_items'); |
||
805 | $sql .= ' WHERE status IN (' . \implode(',', $status) . ')'; |
||
806 | $sql .= ' AND categoryid IN (' . \implode(',', $catIds) . ')'; |
||
807 | $sql .= ' GROUP BY categoryid)mo'; |
||
808 | $sql .= ' JOIN ' . $this->db->prefix($this->helper->getDirname() . '_items') . ' mi ON mi.datesub = mo.date'; |
||
809 | $result = $this->db->query($sql); |
||
810 | while (false !== ($row = $this->db->fetchArray($result))) { |
||
811 | // $item = new Item(); |
||
812 | $item = $this->create(); |
||
813 | $item->assignVars($row); |
||
814 | $ret[$row['categoryid']] = $item; |
||
815 | unset($item); |
||
816 | } |
||
817 | |||
818 | return $ret; |
||
819 | } |
||
820 | |||
821 | /** |
||
822 | * @param $parentid |
||
823 | * @param $catsCount |
||
824 | * @param string $spaces |
||
825 | * @return int |
||
826 | */ |
||
827 | public function countArticlesByCat($parentid, $catsCount, $spaces = '') |
||
828 | { |
||
829 | // global $resultCatCounts; |
||
830 | $newspaces = $spaces . '--'; |
||
831 | $thecount = 0; |
||
832 | foreach ($catsCount[$parentid] as $subCatId => $count) { |
||
833 | $thecount += $count; |
||
834 | $this->resultCatCounts[$subCatId] = $count; |
||
835 | if (isset($catsCount[$subCatId])) { |
||
836 | $thecount += $this->countArticlesByCat($subCatId, $catsCount, $newspaces); |
||
837 | $this->resultCatCounts[$subCatId] = $thecount; |
||
838 | } |
||
839 | } |
||
840 | |||
841 | return $thecount; |
||
842 | } |
||
843 | |||
844 | /** |
||
845 | * @param int $catId |
||
846 | * @param array $status |
||
847 | * @param bool $inSubCat |
||
848 | * |
||
849 | * @return array |
||
850 | */ |
||
851 | public function getCountsByCat($catId, $status, $inSubCat = false) |
||
889 | } |
||
890 | } |
||
891 |