index.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <?php
  2. if (file_exists("install") && !file_exists("config.php")) {
  3. header("Location: install/");
  4. }
  5. if (!file_exists("config.php")) {
  6. print "<b>Fatal Error</b>: You forgot to copy
  7. <b>config.php-dist</b> to <b>config.php</b> and edit it.\n";
  8. exit;
  9. }
  10. // we need a separate check here because functions.php might get parsed
  11. // incorrectly before 5.3 because of :: syntax.
  12. if (version_compare(PHP_VERSION, '5.3.0', '<')) {
  13. print "<b>Fatal Error</b>: PHP version 5.3.0 or newer required.\n";
  14. exit;
  15. }
  16. set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
  17. get_include_path());
  18. require_once "autoload.php";
  19. require_once "sessions.php";
  20. require_once "functions.php";
  21. require_once "sanity_check.php";
  22. require_once "version.php";
  23. require_once "config.php";
  24. require_once "db-prefs.php";
  25. require_once "lib/Mobile_Detect.php";
  26. $mobile = new Mobile_Detect();
  27. if (!init_plugins()) return;
  28. if (!$_REQUEST['mobile']) {
  29. if ($mobile->isTablet() && PluginHost::getInstance()->get_plugin("digest")) {
  30. header('Location: backend.php?op=digest');
  31. exit;
  32. } else if ($mobile->isMobile() && PluginHost::getInstance()->get_plugin("mobile")) {
  33. header('Location: backend.php?op=mobile');
  34. exit;
  35. } else if ($mobile->isMobile() && PluginHost::getInstance()->get_plugin("digest")) {
  36. header('Location: backend.php?op=digest');
  37. exit;
  38. }
  39. }
  40. login_sequence();
  41. header('Content-Type: text/html; charset=utf-8');
  42. ?>
  43. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  44. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  45. <html>
  46. <head>
  47. <title>Tiny Tiny RSS</title>
  48. <script type="text/javascript">
  49. var __ttrss_version = "<?php echo VERSION ?>"
  50. </script>
  51. <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
  52. <?php echo stylesheet_tag("css/layout.css"); ?>
  53. <?php if ($_SESSION["uid"]) {
  54. $theme = get_pref( "USER_CSS_THEME", $_SESSION["uid"], false);
  55. if ($theme && theme_valid("$theme")) {
  56. echo stylesheet_tag(get_theme_path($theme));
  57. } else {
  58. echo stylesheet_tag("themes/default.php");
  59. }
  60. }
  61. ?>
  62. <?php print_user_stylesheet() ?>
  63. <style type="text/css">
  64. <?php
  65. foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
  66. if (method_exists($p, "get_css")) {
  67. echo $p->get_css();
  68. }
  69. }
  70. ?>
  71. </style>
  72. <link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
  73. <link rel="icon" type="image/png" sizes="72x72" href="images/favicon-72px.png" />
  74. <script>
  75. dojoConfig = {
  76. async: true,
  77. cacheBust: new Date(),
  78. packages: [
  79. { name: "fox", location: "../../js" },
  80. ]
  81. };
  82. </script>
  83. <?php
  84. foreach (array("lib/prototype.js",
  85. "lib/scriptaculous/scriptaculous.js?load=effects,controls",
  86. "lib/dojo/dojo.js",
  87. "lib/dojo/tt-rss-layer.js",
  88. "errors.php?mode=js") as $jsfile) {
  89. echo javascript_tag($jsfile);
  90. } ?>
  91. <script type="text/javascript">
  92. require({cache:{}});
  93. <?php
  94. require_once 'lib/jshrink/Minifier.php';
  95. print get_minified_js(array("tt-rss",
  96. "functions", "feedlist", "viewfeed", "PluginHost"));
  97. foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
  98. if (method_exists($p, "get_js")) {
  99. echo "try {";
  100. echo JShrink\Minifier::minify($p->get_js());
  101. echo "} catch (e) {
  102. console.warn('failed to initialize plugin JS: $n');
  103. console.warn(e);
  104. }";
  105. }
  106. }
  107. init_js_translations();
  108. ?>
  109. </script>
  110. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  111. <meta name="referrer" content="no-referrer"/>
  112. <script type="text/javascript">
  113. Event.observe(window, 'load', function() {
  114. init();
  115. });
  116. </script>
  117. </head>
  118. <body id="ttrssMain" class="claro">
  119. <div id="overlay" style="display : block">
  120. <div id="overlay_inner">
  121. <div class="insensitive"><?php echo __("Loading, please wait...") ?></div>
  122. <div dojoType="dijit.ProgressBar" places="0" style="width : 300px" id="loading_bar"
  123. progress="0" maximum="100">
  124. </div>
  125. <noscript><br/><?php print_error('Javascript is disabled. Please enable it.') ?></noscript>
  126. </div>
  127. </div>
  128. <div id="notify" class="notify"></div>
  129. <div id="cmdline" style="display : none"></div>
  130. <div id="main" dojoType="dijit.layout.BorderContainer">
  131. <div id="feeds-holder" dojoType="dijit.layout.ContentPane" region="leading" style="width : 20%" splitter="true">
  132. <div id="feedlistLoading">
  133. <img src='images/indicator_tiny.gif'/>
  134. <?php echo __("Loading, please wait..."); ?></div>
  135. <div id="feedTree"></div>
  136. </div>
  137. <div dojoType="dijit.layout.BorderContainer" region="center" id="header-wrap" gutters="false">
  138. <div dojoType="dijit.layout.BorderContainer" region="center" id="content-wrap">
  139. <div id="toolbar" dojoType="dijit.layout.ContentPane" region="top">
  140. <div id="main-toolbar" dojoType="dijit.Toolbar">
  141. <?php
  142. foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_MAIN_TOOLBAR_BUTTON) as $p) {
  143. echo $p->hook_main_toolbar_button();
  144. }
  145. ?>
  146. <form id="headlines-toolbar" action="" onsubmit='return false'>
  147. </form>
  148. <form id="main_toolbar_form" action="" onsubmit='return false'>
  149. <select name="view_mode" title="<?php echo __('Show articles') ?>"
  150. onchange="viewModeChanged()"
  151. dojoType="dijit.form.Select">
  152. <option selected="selected" value="adaptive"><?php echo __('Adaptive') ?></option>
  153. <option value="all_articles"><?php echo __('All Articles') ?></option>
  154. <option value="marked"><?php echo __('Starred') ?></option>
  155. <option value="published"><?php echo __('Published') ?></option>
  156. <option value="unread"><?php echo __('Unread') ?></option>
  157. <option value="has_note"><?php echo __('With Note') ?></option>
  158. <!-- <option value="noscores"><?php echo __('Ignore Scoring') ?></option> -->
  159. </select>
  160. <select title="<?php echo __('Sort articles') ?>"
  161. onchange="viewModeChanged()"
  162. dojoType="dijit.form.Select" name="order_by">
  163. <option selected="selected" value="default"><?php echo __('Default') ?></option>
  164. <option value="feed_dates"><?php echo __('Newest first') ?></option>
  165. <option value="date_reverse"><?php echo __('Oldest first') ?></option>
  166. <option value="title"><?php echo __('Title') ?></option>
  167. </select>
  168. <div dojoType="dijit.form.ComboButton" onclick="catchupCurrentFeed()">
  169. <span><?php echo __('Mark as read') ?></span>
  170. <div dojoType="dijit.DropDownMenu">
  171. <div dojoType="dijit.MenuItem" onclick="catchupCurrentFeed('1day')">
  172. <?php echo __('Older than one day') ?>
  173. </div>
  174. <div dojoType="dijit.MenuItem" onclick="catchupCurrentFeed('1week')">
  175. <?php echo __('Older than one week') ?>
  176. </div>
  177. <div dojoType="dijit.MenuItem" onclick="catchupCurrentFeed('2week')">
  178. <?php echo __('Older than two weeks') ?>
  179. </div>
  180. </div>
  181. </div>
  182. </form>
  183. <div class="actionChooser">
  184. <?php
  185. foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_TOOLBAR_BUTTON) as $p) {
  186. echo $p->hook_toolbar_button();
  187. }
  188. ?>
  189. <button id="net-alert" dojoType="dijit.form.Button" style="display : none" disabled="true"
  190. title="<?php echo __("Communication problem with server.") ?>">
  191. <img src="images/error.png" />
  192. </button>
  193. <div dojoType="dijit.form.DropDownButton">
  194. <span><?php echo __('Actions...') ?></span>
  195. <div dojoType="dijit.Menu" style="display: none">
  196. <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcPrefs')"><?php echo __('Preferences...') ?></div>
  197. <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcSearch')"><?php echo __('Search...') ?></div>
  198. <div dojoType="dijit.MenuItem" disabled="1"><?php echo __('Feed actions:') ?></div>
  199. <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddFeed')"><?php echo __('Subscribe to feed...') ?></div>
  200. <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcEditFeed')"><?php echo __('Edit this feed...') ?></div>
  201. <!-- <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcRescoreFeed')"><?php echo __('Rescore feed') ?></div> -->
  202. <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcRemoveFeed')"><?php echo __('Unsubscribe') ?></div>
  203. <div dojoType="dijit.MenuItem" disabled="1"><?php echo __('All feeds:') ?></div>
  204. <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcCatchupAll')"><?php echo __('Mark as read') ?></div>
  205. <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcShowOnlyUnread')"><?php echo __('(Un)hide read feeds') ?></div>
  206. <div dojoType="dijit.MenuItem" disabled="1"><?php echo __('Other actions:') ?></div>
  207. <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcToggleWidescreen')"><?php echo __('Toggle widescreen mode') ?></div>
  208. <!-- <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddLabel')"><?php echo __('Create label...') ?></div>
  209. <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddFilter')"><?php echo __('Create filter...') ?></div> -->
  210. <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcHKhelp')"><?php echo __('Keyboard shortcuts help') ?></div>
  211. <?php
  212. foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ACTION_ITEM) as $p) {
  213. echo $p->hook_action_item();
  214. }
  215. ?>
  216. <?php if (!$_SESSION["hide_logout"]) { ?>
  217. <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcLogout')"><?php echo __('Logout') ?></div>
  218. <?php } ?>
  219. </div>
  220. </div>
  221. <button id="updatesIcon" dojoType="dijit.form.Button" style="display : none">
  222. <img src="images/new_version.png" title="<?php echo __('Updates are available from Git.') ?>"/>
  223. </button>
  224. </div>
  225. </div> <!-- toolbar -->
  226. </div> <!-- toolbar pane -->
  227. <div id="headlines-wrap-inner" dojoType="dijit.layout.BorderContainer" region="center">
  228. <div id="floatingTitle" style="visibility : hidden"></div>
  229. <div id="headlines-frame" dojoType="dijit.layout.ContentPane"
  230. onscroll="headlines_scroll_handler(this)" region="center">
  231. <div id="headlinesInnerContainer">
  232. <div class="whiteBox"><?php echo __('Loading, please wait...') ?></div>
  233. </div>
  234. </div>
  235. <div id="content-insert" dojoType="dijit.layout.ContentPane" region="bottom"
  236. style="height : 50%" splitter="true"></div>
  237. </div>
  238. </div>
  239. </div>
  240. </div>
  241. </body>
  242. </html>