1 | <?
|
---|
2 |
|
---|
3 | header("Content-Type: text/xml");
|
---|
4 |
|
---|
5 | include_once('../global.php');
|
---|
6 | include_once('rss_generator.php');
|
---|
7 | include_once('../is/db.php');
|
---|
8 | DB_Init('localhost','root','','is');
|
---|
9 |
|
---|
10 | $NewsCount = 15;
|
---|
11 |
|
---|
12 | $Items = array();
|
---|
13 | $Category = '';
|
---|
14 | $CategoryOption = '';
|
---|
15 | $CategoryOptionURL = '';
|
---|
16 | $CategoryName = '';
|
---|
17 |
|
---|
18 | // Prepare WHERE condition
|
---|
19 | $Where = '';
|
---|
20 | if(array_key_exists('select', $_GET))
|
---|
21 | {
|
---|
22 | $Parts = explode('-', addslashes($_GET['select']));
|
---|
23 | foreach($Parts as $Part)
|
---|
24 | {
|
---|
25 | $Where .= ' AND (category='.($Part*1).')';
|
---|
26 | }
|
---|
27 | $CategoryOption = 'WHERE category='.$Category.' ';
|
---|
28 | $CategoryOptionURL = '?category='.$Category;
|
---|
29 | $CategoryName = $NewsCategoryNames[$Category];
|
---|
30 | }
|
---|
31 |
|
---|
32 | // Get category names
|
---|
33 | $CategoryName = '';
|
---|
34 | DB_Select('news_category', '*', '1'.$Where);
|
---|
35 | while($Category = DB_Row())
|
---|
36 | {
|
---|
37 | $CategoryName .= ','.$Category['caption'];
|
---|
38 | }
|
---|
39 | $CategoryName = substr($CategoryName, 1);
|
---|
40 |
|
---|
41 | // Update news from discussion forum
|
---|
42 | $ForumCategory = 4;
|
---|
43 | DB_Init('localhost', 'root', '', 'forum');
|
---|
44 | DB_Query('SELECT * FROM posts WHERE 1 ORDER BY post_time DESC LIMIT 0,'.$NewsCount);
|
---|
45 | $Index = 0;
|
---|
46 | while($Row2 = DB_Row())
|
---|
47 | {
|
---|
48 | DB_Save();
|
---|
49 | DB_Query('SELECT * FROM posts_text WHERE post_id='.$Row2['post_id']);
|
---|
50 | $Row = DB_Row();
|
---|
51 | $Row['post_text'] = StrTr($Row['post_text'], "\x8A\x8D\x8E\x9A\x9D\x9E", "\xA9\xAB\xAE\xB9\xBB\xBE");
|
---|
52 | $Row['post_text'] = str_replace("\n","<br>", $Row['post_text']);
|
---|
53 | $Row['post_subject'] = StrTr($Row['post_subject'], "\x8A\x8D\x8E\x9A\x9D\x9E", "\xA9\xAB\xAE\xB9\xBB\xBE");
|
---|
54 | DB_Query('SELECT * FROM users WHERE user_id='.$Row2['poster_id']);
|
---|
55 | $Row3 = DB_Row();
|
---|
56 | DB_Query('SELECT * FROM topics WHERE topic_id='.$Row2['topic_id']);
|
---|
57 | $Row4 = DB_Row();
|
---|
58 | $Row4['topic_title'] = StrTr($Row4['topic_title'], "\x8A\x8D\x8E\x9A\x9D\x9E", "\xA9\xAB\xAE\xB9\xBB\xBE");
|
---|
59 | $Index = $Index + 1;
|
---|
60 | DB_Load();
|
---|
61 |
|
---|
62 | $Title = $Row4['topic_title'].'-'.$Row['post_subject'];
|
---|
63 | $Content = Row['post_text'];
|
---|
64 | $Date = $Row2['post_time'];
|
---|
65 | DB_Select('news', '*', 'WHERE category='.$ForumCategory.' AND title="'.$Title.'" AND content="'.$Content.'" AND author="'.$Author.'" AND date="'.$Date.'"');
|
---|
66 | if(DB_NumRows() == 0) DB_Insert('news', array('category' => $ForumCategory, 'title' => $Title, 'content' => $Content, 'date' => );
|
---|
67 | }
|
---|
68 | DB_Init('localhost', 'root', '', 'is');
|
---|
69 |
|
---|
70 | // Get news from database by selected categories
|
---|
71 | DB_Query('SELECT title,content,UNIX_TIMESTAMP(date),author FROM news WHERE 1'.$Where.' ORDER BY id DESC LIMIT 0,'.$NewsCount);
|
---|
72 | while($Row = DB_Row())
|
---|
73 | {
|
---|
74 | $Items[] = array(
|
---|
75 | 'Title' => $Row['title'],
|
---|
76 | 'Link' => 'http://centrala.zdechov.net/aktuality/index.php',
|
---|
77 | 'Description' => $Row['content']." (".$Row['author'].")",
|
---|
78 | 'Time' => $Row['UNIX_TIMESTAMP(date)'],
|
---|
79 | );
|
---|
80 | }
|
---|
81 |
|
---|
82 | echo(GenerateRSS(array(
|
---|
83 | 'Title' => 'Aktuality ZdìchovNET: '.$CategoryName,
|
---|
84 | 'Link' => 'http://centrala.zdechov.net/',
|
---|
85 | 'Description' => 'Aktuality komunitní poèítaèové sítì ZdìchovNET',
|
---|
86 | 'WebmasterEmail' => 'robie@centrum.cz',
|
---|
87 | 'Items' => $Items)));
|
---|
88 | ?>
|
---|