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;
|
|
|
|
|
2012-08-03 20:25:46 +04:00
|
|
|
|
2013-03-20 22:05:56 +04:00
|
|
|
class FeedMapper extends NewsMapper {
|
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){
|
|
|
|
$sql = 'SELECT * FROM `*dbprefix*news_feeds` ' .
|
|
|
|
'WHERE `id` = ? ' .
|
|
|
|
'AND `user_id` = ?';
|
2012-08-03 20:25:46 +04:00
|
|
|
|
2013-03-20 22:21:47 +04:00
|
|
|
$row = $this->findRow($sql, $id, $userId);
|
|
|
|
$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:18:43 +04:00
|
|
|
$sql = 'SELECT `feeds`.*, COUNT(`items`.`id`) AS unread_count ' .
|
|
|
|
'FROM `*dbprefix*news_feeds` `feeds` ' .
|
|
|
|
'LEFT OUTER JOIN `*dbprefix*news_items` `items` ' .
|
|
|
|
'ON `feeds`.`id` = `items`.`feed_id` ' .
|
|
|
|
'WHERE (`items`.`status` & ?) > 0 ' .
|
|
|
|
'AND `feeds`.`user_id` = ? ' .
|
|
|
|
'GROUP BY `items`.`feed_id`';
|
2013-03-20 22:21:47 +04:00
|
|
|
$params = array($userId);
|
|
|
|
|
|
|
|
return $this->findAllRows($sql, $params);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function findAll(){
|
|
|
|
$sql = 'SELECT * FROM `*dbprefix*news_feeds`';
|
|
|
|
|
|
|
|
return $this->findAllRows($sql);
|
|
|
|
}
|
|
|
|
|
2013-03-20 22:30:05 +04:00
|
|
|
|
|
|
|
public function getStarredCount($userId){
|
|
|
|
$sql = 'SELECT COUNT(*) AS size FROM `*dbprefix*news_feeds` ' .
|
|
|
|
'AND `user_id` = ? ' .
|
|
|
|
'AND ((`status` & ?) > 0)';
|
|
|
|
$params = array($userId, StatusFlag::STARRED);
|
|
|
|
|
|
|
|
$result = $this->execute($sql, $params)->fetchRow();
|
|
|
|
|
|
|
|
return $result['size'];
|
|
|
|
}
|
|
|
|
|
2013-03-20 22:40:17 +04:00
|
|
|
|
2013-03-20 22:05:56 +04:00
|
|
|
}
|