]> git.wh0rd.org - tt-rss.git/blob - mobile/tt-rss.php
11316d4d3cfe4bace1f2fea1236111f253d3037f
[tt-rss.git] / mobile / tt-rss.php
1 <?php
2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
3
4 require_once "../config.php";
5 require_once "functions.php";
6 require_once "../functions.php";
7
8 require_once "../sessions.php";
9
10 require_once "../version.php";
11 require_once "../config.php";
12 require_once "../db-prefs.php";
13
14 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
15
16 if (DB_TYPE == "pgsql") {
17 pg_query("set client_encoding = 'UTF-8'");
18 pg_set_client_encoding("UNICODE");
19 } else {
20 if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
21 db_query($link, "SET NAMES " . MYSQL_CHARSET);
22 // db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
23 }
24 }
25
26 login_sequence($link, true);
27
28 /* perform various redirect-needing subops */
29
30 $subop = db_escape_string($_GET["subop"]);
31 $go = $_GET["go"];
32
33 if ($subop == "tc" && !$go) {
34
35 $cat_id = db_escape_string($_GET["id"]);
36
37 if ($cat_id != 0) {
38 db_query($link, "UPDATE ttrss_feed_categories SET
39 collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " .
40 $_SESSION["uid"]);
41 } else {
42 if ($_COOKIE["ttrss_vf_uclps"] != 1) {
43 setcookie("ttrss_vf_uclps", 1);
44 } else {
45 setcookie("ttrss_vf_uclps", 0);
46 }
47 }
48
49 header("Location: tt-rss.php");
50 return;
51 }
52
53 $ts_id = db_escape_string($_GET["ts"]);
54
55 if ($go == "vf" && $ts_id) {
56
57 toggleMarked($link, $ts_id);
58
59 $query_string = preg_replace("/&ts=[0-9]*/", "", $_SERVER["QUERY_STRING"]);
60 header("Location: tt-rss.php?$query_string");
61 return;
62 }
63
64 $tp_id = db_escape_string($_GET["tp"]);
65
66 if ($go == "vf" && $tp_id) {
67
68 togglePublished($link, $tp_id);
69
70 $query_string = preg_replace("/&tp=[0-9]*/", "", $_SERVER["QUERY_STRING"]);
71 header("Location: tt-rss.php?$query_string");
72 return;
73 }
74
75 $sop = db_escape_string($_GET["sop"]);
76
77 if ($sop && $go == "view") {
78 $a_id = db_escape_string($_GET["id"]);
79
80 if ($a_id) {
81
82 if ($sop == "tp") {
83 togglePublished($link, $a_id);
84 }
85
86 if ($sop == "ts") {
87 toggleMarked($link, $a_id);
88 }
89
90 $query_string = preg_replace("/&sop=t[sp]/", "", $_SERVER["QUERY_STRING"]);
91 header("Location: tt-rss.php?$query_string");
92 }
93 }
94
95 ?>
96 <html>
97 <head>
98 <title>Tiny Tiny RSS - Mobile</title>
99 <link rel="stylesheet" type="text/css" href="mobile.css">
100 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
101 <script type="text/javascript" src="tt-rss.js"></script>
102
103 <?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
104 <?php if ($user_css_url) { ?>
105 <link rel="stylesheet" type="text/css" href="<?php echo $user_css_url ?>"/>
106 <?php } ?>
107 </head>
108 <body id="ttrssMobile">
109
110 <div id="content">
111 <?php
112 if (!$go) {
113 render_feeds_list($link);
114 } else if ($go == "vf") {
115 render_headlines($link);
116 } else if ($go == "view") {
117 render_article($link);
118 } else if ($go == "sform") {
119 render_search_form($link, $_GET["aid"], $_GET["ic"]);
120 } else {
121 print __("Internal error: Function not implemented");
122 }
123
124 ?>
125 </div>
126
127 <?php if (!$go) { ?>
128
129 <div id="footer">
130 <a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a>
131 <?php if (!defined('HIDE_VERSION')) { ?>
132 v<?php echo VERSION ?>
133 <?php } ?>
134 &copy; 2005-2008 Andrew Dolgov
135 </div>
136
137 <?php } ?>
138
139 </body>
140 </html>