]> git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/poche/Routing.class.php
working on registration support
[github/wallabag/wallabag.git] / inc / poche / Routing.class.php
1 <?php
2 /**
3 * wallabag, self hostable application allowing you to not miss any content anymore
4 *
5 * @category wallabag
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://opensource.org/licenses/MIT see COPYING file
9 */
10
11 class Routing
12 {
13 protected $wallabag;
14 protected $referer;
15 protected $view;
16 protected $action;
17 protected $id;
18 protected $url;
19 protected $file;
20 protected $defaultVars = array();
21 protected $vars = array();
22
23 public function __construct(Poche $wallabag)
24 {
25 $this->wallabag = $wallabag;
26 $this->_init();
27 }
28
29 private function _init()
30 {
31 # Parse GET & REFERER vars
32 $this->referer = empty($_SERVER['HTTP_REFERER']) ? '' : $_SERVER['HTTP_REFERER'];
33 $this->view = Tools::checkVar('view', 'home');
34 $this->action = Tools::checkVar('action');
35 $this->id = Tools::checkVar('id');
36 $_SESSION['sort'] = Tools::checkVar('sort', 'id');
37 $this->url = new Url((isset ($_GET['url'])) ? $_GET['url'] : '');
38 }
39
40 public function run()
41 {
42 # vars to _always_ send to templates
43 $this->defaultVars = array(
44 'referer' => $this->referer,
45 'view' => $this->view,
46 'poche_url' => Tools::getPocheUrl(),
47 'title' => _('wallabag, a read it later open source system'),
48 'token' => \Session::getToken(),
49 'theme' => $this->wallabag->tpl->getTheme()
50 );
51
52 $this->_launchAction();
53 $this->_defineTplInformation();
54
55 # because messages can be added in $poche->action(), we have to add this entry now (we can add it before)
56 $this->vars = array_merge($this->vars, array('messages' => $this->wallabag->messages->display('all', FALSE)));
57
58 $this->_render($this->file, $this->vars);
59 }
60
61 private function _defineTplInformation()
62 {
63 $tplFile = array();
64 $tplVars = array();
65
66 if (\Session::isLogged()) {
67 $this->wallabag->action($this->action, $this->url, $this->id);
68 $tplFile = Tools::getTplFile($this->view);
69 $tplVars = array_merge($this->vars, $this->wallabag->displayView($this->view, $this->id));
70 } elseif(ALLOW_REGISTER && isset($_GET['registerform'])) {
71 Tools::logm('register');
72 $tplFile = Tools::getTplFile('register');
73 } elseif (ALLOW_REGISTER && isset($_GET['register'])){
74 $this->wallabag->createNewUser($_POST['newusername'], $_POST['password4newuser']);
75 Tools::redirect();
76 } elseif(isset($_SERVER['PHP_AUTH_USER'])) {
77 if($this->wallabag->store->userExists($_SERVER['PHP_AUTH_USER'])) {
78 $this->wallabag->login($this->referer);
79 } else {
80 $this->wallabag->messages->add('e', _('login failed: user doesn\'t exist'));
81 Tools::logm('user doesn\'t exist');
82 $tplFile = Tools::getTplFile('login');
83 $tplVars['http_auth'] = 1;
84 }
85 } elseif(isset($_SERVER['REMOTE_USER'])) {
86 if($this->wallabag->store->userExists($_SERVER['REMOTE_USER'])) {
87 $this->wallabag->login($this->referer);
88 } else {
89 $this->wallabag->messages->add('e', _('login failed: user doesn\'t exist'));
90 Tools::logm('user doesn\'t exist');
91 $tplFile = Tools::getTplFile('login');
92 $tplVars['http_auth'] = 1;
93 }
94 } else {
95 $tplFile = Tools::getTplFile('login');
96 $tplVars['http_auth'] = 0;
97 \Session::logout();
98 }
99
100 $this->file = $tplFile;
101 $this->vars = array_merge($this->defaultVars, $tplVars);
102 }
103
104 private function _launchAction()
105 {
106 if (isset($_GET['login'])) {
107 // hello to you
108 $this->wallabag->login($this->referer);
109 } elseif (isset($_GET['feed']) && isset($_GET['user_id'])) {
110 $tag_id = (isset($_GET['tag_id']) ? intval($_GET['tag_id']) : 0);
111 $limit = (isset($_GET['limit']) ? intval($_GET['limit']) : 0);
112 $this->wallabag->generateFeeds($_GET['token'], filter_var($_GET['user_id'],FILTER_SANITIZE_NUMBER_INT), $tag_id, $_GET['type'], $limit);
113 } //elseif (ALLOW_REGISTER && isset($_GET['register'])) {
114 //$this->wallabag->register
115 //}
116
117 //allowed ONLY to logged in user
118 if (\Session::isLogged() === true)
119 {
120 if (isset($_GET['logout'])) {
121 // see you soon !
122 $this->wallabag->logout();
123 } elseif (isset($_GET['config'])) {
124 // update password
125 $this->wallabag->updatePassword($_POST['password'], $_POST['password_repeat']);
126 } elseif (isset($_GET['newuser'])) {
127 $this->wallabag->createNewUser($_POST['newusername'], $_POST['password4newuser']);
128 } elseif (isset($_GET['deluser'])) {
129 $this->wallabag->deleteUser($_POST['password4deletinguser']);
130 } elseif (isset($_GET['epub'])) {
131 $epub = new WallabagEpub($this->wallabag, $_GET['method'], $_GET['value']);
132 $epub->prepareData();
133 $epub->produceEpub();
134 } elseif (isset($_GET['mobi'])) {
135 $mobi = new WallabagMobi($this->wallabag, $_GET['method'], $_GET['value']);
136 $mobi->prepareData();
137 $mobi->produceMobi();
138 } elseif (isset($_GET['pdf'])) {
139 $pdf = new WallabagPDF($this->wallabag, $_GET['method'], $_GET['value']);
140 $pdf->prepareData();
141 $pdf->producePDF();
142 } elseif (isset($_GET['import'])) {
143 $import = $this->wallabag->import();
144 $tplVars = array_merge($this->vars, $import);
145 } elseif (isset($_GET['empty-cache'])) {
146 Tools::emptyCache();
147 } elseif (isset($_GET['export'])) {
148 $this->wallabag->export();
149 } elseif (isset($_GET['updatetheme'])) {
150 $this->wallabag->tpl->updateTheme($_POST['theme']);
151 } elseif (isset($_GET['updatelanguage'])) {
152 $this->wallabag->language->updateLanguage($_POST['language']);
153 } elseif (isset($_GET['uploadfile'])) {
154 $this->wallabag->uploadFile();
155 } elseif (isset($_GET['feed']) && isset($_GET['action']) && $_GET['action'] == 'generate') {
156 $this->wallabag->updateToken();
157 }
158 elseif (isset($_GET['plainurl']) && !empty($_GET['plainurl'])) {
159 $plainUrl = new Url(base64_encode($_GET['plainurl']));
160 $this->wallabag->action('add', $plainUrl);
161 }
162 }
163 }
164
165 public function _render($file, $vars)
166 {
167 echo $this->wallabag->tpl->render($file, $vars);
168 }
169 }