]> git.wh0rd.org Git - tt-rss.git/blob - functions.php
release 1.0
[tt-rss.git] / functions.php
1 <?
2         require_once 'config.php';
3
4         define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
5
6         function purge_old_posts() {
7                 if (PURGE_OLD_DAYS) {
8                         $result = pg_query("DELETE FROM ttrss_entries WHERE
9                                 date_entered < NOW() - INTERVAL '30 days'");
10                 }
11         }
12
13         function update_all_feeds($link, $fetch) {
14
15                 if (WEB_DEMO_MODE) return;
16
17                 pg_query("BEGIN");
18
19                 if (!$fetch) {
20
21                         $result = pg_query($link, "SELECT feed_url,id FROM ttrss_feeds WHERE
22                                 last_updated is null OR title = '' OR
23                                 EXTRACT(EPOCH FROM NOW()) - EXTRACT(EPOCH FROM last_updated) > " . 
24                                 MIN_UPDATE_TIME);
25
26                 } else {
27
28                         $result = pg_query($link, "SELECT feed_url,id FROM ttrss_feeds");
29                 }
30
31                 while ($line = pg_fetch_assoc($result)) {
32                         update_rss_feed($link, $line["feed_url"], $line["id"]);
33                 }
34
35                 purge_old_posts();
36
37                 pg_query("COMMIT");
38
39         }
40
41         function check_feed_favicon($feed_url, $feed) {
42                 $feed_url = str_replace("http://", "", $feed_url);
43                 $feed_url = preg_replace("/\/.*$/", "", $feed_url);
44                 
45                 $icon_url = "http://$feed_url/favicon.ico";
46                 $icon_file = ICONS_DIR . "/$feed.ico";
47
48                 if (!file_exists($icon_file)) {
49                                 
50                         error_reporting(0);
51                         $r = fopen($icon_url, "r");
52                         error_reporting (E_ERROR | E_WARNING | E_PARSE);
53
54                         if ($r) {
55                                 $tmpfname = tempnam("/tmp", "ttrssicon");
56                         
57                                 $t = fopen($tmpfname, "w");
58                                 
59                                 while (!feof($r)) {
60                                         $buf = fread($r, 16384);
61                                         fwrite($t, $buf);
62                                 }
63                                 
64                                 fclose($r);
65                                 fclose($t);
66
67                                 error_reporting(0);
68                                 if (!rename($tmpfname, $icon_file)) {
69                                         unlink($tmpfname);
70                                 }
71                                 error_reporting (E_ERROR | E_WARNING | E_PARSE);
72
73                         }       
74                 }
75         }
76
77         function update_rss_feed($link, $feed_url, $feed) {
78
79                 if (WEB_DEMO_MODE) return;
80
81                 error_reporting(0);
82                 $rss = fetch_rss($feed_url);
83                 error_reporting (E_ERROR | E_WARNING | E_PARSE);
84
85                 pg_query("BEGIN");
86
87                 $feed = pg_escape_string($feed);
88         
89                 if ($rss) {
90
91                         if (ENABLE_FEED_ICONS) {        
92                                 check_feed_favicon($feed_url, $feed);
93                         }
94                 
95                         $result = pg_query("SELECT title,icon_url FROM ttrss_feeds WHERE id = '$feed'");
96
97                         $registered_title = pg_fetch_result($result, 0, "title");
98                         $orig_icon_url = pg_fetch_result($result, 0, "icon_url");
99
100                         if (!$registered_title) {
101                                 $feed_title = $rss->channel["title"];
102                                 pg_query("UPDATE ttrss_feeds SET title = '$feed_title' WHERE id = '$feed'");
103                         }
104
105 //                      print "I: " . $rss->channel["image"]["url"];
106
107                         $icon_url = $rss->image["url"];
108
109                         if ($icon_url && !$orig_icon_url) {
110                                 $icon_url = pg_escape_string($icon_url);
111                                 pg_query("UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
112                         }
113
114                         foreach ($rss->items as $item) {
115         
116                                 $entry_guid = $item["id"];
117         
118                                 if (!$entry_guid) $entry_guid = $item["guid"];
119                                 if (!$entry_guid) $entry_guid = $item["link"];
120
121                                 if (!$entry_guid) continue;
122         
123                                 $entry_timestamp = "";
124
125                                 $rss_2_date = $item['pubdate'];
126                                 $rss_1_date = $item['dc']['date'];
127                                 $atom_date = $item['issued'];
128                         
129                                 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
130                                 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
131                                 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
132                                 
133                                 if ($entry_timestamp == "") {
134                                         $entry_timestamp = time();
135                                         $no_orig_date = 'true';
136                                 } else {
137                                         $no_orig_date = 'false';
138                                 }
139
140                                 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
141
142                                 $entry_title = $item["title"];
143                                 $entry_link = $item["link"];
144
145                                 if (!$entry_title) continue;
146                                 if (!$entry_link) continue;
147
148                                 $entry_content = $item["description"];
149                                 if (!$entry_content) $entry_content = $item["content:escaped"];
150                                 if (!$entry_content) $entry_content = $item["content"];
151
152                                 if (!$entry_content) continue;
153
154                                 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
155
156                                 $entry_comments = $item["comments"];
157
158                                 $result = pg_query($link, "
159                                         SELECT 
160                                                 id,last_read,no_orig_date,title,feed_id,content_hash,
161                                                 EXTRACT(EPOCH FROM updated) as updated_timestamp
162                                         FROM
163                                                 ttrss_entries 
164                                         WHERE
165                                                 guid = '$entry_guid'");
166
167                                 if (pg_num_rows($result) == 0) {
168
169                                         $entry_guid = pg_escape_string($entry_guid);
170                                         $entry_content = pg_escape_string($entry_content);
171                                         $entry_title = pg_escape_string($entry_title);
172                                         $entry_link = pg_escape_string($entry_link);
173                                         $entry_comments = pg_escape_string($entry_comments);
174
175                                         $query = "INSERT 
176                                                 INTO ttrss_entries 
177                                                         (title, 
178                                                         guid, 
179                                                         link, 
180                                                         updated, 
181                                                         content, 
182                                                         content_hash,
183                                                         feed_id, 
184                                                         comments,
185                                                         no_orig_date) 
186                                                 VALUES
187                                                         ('$entry_title', 
188                                                         '$entry_guid', 
189                                                         '$entry_link', 
190                                                         '$entry_timestamp_fmt', 
191                                                         '$entry_content', 
192                                                         '$content_hash',
193                                                         '$feed', 
194                                                         '$entry_comments',
195                                                         $no_orig_date)";
196
197                                         $result = pg_query($link, $query);
198
199                                 } else {
200
201                                         $orig_entry_id = pg_fetch_result($result, 0, "id");                     
202                                         $orig_feed_id = pg_fetch_result($result, 0, "feed_id");
203
204                                         if ($orig_feed_id != $feed) {
205 //                                              print "<p>Update from different feed ($orig_feed_id, $feed): $entry_guid [$entry_title]";
206                                                 continue;
207                                         }
208                                         
209                                         $orig_timestamp = pg_fetch_result($result, 0, "updated_timestamp");
210                                         $orig_content_hash = pg_fetch_result($result, 0, "content_hash");
211                                         $orig_last_read = pg_fetch_result($result, 0, "last_read");     
212                                         $orig_no_orig_date = pg_fetch_result($result, 0, "no_orig_date");
213                                         $orig_title = pg_fetch_result($result, 0, "title");
214
215                                         $last_read_qpart = "";
216
217 //                                      if ("$orig_title" != "$entry_title") {
218 //                                              $last_read_qpart = 'last_read = null,';
219 //                                      }
220                                 
221                                         if (UPDATE_POST_ON_CHECKSUM_CHANGE && 
222                                                         $orig_content_hash != $content_hash) {
223                                                 $last_read_qpart = 'last_read = null,';
224                                         }
225
226 //                                      if (!$no_orig_date && $orig_timestamp < $entry_timestamp) {
227 //                                              $last_read_qpart = 'last_read = null,';
228 //                                      }
229
230                                         $entry_comments = pg_escape_string($entry_comments);
231                                         $entry_content = pg_escape_string($entry_content);
232                                         $entry_title = pg_escape_string($entry_title);                                  
233                                         $entry_link = pg_escape_string($entry_link);
234                         
235                                         $query = "UPDATE ttrss_entries 
236                                                 SET 
237                                                         $last_read_qpart 
238                                                         title = '$entry_title',
239                                                         link = '$entry_link', 
240                                                         updated = '$entry_timestamp_fmt',
241                                                         content = '$entry_content',
242                                                         comments = '$entry_comments',
243                                                         content_hash = '$content_hash'
244                                                 WHERE
245                                                         id = '$orig_entry_id'";
246
247                                         $result = pg_query($link, $query);
248
249                                 }
250                         }
251
252                         if ($result) {
253                                 $result = pg_query($link, "UPDATE ttrss_feeds SET last_updated = NOW()");
254                         }
255
256                 }
257
258                 pg_query("COMMIT");
259
260         }
261
262
263 ?>