2013-02-26 10:09:41 +01:00
|
|
|
<?php
|
2015-09-14 20:54:13 +02:00
|
|
|
/**
|
2017-03-21 20:08:40 +01:00
|
|
|
* Shaarli - The personal, minimalist, super-fast, database free, bookmarking service.
|
2015-09-14 20:54:13 +02:00
|
|
|
*
|
|
|
|
* Friendly fork by the Shaarli community:
|
|
|
|
* - https://github.com/shaarli/Shaarli
|
|
|
|
*
|
|
|
|
* Original project by sebsauvage.net:
|
|
|
|
* - http://sebsauvage.net/wiki/doku.php?id=php:shaarli
|
|
|
|
* - https://github.com/sebsauvage/Shaarli
|
|
|
|
*
|
|
|
|
* Licence: http://www.opensource.org/licenses/zlib-license.php
|
|
|
|
*/
|
2015-08-04 18:31:16 +02:00
|
|
|
|
2016-07-28 22:54:33 +02:00
|
|
|
require_once 'inc/rain.tpl.class.php';
|
|
|
|
require_once __DIR__ . '/vendor/autoload.php';
|
|
|
|
|
2015-03-12 00:43:02 +01:00
|
|
|
// Shaarli library
|
2018-12-03 01:35:14 +01:00
|
|
|
require_once 'application/bookmark/LinkUtils.php';
|
2017-03-08 19:59:00 +01:00
|
|
|
require_once 'application/config/ConfigPlugin.php';
|
2018-12-03 00:34:53 +01:00
|
|
|
require_once 'application/http/HttpUtils.php';
|
|
|
|
require_once 'application/http/UrlUtils.php';
|
2015-07-11 01:29:12 +02:00
|
|
|
require_once 'application/TimeZone.php';
|
2015-03-12 00:43:02 +01:00
|
|
|
require_once 'application/Utils.php';
|
2018-12-03 01:10:39 +01:00
|
|
|
|
2020-07-22 18:12:10 +02:00
|
|
|
require_once __DIR__ . '/init.php';
|
|
|
|
|
2020-01-18 17:50:11 +01:00
|
|
|
use Shaarli\Config\ConfigManager;
|
|
|
|
use Shaarli\Container\ContainerBuilder;
|
|
|
|
use Shaarli\Languages;
|
2020-07-07 10:15:56 +02:00
|
|
|
use Shaarli\Security\CookieManager;
|
2020-01-18 17:50:11 +01:00
|
|
|
use Shaarli\Security\LoginManager;
|
|
|
|
use Shaarli\Security\SessionManager;
|
|
|
|
use Slim\App;
|
2015-03-12 00:43:02 +01:00
|
|
|
|
2016-06-09 20:04:02 +02:00
|
|
|
$conf = new ConfigManager();
|
2019-05-25 15:52:27 +02:00
|
|
|
|
|
|
|
// In dev mode, throw exception on any warning
|
|
|
|
if ($conf->get('dev.debug', false)) {
|
|
|
|
// See all errors (for debugging only)
|
|
|
|
error_reporting(-1);
|
|
|
|
|
2020-07-07 10:15:56 +02:00
|
|
|
set_error_handler(function ($errno, $errstr, $errfile, $errline, array $errcontext) {
|
2019-05-25 15:52:27 +02:00
|
|
|
throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-07-07 10:15:56 +02:00
|
|
|
$sessionManager = new SessionManager($_SESSION, $conf, session_save_path());
|
2020-07-22 18:12:10 +02:00
|
|
|
$sessionManager->initialize();
|
2020-07-07 10:15:56 +02:00
|
|
|
$cookieManager = new CookieManager($_COOKIE);
|
|
|
|
$loginManager = new LoginManager($conf, $sessionManager, $cookieManager);
|
2018-05-06 17:06:36 +02:00
|
|
|
$loginManager->generateStaySignedInToken($_SERVER['REMOTE_ADDR']);
|
2018-01-31 12:39:17 +01:00
|
|
|
|
2017-05-09 18:12:15 +02:00
|
|
|
// Sniff browser language and set date format accordingly.
|
|
|
|
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
|
|
|
|
autoLocale($_SERVER['HTTP_ACCEPT_LANGUAGE']);
|
|
|
|
}
|
|
|
|
|
|
|
|
new Languages(setlocale(LC_MESSAGES, 0), $conf);
|
|
|
|
|
2016-05-30 20:15:36 +02:00
|
|
|
$conf->setEmpty('general.timezone', date_default_timezone_get());
|
2019-05-25 15:52:27 +02:00
|
|
|
$conf->setEmpty('general.title', t('Shared bookmarks on '). escape(index_url($_SERVER)));
|
2020-07-22 18:12:10 +02:00
|
|
|
|
2016-12-07 11:58:25 +01:00
|
|
|
RainTPL::$tpl_dir = $conf->get('resource.raintpl_tpl').'/'.$conf->get('resource.theme').'/'; // template directory
|
2016-06-11 09:08:02 +02:00
|
|
|
RainTPL::$cache_dir = $conf->get('resource.raintpl_tmp'); // cache directory
|
2013-02-26 10:09:41 +01:00
|
|
|
|
2016-05-29 16:10:32 +02:00
|
|
|
date_default_timezone_set($conf->get('general.timezone', 'UTC'));
|
2016-05-29 14:26:23 +02:00
|
|
|
|
2020-07-22 18:12:10 +02:00
|
|
|
$loginManager->checkLoginState(client_ip_id($_SERVER));
|
2016-12-15 10:13:00 +01:00
|
|
|
|
2020-07-07 10:15:56 +02:00
|
|
|
$containerBuilder = new ContainerBuilder($conf, $sessionManager, $cookieManager, $loginManager);
|
2020-01-18 17:50:11 +01:00
|
|
|
$container = $containerBuilder->build();
|
|
|
|
$app = new App($container);
|
2016-12-15 10:13:00 +01:00
|
|
|
|
2020-07-22 18:12:10 +02:00
|
|
|
// Main Shaarli routes
|
2020-01-18 17:50:11 +01:00
|
|
|
$app->group('', function () {
|
2020-07-07 10:15:56 +02:00
|
|
|
$this->get('/install', '\Shaarli\Front\Controller\Visitor\InstallController:index')->setName('displayInstall');
|
|
|
|
$this->get('/install/session-test', '\Shaarli\Front\Controller\Visitor\InstallController:sessionTest');
|
|
|
|
$this->post('/install', '\Shaarli\Front\Controller\Visitor\InstallController:save')->setName('saveInstall');
|
|
|
|
|
2020-05-22 13:20:31 +02:00
|
|
|
/* -- PUBLIC --*/
|
2020-07-06 08:04:35 +02:00
|
|
|
$this->get('/', '\Shaarli\Front\Controller\Visitor\BookmarkListController:index');
|
|
|
|
$this->get('/shaare/{hash}', '\Shaarli\Front\Controller\Visitor\BookmarkListController:permalink');
|
|
|
|
$this->get('/login', '\Shaarli\Front\Controller\Visitor\LoginController:index')->setName('login');
|
2020-07-21 20:33:33 +02:00
|
|
|
$this->post('/login', '\Shaarli\Front\Controller\Visitor\LoginController:login')->setName('processLogin');
|
2020-06-13 13:08:01 +02:00
|
|
|
$this->get('/picture-wall', '\Shaarli\Front\Controller\Visitor\PictureWallController:index');
|
|
|
|
$this->get('/tags/cloud', '\Shaarli\Front\Controller\Visitor\TagCloudController:cloud');
|
|
|
|
$this->get('/tags/list', '\Shaarli\Front\Controller\Visitor\TagCloudController:list');
|
|
|
|
$this->get('/daily', '\Shaarli\Front\Controller\Visitor\DailyController:index');
|
2020-07-06 08:04:35 +02:00
|
|
|
$this->get('/daily-rss', '\Shaarli\Front\Controller\Visitor\DailyController:rss')->setName('rss');
|
|
|
|
$this->get('/feed/atom', '\Shaarli\Front\Controller\Visitor\FeedController:atom')->setName('atom');
|
2020-06-13 13:08:01 +02:00
|
|
|
$this->get('/feed/rss', '\Shaarli\Front\Controller\Visitor\FeedController:rss');
|
|
|
|
$this->get('/open-search', '\Shaarli\Front\Controller\Visitor\OpenSearchController:index');
|
|
|
|
|
|
|
|
$this->get('/add-tag/{newTag}', '\Shaarli\Front\Controller\Visitor\TagController:addTag');
|
|
|
|
$this->get('/remove-tag/{tag}', '\Shaarli\Front\Controller\Visitor\TagController:removeTag');
|
2020-07-27 12:56:59 +02:00
|
|
|
$this->get('/links-per-page', '\Shaarli\Front\Controller\Visitor\PublicSessionFilterController:linksPerPage');
|
2020-05-22 13:20:31 +02:00
|
|
|
|
|
|
|
/* -- LOGGED IN -- */
|
2020-06-13 13:08:01 +02:00
|
|
|
$this->get('/logout', '\Shaarli\Front\Controller\Admin\LogoutController:index');
|
|
|
|
$this->get('/admin/tools', '\Shaarli\Front\Controller\Admin\ToolsController:index');
|
|
|
|
$this->get('/admin/password', '\Shaarli\Front\Controller\Admin\PasswordController:index');
|
|
|
|
$this->post('/admin/password', '\Shaarli\Front\Controller\Admin\PasswordController:change');
|
|
|
|
$this->get('/admin/configure', '\Shaarli\Front\Controller\Admin\ConfigureController:index');
|
|
|
|
$this->post('/admin/configure', '\Shaarli\Front\Controller\Admin\ConfigureController:save');
|
|
|
|
$this->get('/admin/tags', '\Shaarli\Front\Controller\Admin\ManageTagController:index');
|
|
|
|
$this->post('/admin/tags', '\Shaarli\Front\Controller\Admin\ManageTagController:save');
|
2020-06-13 15:37:02 +02:00
|
|
|
$this->get('/admin/add-shaare', '\Shaarli\Front\Controller\Admin\ManageShaareController:addShaare');
|
|
|
|
$this->get('/admin/shaare', '\Shaarli\Front\Controller\Admin\ManageShaareController:displayCreateForm');
|
|
|
|
$this->get('/admin/shaare/{id:[0-9]+}', '\Shaarli\Front\Controller\Admin\ManageShaareController:displayEditForm');
|
|
|
|
$this->post('/admin/shaare', '\Shaarli\Front\Controller\Admin\ManageShaareController:save');
|
|
|
|
$this->get('/admin/shaare/delete', '\Shaarli\Front\Controller\Admin\ManageShaareController:deleteBookmark');
|
2020-06-13 19:40:32 +02:00
|
|
|
$this->get('/admin/shaare/visibility', '\Shaarli\Front\Controller\Admin\ManageShaareController:changeVisibility');
|
2020-06-15 08:15:40 +02:00
|
|
|
$this->get('/admin/shaare/{id:[0-9]+}/pin', '\Shaarli\Front\Controller\Admin\ManageShaareController:pinBookmark');
|
2020-06-27 12:08:26 +02:00
|
|
|
$this->patch(
|
|
|
|
'/admin/shaare/{id:[0-9]+}/update-thumbnail',
|
|
|
|
'\Shaarli\Front\Controller\Admin\ThumbnailsController:ajaxUpdate'
|
|
|
|
);
|
2020-06-17 16:04:18 +02:00
|
|
|
$this->get('/admin/export', '\Shaarli\Front\Controller\Admin\ExportController:index');
|
|
|
|
$this->post('/admin/export', '\Shaarli\Front\Controller\Admin\ExportController:export');
|
2020-06-17 19:08:02 +02:00
|
|
|
$this->get('/admin/import', '\Shaarli\Front\Controller\Admin\ImportController:index');
|
|
|
|
$this->post('/admin/import', '\Shaarli\Front\Controller\Admin\ImportController:import');
|
2020-06-20 15:14:24 +02:00
|
|
|
$this->get('/admin/plugins', '\Shaarli\Front\Controller\Admin\PluginsController:index');
|
|
|
|
$this->post('/admin/plugins', '\Shaarli\Front\Controller\Admin\PluginsController:save');
|
2020-06-21 12:21:31 +02:00
|
|
|
$this->get('/admin/token', '\Shaarli\Front\Controller\Admin\TokenController:getToken');
|
2020-06-27 12:08:26 +02:00
|
|
|
$this->get('/admin/thumbnails', '\Shaarli\Front\Controller\Admin\ThumbnailsController:index');
|
2020-06-13 13:08:01 +02:00
|
|
|
|
|
|
|
$this->get('/visibility/{visibility}', '\Shaarli\Front\Controller\Admin\SessionFilterController:visibility');
|
|
|
|
$this->get('/untagged-only', '\Shaarli\Front\Controller\Admin\SessionFilterController:untaggedOnly');
|
2020-01-18 17:50:11 +01:00
|
|
|
})->add('\Shaarli\Front\ShaarliMiddleware');
|
|
|
|
|
2020-07-22 18:12:10 +02:00
|
|
|
// REST API routes
|
|
|
|
$app->group('/api/v1', function () {
|
|
|
|
$this->get('/info', '\Shaarli\Api\Controllers\Info:getInfo')->setName('getInfo');
|
|
|
|
$this->get('/links', '\Shaarli\Api\Controllers\Links:getLinks')->setName('getLinks');
|
|
|
|
$this->get('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:getLink')->setName('getLink');
|
|
|
|
$this->post('/links', '\Shaarli\Api\Controllers\Links:postLink')->setName('postLink');
|
|
|
|
$this->put('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:putLink')->setName('putLink');
|
|
|
|
$this->delete('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:deleteLink')->setName('deleteLink');
|
|
|
|
|
|
|
|
$this->get('/tags', '\Shaarli\Api\Controllers\Tags:getTags')->setName('getTags');
|
|
|
|
$this->get('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:getTag')->setName('getTag');
|
|
|
|
$this->put('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:putTag')->setName('putTag');
|
|
|
|
$this->delete('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:deleteTag')->setName('deleteTag');
|
|
|
|
|
|
|
|
$this->get('/history', '\Shaarli\Api\Controllers\HistoryController:getHistory')->setName('getHistory');
|
|
|
|
})->add('\Shaarli\Api\ApiMiddleware');
|
|
|
|
|
2016-12-15 10:13:00 +01:00
|
|
|
$response = $app->run(true);
|
2018-08-13 12:21:10 +02:00
|
|
|
|
2020-07-06 08:04:35 +02:00
|
|
|
$app->respond($response);
|