forked from fossar/selfoss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
97 lines (83 loc) · 4.12 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
require(__DIR__.'/common.php');
// Load custom language
$lang = $f3->get('language');
if($lang!='0' && $lang!='')
$f3->set('LANGUAGE', $lang);
// init authentication
$f3->set('auth', new \helpers\Authentication());
// define js files
$js=array(
'public/js/jquery-2.1.1.min.js',
'public/js/jquery-ui.js',
'public/js/jquery.mCustomScrollbar.min.js',
'public/js/jquery.mousewheel.min.js',
'public/js/lazy-image-loader.js',
'public/js/spectrum.js',
'public/js/jquery.hotkeys.js',
'public/js/selfoss-base.js',
'public/js/selfoss-shares.js',
'public/js/selfoss-events.js',
'public/js/selfoss-events-navigation.js',
'public/js/selfoss-events-search.js',
'public/js/selfoss-events-entries.js',
'public/js/selfoss-events-entriestoolbar.js',
'public/js/selfoss-events-sources.js',
'public/js/selfoss-shortcuts.js',
'public/js/jquery.fancybox.pack.js'
);
if(file_exists("user.js"))
$js[] = "user.js";
$f3->set('js', $js);
// define css files
$css = array(
'public/css/jquery.mCustomScrollbar.css',
'public/css/jquery.fancybox.css',
'public/css/spectrum.css',
'public/css/reset.css',
'public/css/style.css'
);
if(file_exists("user.css"))
$css[] = "user.css";
$f3->set('css', $css);
// define routes
// all users
$f3->route('GET /', 'controllers\Index->home'); // html
$f3->route('POST /', 'controllers\Index->home'); // html
$f3->route('GET /password', 'controllers\Index->password'); // html
$f3->route('POST /password', 'controllers\Index->password'); // html
$f3->route('GET /login', 'controllers\Index->login'); // json
$f3->route('GET /logout', 'controllers\Index->logout'); // json
$f3->route('GET /update', 'controllers\Index->update'); // text
$f3->route('GET /badge', 'controllers\Index->badge'); // xml
$f3->route('GET /win8notifs', 'controllers\Index->win8Notifications'); // xml
// only for loggedin users or on public mode
$f3->route('GET /rss', 'controllers\Rss->rss'); // rss
$f3->route('GET /feed', 'controllers\Rss->rss'); // rss
$f3->route('GET /items', 'controllers\Items->listItems'); // json
$f3->route('GET /tags', 'controllers\Tags->listTags'); // json
$f3->route('GET /tagslist', 'controllers\Tags->tagslist'); // html
$f3->route('GET /stats', 'controllers\Items->stats'); // json
$f3->route('GET /sources/stats', 'controllers\Sources->stats'); // json
// only loggedin users
$f3->route('POST /mark/@item', 'controllers\Items->mark'); // json
$f3->route('POST /mark', 'controllers\Items->mark'); // json
$f3->route('POST /unmark/@item', 'controllers\Items->unmark'); // json
$f3->route('POST /starr/@item', 'controllers\Items->starr'); // json
$f3->route('POST /unstarr/@item', 'controllers\Items->unstarr'); // json
$f3->route('GET /source/params', 'controllers\Sources->params'); // html
$f3->route('GET /sources', 'controllers\Sources->show'); // html
$f3->route('GET /source', 'controllers\Sources->add'); // html
$f3->route('GET /sources/list', 'controllers\Sources->listSources'); // json
$f3->route('GET /sources/stats', 'controllers\Sources->sourcesStats'); // json
$f3->route('POST /source/@id', 'controllers\Sources->write'); // json
$f3->route('POST /source', 'controllers\Sources->write'); // json
$f3->route('DELETE /source/@id', 'controllers\Sources->remove'); // json
$f3->route('POST /source/delete/@id', 'controllers\Sources->remove'); // json
$f3->route('GET /sources/spouts', 'controllers\Sources->spouts'); // json
$f3->route('POST /tags/color', 'controllers\Tags->color'); // json
$f3->route('GET /opml', 'controllers\Opml->show'); // html
$f3->route('POST /opml', 'controllers\Opml->add'); // html
$f3->route('GET /opmlexport', 'controllers\Opml->export'); // xml
// dispatch
$f3->run();