2006-08-19 10:52:33 +02:00
|
|
|
<?php
|
2006-05-02 08:43:40 +02:00
|
|
|
define('MOBILE_FEEDLIST_ENABLE_ICONS', false);
|
2006-05-23 07:07:38 +02:00
|
|
|
define('TTRSS_SESSION_NAME', 'ttrss_m_sid');
|
2006-03-27 04:47:07 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
function mobile_feed_has_icon($id) {
|
|
|
|
$filename = "../".ICONS_DIR."/$id.ico";
|
2006-03-27 06:31:17 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
return file_exists($filename) && filesize($filename) > 0;
|
|
|
|
}
|
2006-03-27 06:31:17 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
function render_category($link, $cat_id) {
|
|
|
|
$owner_uid = $_SESSION["uid"];
|
2006-03-27 06:31:17 +02:00
|
|
|
|
2009-12-17 18:47:03 +01:00
|
|
|
if ($cat_id >= 0) {
|
2007-12-05 07:24:48 +01:00
|
|
|
|
2009-12-17 18:47:03 +01:00
|
|
|
if ($cat_id != 0) {
|
|
|
|
$cat_query = "cat_id = '$cat_id'";
|
2009-12-17 17:42:30 +01:00
|
|
|
} else {
|
2009-12-17 18:47:03 +01:00
|
|
|
$cat_query = "cat_id IS NULL";
|
2006-03-27 04:47:07 +02:00
|
|
|
}
|
2009-12-17 18:47:03 +01:00
|
|
|
|
|
|
|
$result = db_query($link, "SELECT id,
|
|
|
|
title,
|
|
|
|
(SELECT COUNT(id) FROM ttrss_entries,ttrss_user_entries
|
|
|
|
WHERE feed_id = ttrss_feeds.id AND unread = true
|
|
|
|
AND ttrss_user_entries.ref_id = ttrss_entries.id
|
|
|
|
AND owner_uid = '$owner_uid') as unread
|
|
|
|
FROM ttrss_feeds
|
|
|
|
WHERE
|
|
|
|
ttrss_feeds.hidden = false AND
|
|
|
|
ttrss_feeds.owner_uid = '$owner_uid' AND
|
|
|
|
parent_feed IS NULL AND
|
|
|
|
$cat_query
|
|
|
|
ORDER BY unread DESC,title");
|
|
|
|
|
|
|
|
$title = getCategoryTitle($link, $cat_id);
|
|
|
|
|
|
|
|
print "<ul id='cat-$cat_id' title='$title' myBackLabel='Feeds'
|
|
|
|
myBackHref='index.php' myBackTarget='_self'>";
|
|
|
|
|
|
|
|
// print "<li><a href='#cat-actions'>".__('Actions...')."</a></li>";
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
$id = $line["id"];
|
|
|
|
$unread = $line["unread"];
|
2009-12-17 20:14:54 +01:00
|
|
|
|
2009-12-17 18:47:03 +01:00
|
|
|
// $unread = rand(0, 100);
|
|
|
|
|
|
|
|
if ($unread > 0) {
|
|
|
|
$line["title"] = $line["title"] . " ($unread)";
|
|
|
|
$class = '';
|
|
|
|
} else {
|
|
|
|
$class = 'oldItem';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mobile_feed_has_icon($id)) {
|
|
|
|
$icon_url = "../".ICONS_URL."/$id.ico";
|
|
|
|
} else {
|
|
|
|
$icon_url = "../images/blank_icon.gif";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<li class='$class'><a href='feed.php?id=$id&cat=$cat_id'>" .
|
|
|
|
"<img class='tinyIcon' src='$icon_url'/>".
|
|
|
|
$line["title"] . "</a></li>";
|
2006-03-27 04:47:07 +02:00
|
|
|
}
|
2009-12-17 18:47:03 +01:00
|
|
|
|
|
|
|
print "</ul>";
|
|
|
|
} else if ($cat_id == -1) {
|
|
|
|
|
2009-12-17 20:08:09 +01:00
|
|
|
$title = __('Special');
|
|
|
|
|
2009-12-17 18:47:03 +01:00
|
|
|
print "<ul id='cat--1' title='$title' myBackLabel='Feeds'
|
|
|
|
myBackHref='index.php' myBackTarget='_self'>";
|
|
|
|
|
|
|
|
foreach (array(-4, -1,-2,-3) as $id) {
|
|
|
|
$title = getFeedTitle($link, $id);
|
|
|
|
$unread = getFeedUnread($link, $id, false);
|
|
|
|
|
|
|
|
if ($unread > 0) {
|
|
|
|
$title = $title . " ($unread)";
|
|
|
|
$class = '';
|
|
|
|
} else {
|
|
|
|
$class = 'oldItem';
|
2006-03-27 08:19:20 +02:00
|
|
|
}
|
2006-03-27 05:10:46 +02:00
|
|
|
|
2009-12-17 18:47:03 +01:00
|
|
|
print "<li class='$class'>
|
|
|
|
<a href='feed.php?id=$id&cat_id=-1'>$title</a></li>";
|
|
|
|
}
|
2006-03-27 05:10:46 +02:00
|
|
|
|
2009-12-17 20:08:09 +01:00
|
|
|
print "</ul>";
|
|
|
|
} else if ($cat_id == -2) {
|
|
|
|
|
|
|
|
$title = __('Labels');
|
|
|
|
|
|
|
|
print "<ul id='cat--2' title='$title' myBackLabel='Feeds'
|
|
|
|
myBackHref='index.php' myBackTarget='_self'>";
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT id, caption FROM ttrss_labels2
|
|
|
|
WHERE owner_uid = '$owner_uid'");
|
|
|
|
|
|
|
|
$label_data = array();
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
|
|
|
|
$id = -$line["id"] - 11;
|
|
|
|
|
|
|
|
$unread = getFeedUnread($link, $id);
|
|
|
|
$title = $line["caption"];
|
|
|
|
|
|
|
|
if ($unread > 0) {
|
|
|
|
$title = $title . " ($unread)";
|
|
|
|
$class = '';
|
|
|
|
} else {
|
|
|
|
$class = 'oldItem';
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<li class='$class'>
|
2009-12-17 20:14:54 +01:00
|
|
|
<a href='feed.php?id=$id&cat=-2'>$title</a></li>";
|
2009-12-17 20:08:09 +01:00
|
|
|
|
|
|
|
}
|
2009-12-17 18:47:03 +01:00
|
|
|
print "</ul>";
|
|
|
|
}
|
2006-03-27 04:47:07 +02:00
|
|
|
}
|
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
function render_categories_list($link) {
|
|
|
|
$owner_uid = $_SESSION["uid"];
|
2006-03-27 05:44:43 +02:00
|
|
|
|
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
print '<ul id="home" title="Feeds" selected="true">';
|
2006-03-27 08:19:20 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
foreach (array(-1, -2) as $id) {
|
|
|
|
$title = getCategoryTitle($link, $id);
|
|
|
|
$unread = getFeedUnread($link, $id, true);
|
|
|
|
if ($unread > 0) {
|
|
|
|
$title = $title . " ($unread)";
|
|
|
|
$class = '';
|
2006-03-27 08:19:20 +02:00
|
|
|
} else {
|
2009-12-17 17:42:30 +01:00
|
|
|
$class = 'oldItem';
|
2006-07-07 05:48:19 +02:00
|
|
|
}
|
2006-03-27 05:44:43 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
print "<li class='$class'><a href='cat.php?id=$id'>$title</a></li>";
|
2006-03-27 05:44:43 +02:00
|
|
|
}
|
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
$result = db_query($link, "SELECT
|
|
|
|
ttrss_feed_categories.id,
|
|
|
|
ttrss_feed_categories.title,
|
|
|
|
COUNT(ttrss_feeds.id) AS num_feeds
|
|
|
|
FROM ttrss_feed_categories, ttrss_feeds
|
|
|
|
WHERE ttrss_feed_categories.owner_uid = $owner_uid
|
|
|
|
AND ttrss_feed_categories.id = cat_id
|
|
|
|
AND hidden = false
|
|
|
|
GROUP BY ttrss_feed_categories.id,
|
|
|
|
ttrss_feed_categories.title
|
|
|
|
ORDER BY ttrss_feed_categories.title");
|
2006-03-27 05:44:43 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
$cat_ids = array();
|
2006-03-27 05:44:43 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
while ($line = db_fetch_assoc($result)) {
|
2007-12-05 08:59:12 +01:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
if ($line["num_feeds"] > 0) {
|
2006-03-27 05:44:43 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
$unread = getFeedUnread($link, $line["id"], true);
|
2006-03-27 05:44:43 +02:00
|
|
|
$id = $line["id"];
|
2007-12-05 07:28:19 +01:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
if ($unread > 0) {
|
|
|
|
$line["title"] = $line["title"] . " ($unread)";
|
|
|
|
$class = '';
|
2007-12-05 07:28:19 +01:00
|
|
|
} else {
|
2009-12-17 17:42:30 +01:00
|
|
|
$class = 'oldItem';
|
2007-12-05 07:28:19 +01:00
|
|
|
}
|
2006-03-27 05:44:43 +02:00
|
|
|
|
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
print "<li class='$class'><a href='cat.php?id=$id'>" .
|
|
|
|
$line["title"] . "</a></li>";
|
2006-03-27 07:56:37 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
array_push($cat_ids, $id);
|
2006-03-27 05:44:43 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
$result = db_query($link, "SELECT COUNT(*) AS nf FROM ttrss_feeds WHERE
|
|
|
|
cat_id IS NULL and owner_uid = '$owner_uid'");
|
2006-03-27 06:31:17 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
$num_feeds = db_fetch_result($result, 0, "nf");
|
2006-03-27 06:31:17 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
if ($num_feeds > 0) {
|
|
|
|
$unread = getFeedUnread($link, 0, true);
|
|
|
|
$title = "Uncategorized";
|
2006-03-27 06:31:17 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
if ($unread > 0) {
|
|
|
|
$title = "$title ($unread)";
|
|
|
|
$class = '';
|
2006-03-27 06:31:17 +02:00
|
|
|
} else {
|
2009-12-17 17:42:30 +01:00
|
|
|
$class = 'oldItem';
|
2006-03-27 06:31:17 +02:00
|
|
|
}
|
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
array_push($cat_ids, 0);
|
2006-03-27 08:19:20 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
print "<li class='$class'><a href='cat.php?id=0'>$title</a></li>";
|
|
|
|
}
|
2006-03-27 06:31:17 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
print "</ul>";
|
|
|
|
}
|
2006-03-27 10:59:48 +02:00
|
|
|
|
2009-12-17 18:35:49 +01:00
|
|
|
function render_headlines_list($link, $feed_id, $cat_id) {
|
2006-03-27 10:59:48 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
$feed_id = $feed_id;
|
|
|
|
$limit = 30;
|
|
|
|
$filter = '';
|
2009-12-17 18:35:49 +01:00
|
|
|
$is_cat = false;
|
2009-12-17 17:42:30 +01:00
|
|
|
$view_mode = 'adaptive';
|
2008-07-23 06:45:46 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
/* do not rely on params below */
|
2008-07-23 06:45:46 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
$search = '';
|
|
|
|
$search_mode = '';
|
|
|
|
$match_on = '';
|
|
|
|
|
|
|
|
$qfh_ret = queryFeedHeadlines($link, $feed_id, $limit,
|
|
|
|
$view_mode, $is_cat, $search, $search_mode, $match_on);
|
2009-07-30 10:49:18 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
$result = $qfh_ret[0];
|
|
|
|
$feed_title = $qfh_ret[1];
|
2006-03-27 06:31:17 +02:00
|
|
|
|
2009-12-17 18:35:49 +01:00
|
|
|
$cat_title = getCategoryTitle($link, $cat_id);
|
|
|
|
|
|
|
|
print "<ul id=\"feed-$feed_id\" title=\"$feed_title\" selected=\"true\"
|
|
|
|
myBackLabel='$cat_title' myBackHref='cat.php?id=$cat_id'>";
|
2006-03-27 10:59:48 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
$id = $line["id"];
|
2009-12-17 20:14:54 +01:00
|
|
|
$real_feed_id = $line["feed_id"];
|
2007-12-05 07:42:18 +01:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
if (sql_bool_to_bool($line["unread"])) {
|
|
|
|
$class = '';
|
2007-12-05 07:42:18 +01:00
|
|
|
} else {
|
2009-12-17 17:42:30 +01:00
|
|
|
$class = 'oldItem';
|
2007-12-05 07:42:18 +01:00
|
|
|
}
|
|
|
|
|
2009-12-17 20:14:54 +01:00
|
|
|
if (mobile_feed_has_icon($real_feed_id)) {
|
|
|
|
$icon_url = "../".ICONS_URL."/$real_feed_id.ico";
|
|
|
|
} else {
|
|
|
|
$icon_url = "../images/blank_icon.gif";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<li class='$class'><a href='article.php?id=$id&feed=$feed_id&cat=$cat_id'>
|
|
|
|
<img class='tinyIcon' src='$icon_url'>";
|
2009-12-17 17:42:30 +01:00
|
|
|
print $line["title"];
|
|
|
|
print "</a></li>";
|
2009-04-30 09:23:38 +02:00
|
|
|
|
2006-03-27 06:31:17 +02:00
|
|
|
}
|
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
print "</ul>";
|
|
|
|
|
2006-03-27 06:31:17 +02:00
|
|
|
}
|
|
|
|
|
2009-12-17 18:35:49 +01:00
|
|
|
function render_article($link, $id, $feed_id, $cat_id) {
|
2007-06-08 09:01:42 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
$query = "SELECT title,link,content,feed_id,comments,int_id,
|
|
|
|
marked,unread,published,
|
|
|
|
".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
|
|
|
|
author
|
|
|
|
FROM ttrss_entries,ttrss_user_entries
|
|
|
|
WHERE id = '$id' AND ref_id = id AND owner_uid = " .
|
|
|
|
$_SESSION["uid"] ;
|
2007-06-08 09:01:42 +02:00
|
|
|
|
2009-12-17 17:42:30 +01:00
|
|
|
$result = db_query($link, $query);
|
2007-06-08 09:01:42 +02:00
|
|
|
|
2009-12-17 18:35:49 +01:00
|
|
|
if (db_num_rows($result) != 0) {
|
2007-06-08 09:01:42 +02:00
|
|
|
|
2009-12-17 18:35:49 +01:00
|
|
|
$line = db_fetch_assoc($result);
|
2007-06-08 09:01:42 +02:00
|
|
|
|
2009-12-17 18:35:49 +01:00
|
|
|
$tmp_result = db_query($link, "UPDATE ttrss_user_entries
|
|
|
|
SET unread = false,last_read = NOW()
|
|
|
|
WHERE ref_id = '$id'
|
|
|
|
AND owner_uid = " . $_SESSION["uid"]);
|
2007-06-08 09:01:42 +02:00
|
|
|
|
2009-12-17 18:35:49 +01:00
|
|
|
if (get_pref($link, 'HEADLINES_SMART_DATE')) {
|
|
|
|
$updated_fmt = smart_date_time(strtotime($line["updated"]));
|
|
|
|
} else {
|
|
|
|
$short_date = get_pref($link, 'SHORT_DATE_FORMAT');
|
|
|
|
$updated_fmt = date($short_date, strtotime($line["updated"]));
|
|
|
|
}
|
|
|
|
|
|
|
|
$title = $line["title"];
|
|
|
|
$article_link = $line["link"];
|
|
|
|
|
|
|
|
$feed_title = getFeedTitle($link, $feed_id, false);
|
|
|
|
|
|
|
|
print "<div class=\"panel\" id=\"article-$id\" title=\"$title\"
|
|
|
|
selected=\"true\"
|
|
|
|
myBackLabel='$feed_title' myBackHref='feed.php?id=$feed_id&cat=$cat_id'>";
|
|
|
|
|
|
|
|
// print "<h2><a target='_blank' href='$link'>$title</a></h2>";
|
|
|
|
|
|
|
|
print "<fieldset>";
|
|
|
|
|
|
|
|
print "<div class=\"row\">";
|
|
|
|
print "<label id='title'><a target='_blank' href='$article_link'>$title</a></label>";
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
$is_starred = (sql_bool_to_bool($line["marked"])) ? "true" : "false";
|
|
|
|
$is_published = (sql_bool_to_bool($line["published"])) ? "true" : "false";
|
|
|
|
|
|
|
|
print "<div class=\"row\">
|
|
|
|
<label>Starred</label>
|
|
|
|
<div class=\"toggle\" onclick=\"toggleMarked($id, this)\" toggled=\"$is_starred\"><span class=\"thumb\"></span><span class=\"toggleOn\">ON</span><span class=\"toggleOff\">OFF</span></div>
|
|
|
|
</div>";
|
|
|
|
|
|
|
|
print "<div class=\"row\">
|
|
|
|
<label>Published</label>
|
|
|
|
<div class=\"toggle\" onclick=\"togglePublished($id, this)\" toggled=\"$is_published\"><span class=\"thumb\"></span><span class=\"toggleOn\">ON</span><span class=\"toggleOff\">OFF</span></div>
|
|
|
|
</div>";
|
|
|
|
|
|
|
|
|
|
|
|
print "<div class=\"row\">";
|
|
|
|
print "<label id='updated'>Updated:</label>";
|
|
|
|
print "<input enabled='false' name='updated' disabled value='$updated_fmt'/>";
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
print "</fieldset>";
|
|
|
|
|
|
|
|
print "<p>";
|
|
|
|
print $line["content"];
|
|
|
|
print "</p>";
|
|
|
|
|
|
|
|
print "</div>";
|
2007-12-05 07:42:18 +01:00
|
|
|
|
2009-12-17 18:35:49 +01:00
|
|
|
}
|
2009-04-30 09:23:38 +02:00
|
|
|
|
|
|
|
}
|
2006-03-27 04:47:07 +02:00
|
|
|
?>
|