]> git.agnieray.net Git - galette.git/blob - galette/includes/routes/public_pages.routes.php
Remove 'svn' lines
[galette.git] / galette / includes / routes / public_pages.routes.php
1 <?php
2
3 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
4
5 /**
6 * Public pages routes
7 *
8 * PHP version 5
9 *
10 * Copyright © 2014 The Galette Team
11 *
12 * This file is part of Galette (http://galette.tuxfamily.org).
13 *
14 * Galette is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation, either version 3 of the License, or
17 * (at your option) any later version.
18 *
19 * Galette is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with Galette. If not, see <http://www.gnu.org/licenses/>.
26 *
27 * @category Routes
28 * @package Galette
29 *
30 * @author Johan Cwiklinski <johan@x-tnd.be>
31 * @copyright 2014 The Galette Team
32 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL License 3.0 or (at your option) any later version
33 * @link http://galette.tuxfamily.org
34 * @since 0.8.2dev 2014-11-11
35 */
36
37 use Galette\Controllers\Crud;
38
39 use Galette\Repository\Members;
40 use Galette\Filters\MembersList;
41
42 $showPublicPages = function ($request, $response, $next) use ($container) {
43 $login = $container->login;
44 $preferences = $container->preferences;
45
46 if (!$preferences->showPublicPages($login)) {
47 $this->flash->addMessage('error', _T("Unauthorized"));
48
49 return $response
50 ->withStatus(403)
51 ->withHeader(
52 'Location',
53 $this->router->pathFor('slash')
54 );
55 }
56
57 return $next($request, $response);
58 };
59
60 $app->group('/public', function () {
61 //public members list
62 $this->get(
63 '/{type:list|trombi}[/{option:page|order}/{value:\d+}]',
64 Crud\MembersController::class . ':publicList'
65 )->setName('publicList');
66
67 //members list filtering
68 $this->post(
69 '/{type:list|trombi}/filter[/{from}]',
70 Crud\MembersController::class . ':filterPublicList'
71 )->setName('filterPublicList');
72
73 $this->get(
74 '/members[/{option:page|order}/{value:\d+}]',
75 function ($request, $response, $args = []) {
76 $args['type'] = 'list';
77 return $response
78 ->withStatus(301)
79 ->withHeader('Location', $this->router->pathFor('publicList', $args));
80 }
81 );
82
83 $this->get(
84 '/trombinoscope',
85 function ($request, $response, $args = []) {
86 $args['type'] = 'trombi';
87 return $response
88 ->withStatus(301)
89 ->withHeader('Location', $this->router->pathFor('publicList', $args));
90 }
91 );
92 })->add($showPublicPages);