2012-05-15 22:49:53 +04:00
|
|
|
<?php
|
2013-03-20 22:05:56 +04:00
|
|
|
|
2012-05-15 22:49:53 +04:00
|
|
|
/**
|
2013-03-20 22:05:56 +04:00
|
|
|
* ownCloud - News
|
2012-05-15 22:49:53 +04:00
|
|
|
*
|
|
|
|
* @author Alessandro Cosentino
|
2013-03-20 22:05:56 +04:00
|
|
|
* @author Bernhard Posselt
|
|
|
|
* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
|
|
|
|
* @copyright 2012 Bernhard Posselt nukeawhale@gmail.com
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library 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. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
2012-08-03 20:25:46 +04:00
|
|
|
*
|
2013-03-20 22:05:56 +04:00
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2012-08-03 20:25:46 +04:00
|
|
|
*
|
2012-05-15 22:49:53 +04:00
|
|
|
*/
|
|
|
|
|
2013-03-20 22:05:56 +04:00
|
|
|
namespace OCA\News\Db;
|
2012-10-14 23:15:16 +04:00
|
|
|
|
2013-03-20 22:21:47 +04:00
|
|
|
use \OCA\AppFramework\Core\API;
|
2013-03-22 16:20:24 +04:00
|
|
|
use \OCA\AppFramework\Db\Mapper;
|
2013-03-26 14:44:36 +04:00
|
|
|
use \OCA\AppFramework\Db\Entity;
|
|
|
|
|
2013-03-20 22:21:47 +04:00
|
|
|
|
2013-03-22 16:20:24 +04:00
|
|
|
class FeedMapper extends Mapper implements IMapper {
|
2012-05-18 06:59:49 +04:00
|
|
|
|
2012-08-03 20:25:46 +04:00
|
|
|
|
2013-03-20 22:05:56 +04:00
|
|
|
public function __construct(API $api) {
|
|
|
|
parent::__construct($api, 'news_feeds');
|
2012-08-03 08:35:45 +04:00
|
|
|
}
|
2012-05-29 07:40:18 +04:00
|
|
|
|
2012-05-18 06:59:49 +04:00
|
|
|
|
2013-03-20 22:05:56 +04:00
|
|
|
public function find($id, $userId){
|
2013-03-26 21:04:02 +04:00
|
|
|
$sql = 'SELECT `feeds`.*, COUNT(`items`.`id`) AS `unread_count` ' .
|
|
|
|
'FROM `*PREFIX*news_feeds` `feeds` ' .
|
|
|
|
'LEFT JOIN `*PREFIX*news_items` `items` ' .
|
|
|
|
'ON `feeds`.`id` = `items`.`feed_id` ' .
|
|
|
|
'AND (`items`.`status` & ?) > 0 ' .
|
|
|
|
'WHERE `feeds`.`id` = ? ' .
|
|
|
|
'AND `feeds`.`user_id` = ? ' .
|
|
|
|
'GROUP BY `feeds`.`id`';
|
|
|
|
$params = array(StatusFlag::UNREAD, $id, $userId);
|
2012-08-03 20:25:46 +04:00
|
|
|
|
2013-03-26 21:04:02 +04:00
|
|
|
$row = $this->findOneQuery($sql, $params);
|
2013-03-20 22:21:47 +04:00
|
|
|
$feed = new Feed();
|
|
|
|
$feed->fromRow($row);
|
|
|
|
|
|
|
|
return $feed;
|
2012-06-06 21:34:19 +04:00
|
|
|
}
|
2012-10-14 23:15:16 +04:00
|
|
|
|
2012-08-03 20:25:46 +04:00
|
|
|
|
2013-03-20 22:21:47 +04:00
|
|
|
private function findAllRows($sql, $params=array()){
|
|
|
|
$result = $this->execute($sql, $params);
|
|
|
|
|
|
|
|
$feeds = array();
|
|
|
|
while($row = $result->fetchRow()){
|
|
|
|
$feed = new Feed();
|
|
|
|
$feed->fromRow($row);
|
|
|
|
array_push($feeds, $feed);
|
2013-03-20 22:30:05 +04:00
|
|
|
}
|
2013-03-20 22:21:47 +04:00
|
|
|
|
|
|
|
return $feeds;
|
|
|
|
}
|
2012-08-04 01:32:35 +04:00
|
|
|
|
2012-06-06 21:34:19 +04:00
|
|
|
|
2013-03-20 22:21:47 +04:00
|
|
|
public function findAllFromUser($userId){
|
2013-03-21 19:32:36 +04:00
|
|
|
$sql = 'SELECT `feeds`.*, COUNT(`items`.`id`) AS `unread_count` ' .
|
2013-03-23 00:39:39 +04:00
|
|
|
'FROM `*PREFIX*news_feeds` `feeds` ' .
|
2013-03-26 21:04:02 +04:00
|
|
|
'LEFT JOIN `*PREFIX*news_items` `items` ' .
|
2013-03-21 19:18:43 +04:00
|
|
|
'ON `feeds`.`id` = `items`.`feed_id` ' .
|
2013-03-26 21:04:02 +04:00
|
|
|
'AND (`items`.`status` & ?) > 0 ' .
|
|
|
|
'WHERE `feeds`.`user_id` = ? ' .
|
|
|
|
'GROUP BY `feeds`.`id`';
|
|
|
|
$params = array(StatusFlag::UNREAD, $userId);
|
2013-03-20 22:21:47 +04:00
|
|
|
|
|
|
|
return $this->findAllRows($sql, $params);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function findAll(){
|
2013-03-23 00:39:39 +04:00
|
|
|
$sql = 'SELECT * FROM `*PREFIX*news_feeds`';
|
2013-03-20 22:21:47 +04:00
|
|
|
|
|
|
|
return $this->findAllRows($sql);
|
|
|
|
}
|
|
|
|
|
2013-03-20 22:30:05 +04:00
|
|
|
|
2013-03-22 16:47:45 +04:00
|
|
|
public function findByUrlHash($hash, $userId){
|
2013-03-26 21:04:02 +04:00
|
|
|
$sql = 'SELECT `feeds`.*, COUNT(`items`.`id`) AS `unread_count` ' .
|
|
|
|
'FROM `*PREFIX*news_feeds` `feeds` ' .
|
|
|
|
'LEFT JOIN `*PREFIX*news_items` `items` ' .
|
|
|
|
'ON `feeds`.`id` = `items`.`feed_id` ' .
|
|
|
|
'AND (`items`.`status` & ?) > 0 ' .
|
|
|
|
'WHERE `feeds`.`url_hash` = ? ' .
|
|
|
|
'AND `feeds`.`user_id` = ? ' .
|
|
|
|
'GROUP BY `feeds`.`id`';
|
|
|
|
$params = array(StatusFlag::UNREAD, $hash, $userId);
|
2013-03-20 22:30:05 +04:00
|
|
|
|
2013-03-23 00:39:39 +04:00
|
|
|
$row = $this->findOneQuery($sql, $params);
|
2013-03-22 16:47:45 +04:00
|
|
|
$feed = new Feed();
|
|
|
|
$feed->fromRow($row);
|
2013-03-20 22:30:05 +04:00
|
|
|
|
2013-03-22 16:47:45 +04:00
|
|
|
return $feed;
|
2013-03-26 14:44:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function delete(Entity $entity){
|
|
|
|
parent::delete($entity);
|
2013-03-20 22:30:05 +04:00
|
|
|
|
2013-03-26 14:44:36 +04:00
|
|
|
// someone please slap me for doing this manually :P
|
|
|
|
// we needz CASCADE + FKs please
|
|
|
|
$sql = 'DELETE FROM `*PREFIX*news_items` WHERE `feed_id` = ?';
|
|
|
|
$params = array($entity->getId());
|
|
|
|
$this->execute($sql, $params);
|
2013-03-22 16:47:45 +04:00
|
|
|
}
|
2013-03-20 22:40:17 +04:00
|
|
|
|
2013-03-20 22:05:56 +04:00
|
|
|
}
|