ttrss/index.php

296 lines
9.7 KiB
PHP
Raw Normal View History

2011-12-11 20:59:25 +01:00
<?php
2013-03-26 19:38:05 +01:00
if (file_exists("install") && !file_exists("config.php")) {
header("Location: install/");
}
2011-12-12 12:19:34 +01:00
if (!file_exists("config.php")) {
print "<b>Fatal Error</b>: You forgot to copy
<b>config.php-dist</b> to <b>config.php</b> and edit it.\n";
exit;
}
// we need a separate check here because functions.php might get parsed
// incorrectly before 5.3 because of :: syntax.
2018-08-13 15:41:47 +02:00
if (version_compare(PHP_VERSION, '5.6.0', '<')) {
print "<b>Fatal Error</b>: PHP version 5.6.0 or newer required. You're using " . PHP_VERSION . ".\n";
exit;
}
set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
get_include_path());
2011-12-11 20:59:25 +01:00
2013-04-17 13:36:34 +02:00
require_once "autoload.php";
2011-12-11 20:59:25 +01:00
require_once "sessions.php";
require_once "functions.php";
2011-12-11 20:59:25 +01:00
require_once "sanity_check.php";
require_once "version.php";
require_once "config.php";
require_once "db-prefs.php";
require_once "lib/Mobile_Detect.php";
$mobile = new Mobile_Detect();
2013-04-17 14:23:15 +02:00
if (!init_plugins()) return;
2012-12-24 07:16:01 +01:00
2012-06-29 11:11:39 +02:00
if (!$_REQUEST['mobile']) {
2013-04-18 10:27:34 +02:00
if ($mobile->isTablet() && PluginHost::getInstance()->get_plugin("digest")) {
2012-12-24 07:16:01 +01:00
header('Location: backend.php?op=digest');
2012-06-29 11:11:39 +02:00
exit;
2013-04-18 10:27:34 +02:00
} else if ($mobile->isMobile() && PluginHost::getInstance()->get_plugin("mobile")) {
2013-03-26 16:02:07 +01:00
header('Location: backend.php?op=mobile');
exit;
2013-04-18 10:27:34 +02:00
} else if ($mobile->isMobile() && PluginHost::getInstance()->get_plugin("digest")) {
header('Location: backend.php?op=digest');
exit;
2012-06-29 11:11:39 +02:00
}
}
2011-12-11 20:59:25 +01:00
2013-04-17 14:23:15 +02:00
login_sequence();
2011-12-11 20:59:25 +01:00
header('Content-Type: text/html; charset=utf-8');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Tiny Tiny RSS</title>
<meta name="viewport" content="initial-scale=1,width=device-width" />
<script type="text/javascript">
var __ttrss_version = "<?php echo VERSION ?>"
</script>
<?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
2011-12-11 20:59:25 +01:00
<?php if ($_SESSION["uid"]) {
2018-08-24 16:23:46 +02:00
$theme = get_pref("USER_CSS_THEME", false, false);
if ($theme && theme_valid("$theme")) {
echo stylesheet_tag(get_theme_path($theme));
} else {
2017-12-03 11:10:25 +01:00
echo stylesheet_tag("css/default.css");
}
}
?>
2013-04-17 14:23:15 +02:00
<?php print_user_stylesheet() ?>
2011-12-11 20:59:25 +01:00
<style type="text/css">
<?php
2013-04-18 10:27:34 +02:00
foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
if (method_exists($p, "get_css")) {
echo $p->get_css();
}
}
?>
</style>
2011-12-11 20:59:25 +01:00
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
2013-03-21 16:09:13 +01:00
<link rel="icon" type="image/png" sizes="72x72" href="images/favicon-72px.png" />
2011-12-11 20:59:25 +01:00
<script>
dojoConfig = {
async: true,
2017-01-22 11:43:32 +01:00
cacheBust: new Date(),
packages: [
{ name: "fox", location: "../../js" },
]
};
</script>
<?php
foreach (array("lib/prototype.js",
"lib/scriptaculous/scriptaculous.js?load=effects,controls",
"lib/dojo/dojo.js",
"lib/dojo/tt-rss-layer.js",
"errors.php?mode=js") as $jsfile) {
echo javascript_tag($jsfile);
2011-12-11 20:59:25 +01:00
} ?>
2011-12-11 20:59:25 +01:00
2011-12-21 09:15:03 +01:00
<script type="text/javascript">
2018-03-08 16:33:42 +01:00
'use strict';
require({cache:{}});
2011-12-21 09:15:03 +01:00
<?php
2017-12-05 05:09:01 +01:00
print get_minified_js(["tt-rss.js",
2018-12-02 15:18:59 +01:00
"functions.js", "PluginHost.js"]);
2018-03-08 16:41:03 +01:00
?>
</script>
<script type="text/javascript">
<?php
2013-04-18 10:27:34 +02:00
foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
2012-12-23 11:52:18 +01:00
if (method_exists($p, "get_js")) {
2016-08-10 11:23:35 +02:00
echo "try {";
2013-03-18 07:45:04 +01:00
echo JShrink\Minifier::minify($p->get_js());
2016-08-10 11:23:35 +02:00
echo "} catch (e) {
console.warn('failed to initialize plugin JS: $n');
console.warn(e);
}";
2011-12-21 09:15:03 +01:00
}
}
init_js_translations();
2011-12-21 09:15:03 +01:00
?>
</script>
2011-12-11 20:59:25 +01:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
2016-06-03 11:08:03 +02:00
<meta name="referrer" content="no-referrer"/>
2011-12-11 20:59:25 +01:00
<script type="text/javascript">
Event.observe(window, 'load', function() {
2018-12-01 15:42:21 +01:00
App.init();
2011-12-11 20:59:25 +01:00
});
</script>
</head>
2017-12-03 10:49:40 +01:00
<body class="claro ttrss_main">
2011-12-11 20:59:25 +01:00
<div id="overlay" style="display : block">
<div id="overlay_inner">
<div class="insensitive"><?php echo __("Loading, please wait...") ?></div>
<div dojoType="dijit.ProgressBar" places="0" style="width : 300px" id="loading_bar"
progress="0" maximum="100">
</div>
<noscript><br/><?php print_error('Javascript is disabled. Please enable it.') ?></noscript>
</div>
</div>
<div id="notify" class="notify"></div>
2011-12-11 20:59:25 +01:00
<div id="cmdline" style="display : none"></div>
<div id="main" dojoType="dijit.layout.BorderContainer">
<div id="feeds-holder" dojoType="dijit.layout.ContentPane" region="leading" style="width : 20%" splitter="true">
<div id="feedlistLoading">
<img src='images/indicator_tiny.gif'/>
<?php echo __("Loading, please wait..."); ?></div>
<div id="feedTree"></div>
</div>
<div dojoType="dijit.layout.BorderContainer" region="center" id="header-wrap" gutters="false">
2013-02-06 08:09:45 +01:00
<div dojoType="dijit.layout.BorderContainer" region="center" id="content-wrap">
2011-12-11 20:59:25 +01:00
<div id="toolbar" dojoType="dijit.layout.ContentPane" region="top">
<div id="main-toolbar" dojoType="dijit.Toolbar">
<?php
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_MAIN_TOOLBAR_BUTTON) as $p) {
echo $p->hook_main_toolbar_button();
}
?>
2014-01-27 19:03:42 +01:00
<form id="headlines-toolbar" action="" onsubmit='return false'>
</form>
2011-12-11 20:59:25 +01:00
<form id="main_toolbar_form" action="" onsubmit='return false'>
<select name="view_mode" title="<?php echo __('Show articles') ?>"
2018-12-01 15:42:21 +01:00
onchange="App.onViewModeChanged()"
2011-12-11 20:59:25 +01:00
dojoType="dijit.form.Select">
<option selected="selected" value="adaptive"><?php echo __('Adaptive') ?></option>
<option value="all_articles"><?php echo __('All Articles') ?></option>
<option value="marked"><?php echo __('Starred') ?></option>
<option value="published"><?php echo __('Published') ?></option>
<option value="unread"><?php echo __('Unread') ?></option>
2013-03-27 18:35:16 +01:00
<option value="has_note"><?php echo __('With Note') ?></option>
2011-12-11 20:59:25 +01:00
<!-- <option value="noscores"><?php echo __('Ignore Scoring') ?></option> -->
</select>
<select title="<?php echo __('Sort articles') ?>"
2018-12-01 15:42:21 +01:00
onchange="App.onViewModeChanged()"
2011-12-11 20:59:25 +01:00
dojoType="dijit.form.Select" name="order_by">
<option selected="selected" value="default"><?php echo __('Default') ?></option>
<option value="feed_dates"><?php echo __('Newest first') ?></option>
<option value="date_reverse"><?php echo __('Oldest first') ?></option>
2013-04-04 18:44:55 +02:00
<option value="title"><?php echo __('Title') ?></option>
2011-12-11 20:59:25 +01:00
</select>
<div dojoType="dijit.form.ComboButton" onclick="Feeds.catchupCurrent()">
<span><?php echo __('Mark as read') ?></span>
<div dojoType="dijit.DropDownMenu">
<div dojoType="dijit.MenuItem" onclick="Feeds.catchupCurrent('1day')">
<?php echo __('Older than one day') ?>
</div>
<div dojoType="dijit.MenuItem" onclick="Feeds.catchupCurrent('1week')">
<?php echo __('Older than one week') ?>
</div>
<div dojoType="dijit.MenuItem" onclick="Feeds.catchupCurrent('2week')">
<?php echo __('Older than two weeks') ?>
</div>
</div>
</div>
2011-12-11 20:59:25 +01:00
</form>
<div class="actionChooser">
<?php
2013-04-18 10:27:34 +02:00
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_TOOLBAR_BUTTON) as $p) {
echo $p->hook_toolbar_button();
}
?>
<button id="net-alert" dojoType="dijit.form.Button" style="display : none" disabled="true"
title="<?php echo __("Communication problem with server.") ?>">
<img src="images/error.png" />
</button>
2011-12-11 20:59:25 +01:00
<div dojoType="dijit.form.DropDownButton">
<span><?php echo __('Actions...') ?></span>
<div dojoType="dijit.Menu" style="display: none">
2018-12-01 19:51:00 +01:00
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcPrefs')"><?php echo __('Preferences...') ?></div>
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcSearch')"><?php echo __('Search...') ?></div>
2011-12-11 20:59:25 +01:00
<div dojoType="dijit.MenuItem" disabled="1"><?php echo __('Feed actions:') ?></div>
2018-12-01 19:51:00 +01:00
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcAddFeed')"><?php echo __('Subscribe to feed...') ?></div>
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcEditFeed')"><?php echo __('Edit this feed...') ?></div>
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcRemoveFeed')"><?php echo __('Unsubscribe') ?></div>
2011-12-11 20:59:25 +01:00
<div dojoType="dijit.MenuItem" disabled="1"><?php echo __('All feeds:') ?></div>
2018-12-01 19:51:00 +01:00
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcCatchupAll')"><?php echo __('Mark as read') ?></div>
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcShowOnlyUnread')"><?php echo __('(Un)hide read feeds') ?></div>
2011-12-11 20:59:25 +01:00
<div dojoType="dijit.MenuItem" disabled="1"><?php echo __('Other actions:') ?></div>
2018-12-01 19:51:00 +01:00
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcToggleWidescreen')"><?php echo __('Toggle widescreen mode') ?></div>
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcHKhelp')"><?php echo __('Keyboard shortcuts help') ?></div>
<?php
2013-04-18 10:27:34 +02:00
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ACTION_ITEM) as $p) {
echo $p->hook_action_item();
}
?>
<?php if (!$_SESSION["hide_logout"]) { ?>
2018-12-01 19:51:00 +01:00
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcLogout')"><?php echo __('Logout') ?></div>
<?php } ?>
2011-12-11 20:59:25 +01:00
</div>
</div>
<button id="updatesIcon" dojoType="dijit.form.Button" style="display : none">
<img src="images/new_version.png" title="<?php echo __('Updates are available from Git.') ?>"/>
</button>
2011-12-11 20:59:25 +01:00
</div>
</div> <!-- toolbar -->
</div> <!-- toolbar pane -->
<div id="headlines-wrap-inner" dojoType="dijit.layout.BorderContainer" region="center">
2018-12-01 20:08:04 +01:00
<div id="floatingTitle" style="display : none"></div>
<div id="headlines-frame" dojoType="dijit.layout.ContentPane" tabindex="0"
region="center">
2011-12-11 20:59:25 +01:00
<div id="headlinesInnerContainer">
<div class="whiteBox"><?php echo __('Loading, please wait...') ?></div>
</div>
</div>
<div id="content-insert" dojoType="dijit.layout.ContentPane" region="bottom"
style="height : 50%" splitter="true"></div>
</div>
</div>
</div>
</div>
</body>
</html>