2013-07-11 11:48:39 +02:00
|
|
|
<?php
|
|
|
|
class VF_Shared extends Plugin {
|
|
|
|
|
|
|
|
private $host;
|
|
|
|
|
|
|
|
function about() {
|
|
|
|
return array(1.0,
|
|
|
|
"Feed for all articles actively shared by URL",
|
|
|
|
"fox",
|
|
|
|
false);
|
|
|
|
}
|
|
|
|
|
|
|
|
function init($host) {
|
|
|
|
$this->host = $host;
|
|
|
|
|
|
|
|
$host->add_feed(-1, __("Shared articles"), 'plugins/vf_shared/share.png', $this);
|
|
|
|
}
|
|
|
|
|
|
|
|
function api_version() {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2017-04-26 19:57:36 +02:00
|
|
|
/**
|
|
|
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
|
|
|
*/
|
2013-07-11 11:48:39 +02:00
|
|
|
function get_unread($feed_id) {
|
|
|
|
$result = db_query("select count(int_id) AS count from ttrss_user_entries where owner_uid = ".$_SESSION["uid"]." and unread = true and uuid != ''");
|
|
|
|
|
|
|
|
return db_fetch_result($result, 0, "count");
|
|
|
|
}
|
|
|
|
|
2017-04-26 19:57:36 +02:00
|
|
|
/**
|
|
|
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
|
|
|
*/
|
2013-07-11 11:48:39 +02:00
|
|
|
function get_total($feed_id) {
|
|
|
|
$result = db_query("select count(int_id) AS count from ttrss_user_entries where owner_uid = ".$_SESSION["uid"]." and uuid != ''");
|
|
|
|
|
|
|
|
return db_fetch_result($result, 0, "count");
|
|
|
|
}
|
|
|
|
|
|
|
|
//function queryFeedHeadlines($feed, $limit, $view_mode, $cat_view, $search, $search_mode, $override_order = false, $offset = 0, $owner_uid = 0, $filter = false, $since_id = 0, $include_children = false, $ignore_vfeed_group = false, $override_strategy = false, $override_vfeed = false) {
|
|
|
|
|
2017-04-26 19:57:36 +02:00
|
|
|
/**
|
|
|
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
|
|
|
*/
|
2013-07-11 11:48:39 +02:00
|
|
|
function get_headlines($feed_id, $options) {
|
2015-07-12 00:29:36 +02:00
|
|
|
/*$qfh_ret = queryFeedHeadlines(-4,
|
2013-07-11 11:48:39 +02:00
|
|
|
$options['limit'],
|
2013-07-11 12:23:46 +02:00
|
|
|
$this->get_unread(-1) > 0 ? "adaptive" : "all_articles",
|
2013-07-11 11:48:39 +02:00
|
|
|
false,
|
|
|
|
$options['search'],
|
|
|
|
$options['search_mode'],
|
|
|
|
$options['override_order'],
|
|
|
|
$options['offset'],
|
|
|
|
$options['owner_uid'],
|
|
|
|
$options['filter'],
|
|
|
|
$options['since_id'],
|
|
|
|
$options['include_children'],
|
|
|
|
false,
|
|
|
|
"uuid != ''",
|
2015-07-12 00:29:36 +02:00
|
|
|
"ttrss_feeds.title AS feed_title,"); */
|
2013-07-11 11:48:39 +02:00
|
|
|
|
2015-07-12 00:29:36 +02:00
|
|
|
$params = array(
|
|
|
|
"feed" => -4,
|
|
|
|
"limit" => $options["limit"],
|
|
|
|
"view_mode" => $this->get_unread(-1) > 0 ? "adaptive" : "all_articles",
|
|
|
|
"search" => $options['search'],
|
|
|
|
"override_order" => $options['override_order'],
|
|
|
|
"offset" => $options["offset"],
|
|
|
|
"filter" => $options["filter"],
|
|
|
|
"since_id" => $options["since_id"],
|
|
|
|
"include_children" => $options["include_children"],
|
|
|
|
"override_strategy" => "uuid != ''",
|
|
|
|
"override_vfeed" => "ttrss_feeds.title AS feed_title,"
|
|
|
|
);
|
|
|
|
|
|
|
|
$qfh_ret = queryFeedHeadlines($params);
|
2013-07-11 11:48:39 +02:00
|
|
|
$qfh_ret[1] = __("Shared articles");
|
|
|
|
|
|
|
|
return $qfh_ret;
|
|
|
|
}
|
|
|
|
|
2017-04-26 19:57:36 +02:00
|
|
|
}
|