-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrss.php
More file actions
204 lines (183 loc) · 7.77 KB
/
rss.php
File metadata and controls
204 lines (183 loc) · 7.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<?php
// The source code packaged with this file is Free Software, Copyright (C) 2005 by
// Ricardo Galli <gallir at uib dot es>.
// It's licensed under the AFFERO GENERAL PUBLIC LICENSE unless stated otherwise.
// You can get copies of the licenses here:
// http://www.affero.org/oagpl.html
// AFFERO GENERAL PUBLIC LICENSE is also included in the file called "COPYING".
include_once('Smarty.class.php');
$main_smarty = new Smarty;
include('config.php');
include(mnminclude.'link.php');
include(mnminclude.'html1.php');
include(mnminclude.'search.php');
include(mnminclude.'user.php');
include_once(mnminclude.'smartyvariables.php');
$rows = isset($_GET['rows']) && is_numeric($_GET['rows']) ? $_GET['rows'] : 20;
$status = sanitize($_GET['status'], 3) != '' ? sanitize($_GET['status'], 3) : 'published';
$time = isset($_GET['time']) && is_numeric($_GET['time']) ? $_GET['time'] : 0;
if($time > 0) {
// Prepare for times
$sql = "SELECT link_id, count(*) as votes FROM " . table_votes . ", " . table_links . " WHERE ";
if ($time > 0) {
$from = time()-$time;
$sql .= "vote_date > FROM_UNIXTIME($from) AND ";
}
$sql .= "vote_link_id=link_id AND (link_status='published' OR link_status='queued') GROUP BY vote_link_id ORDER BY votes DESC LIMIT $rows";
$last_modified = time();
$title = $main_smarty->get_config_vars('PLIGG_Visual_RSS_Recent') . ' ' . txt_time_diff($from);
$link_date = "";
} else {
// All the others
$tmpsearch = new Search;
$tmpsearch->searchTerm = isset($_GET['search']) && sanitize($_GET['search'], 3) != '' ? sanitize($_GET['search'], 3) : '';
$search = $tmpsearch->get_search_clause();
if ($search) $status='all';
switch ($status) {
case 'published':
$order_field = 'link_date';
$link_date = 'date';
$title = " | " . $main_smarty->get_config_vars("PLIGG_Visual_Published_News");
break;
case 'upcoming':
case 'queued':
$title = " | " . $main_smarty->get_config_vars("PLIGG_Visual_Pligg_Queued");
$order_field = 'link_date';
$link_date = "date";
$status = 'queued';
break;
case 'shared':
$order_field = 'link_date';
$link_date = 'date';
$title = " | " . $main_smarty->get_config_vars("PLIGG_Visual_Group_Shared");
break;
case 'all':
$title = "";
$order_field = 'link_date';
$link_date = "date";
break;
default:
header("Location: $my_pligg_base/404error.php");
// $main_smarty->assign('tpl_center', '404error');
// $main_smarty->display($the_template . '/pligg.tpl');
die();
break;
}
$from = "FROM " . table_links .
" LEFT JOIN " . table_groups . " ON group_id=link_group_id ";
# " LEFT JOIN " . table_categories . " ON category_id=link_category ".
# " LEFT JOIN " . table_users . " ON link_author=user_id ";
if($status == 'shared') {
$from .= " LEFT JOIN " . table_group_shared . " ON share_link_id=link_id ";
}
$where = " WHERE (ISNULL(group_privacy) OR group_privacy!='private') ";
if($status == 'all') {
$where .= " AND (link_status='published' OR link_status='queued') ";
} elseif($status == 'shared') {
$where .= " AND !ISNULL(share_link_id) AND (link_status='published' OR link_status='queued') ";
} else {
$where .= " AND link_status='$status' ";
}
if($_REQUEST['category']){
if(!($cat=check_integer('category'))) {
$thecat = get_cached_category_data('category_safe_name', sanitize($_REQUEST['category'], 1));
$cat = $thecat->category_id;
if (!$cat)
{
header("Location: $my_pligg_base/storyrss.php?title=".urlencode($_REQUEST['category']));
die();
}
}
$where .= " AND link_category IN (SELECT category_ID from ". table_categories ." where category_id=$cat OR category_parent=$cat )";
$category_name = $db->get_var("SELECT category_name FROM " . table_categories . " WHERE category_id = $cat AND category_lang='$dblang'");
$title .= " | " . htmlspecialchars($category_name);
}
if(isset($_REQUEST['group'])){
if(!($group=check_integer('group')))
$group = $db->get_var("SELECT group_id FROM " . table_groups . " WHERE group_safename = '".$db->escape(strip_tags($_REQUEST['group']))."';");
$group_name = $db->get_var("SELECT group_name FROM " . table_groups . " WHERE group_id = '$group'");
if ($group_name)
{
$title .= " | " . $group_name;
$where .= " AND link_group_id = '$group' ";
}
}
// This doesn't seem to work -kb
if($search) {
$where .= $search;
$title = htmlspecialchars(sanitize($_GET['search'], 3));
}
$order_by = " ORDER BY $order_field DESC ";
$last_modified = $db->get_var($sql="SELECT UNIX_TIMESTAMP(max($order_field)) $from $where");
$sql = "SELECT * $from $where $order_by LIMIT $rows";
}
do_rss_header($title);
$link = new Link;
$links = $db->get_results($sql);
if ($links) {
foreach($links as $dblink) {
$link->id=$dblink->link_id;
$cached_links[$dblink->link_id] = $dblink;
$link->read();
$user = new User($link->author);
#print_r($link);
$category_name = $db->get_var($sql="SELECT category_name FROM " . table_categories . " WHERE category_id = {$link->category}");
#print $sql;
$link->link_summary = str_replace("\n", "<br />", $link->link_summary);
$link->link_summary = str_replace("’", "'", $link->link_summary);
$link->link_summary = str_replace("–", "-", $link->link_summary);
$link->link_summary = str_replace("—", "-", $link->link_summary);
$link->link_summary = str_replace("“", "\"", $link->link_summary);
$link->link_summary = str_replace("â€", "\"", $link->link_summary);
echo "<item>\n";
echo " <title><![CDATA[". $link->title . "]]></title>\n";
echo " <link>".getmyFullurl("storyURL", $link->category_safe_names($link->category), urlencode($link->title_url), $link->id)."</link>\n";
$vars = array('link' => $link);
check_actions('rss_add_data', $vars);
echo ' <source url="'.urlencode($link->url).'"><![CDATA['. $link->title .']]></source>';
echo "\n <description><![CDATA[" . $link->content . " ]]></description>\n";
if (!empty($link_date))
echo " <pubDate>".date('D, d M Y H:i:s T', $link->$link_date-misc_timezone*3600)."</pubDate>\n";
else
echo " <pubDate>".date('D, d M Y H:i:s T', time()-misc_timezone*3600)."</pubDate>\n";
echo " <author>" . $user->username . "</author>\n";
echo " <category>" . htmlspecialchars($category_name) . "</category>\n";
echo " <votes>" . $link->votes . "</votes>\n";
echo " <guid>".getmyFullurl("storyURL", $link->category_safe_names($link->category), urlencode($link->title_url), $link->id)."</guid>\n";
echo "</item>\n\n";
}
}
do_rss_footer();
function do_rss_header($title) {
global $last_modified, $dblang, $main_smarty;
header('Content-type: text/xml; charset=utf-8', true);
echo '<?xml version="1.0" encoding="utf-8"?'.'>' . "\n";
echo '<rss version="2.0" '."\n";
echo 'xmlns:content="http://purl.org/rss/1.0/modules/content/"'."\n";
echo 'xmlns:wfw="http://wellformedweb.org/CommentAPI/"'."\n";
echo 'xmlns:dc="http://purl.org/dc/elements/1.1/"'."\n";
echo 'xmlns:atom="http://www.w3.org/2005/Atom"'."\n";
echo '>'. "\n";
echo '<channel>'."\n";
echo '<title>'.htmlspecialchars($main_smarty->get_config_vars("PLIGG_Visual_Name")).' '.trim($title).'</title>'."\n";
echo '<link>'.my_base_url.my_pligg_base.'</link>'."\n";
echo '<description>'.$main_smarty->get_config_vars("PLIGG_Visual_RSS_Description").'</description>'."\n";
echo '<pubDate>'.date('D, d M Y H:i:s T', $last_modified-misc_timezone*3600).'</pubDate>'."\n";
echo '<language>'.$dblang.'</language>'."\n";
}
function do_rss_footer() {
echo "<atom:link href=\"".my_base_url.my_pligg_base."\" rel=\"self\" type=\"application/rss+xml\" />\n";
echo "</channel>\n</rss>\n";
}
function onlyreadables($string) {
for ($i=0;$i<strlen($string);$i++) {
$chr = $string{$i};
$ord = ord($chr);
if ($ord<32 or $ord>126) {
$chr = "~";
$string{$i} = $chr;
}
}
return str_replace("~", "", $string);
}
?>