Merge remote branch 'origin/master' into account
[platal.git] / modules / xnet.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2010 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22 class XnetModule extends PLModule
23 {
24 function handlers()
25 {
26 return array(
27 'index' => $this->make_hook('index', AUTH_PUBLIC),
28 'exit' => $this->make_hook('exit', AUTH_PUBLIC),
29
30 'admin' => $this->make_hook('admin', AUTH_MDP, 'admin'),
31 'groups' => $this->make_hook('groups', AUTH_PUBLIC),
32 'groupes.php' => $this->make_hook('groups2', AUTH_PUBLIC),
33 'plan' => $this->make_hook('plan', AUTH_PUBLIC),
34 'photo' => $this->make_hook('photo', AUTH_MDP),
35 'autologin' => $this->make_hook('autologin', AUTH_MDP),
36 );
37 }
38
39 function handler_photo(&$page, $x = null)
40 {
41 if (is_null($x)) {
42 return PL_NOT_FOUND;
43 }
44
45 $res = XDB::query("SELECT attachmime, attach
46 FROM aliases AS a
47 INNER JOIN photo AS p ON(a.uid = p.uid)
48 WHERE alias = {?}", $x);
49
50 if ((list($type, $data) = $res->fetchOneRow())) {
51 pl_cached_dynamic_content_headers("image/$type");
52 echo $data;
53 } else {
54 pl_cached_dynamic_content_headers("image/png");
55 echo file_get_contents(dirname(__FILE__).'/../htdocs/images/none.png');
56 }
57 exit;
58 }
59
60 function handler_index(&$page)
61 {
62 $page->nomenu = true;
63 $page->changeTpl('xnet/index.tpl');
64 }
65
66 function handler_exit(&$page)
67 {
68 Platal::session()->stopSUID();
69 Platal::session()->destroy();
70 $page->changeTpl('xnet/deconnexion.tpl');
71 }
72
73 function handler_admin(&$page)
74 {
75 $page->changeTpl('xnet/admin.tpl');
76
77 if (Get::has('del')) {
78 $res = XDB::query('SELECT id, nom, mail_domain
79 FROM groups WHERE diminutif={?}',
80 Get::v('del'));
81 list($id, $nom, $domain) = $res->fetchOneRow();
82 $page->assign('nom', $nom);
83 if ($id && Post::has('del')) {
84 S::assert_xsrf_token();
85
86 XDB::query('DELETE FROM group_members WHERE asso_id={?}', $id);
87 $page->trigSuccess('membres supprimés');
88
89 if ($domain) {
90 XDB::query('DELETE FROM virtual_domains WHERE domain={?}', $domain);
91 XDB::query('DELETE FROM virtual, virtual_redirect
92 USING virtual INNER JOIN virtual_redirect USING (vid)
93 WHERE alias LIKE {?}', '%@'.$domain);
94 $page->trigSuccess('suppression des alias mails');
95
96 $mmlist = new MMList(S::v('uid'), S::v('password'), $domain);
97 if ($listes = $mmlist->get_lists()) {
98 foreach ($listes as $l) {
99 $mmlist->delete_list($l['list'], true);
100 }
101 $page->trigSuccess('mail lists surpprimées');
102 }
103 }
104
105 XDB::query('DELETE FROM groups WHERE id={?}', $id);
106 $page->trigSuccess("Groupe $nom supprimé");
107 Get::kill('del');
108 }
109 if (!$id) {
110 Get::kill('del');
111 }
112 }
113
114 if (Post::has('diminutif') && Post::v('diminutif') != "") {
115 S::assert_xsrf_token();
116
117 $res = XDB::query('SELECT COUNT(*)
118 FROM groups
119 WHERE diminutif = {?}',
120 Post::v('diminutif'));
121
122 if ($res->fetchOneCell() == 0) {
123 XDB::execute('INSERT INTO groups (id, diminutif)
124 VALUES (NULL, {?})',
125 Post::v('diminutif'));
126 pl_redirect('../' . Post::v('diminutif') . '/edit');
127 } else {
128 $page->trigError('Le diminutif demandé est déjà pris.');
129 }
130 }
131
132 $res = XDB::query('SELECT nom, diminutif
133 FROM groups
134 ORDER BY nom');
135 $page->assign('assos', $res->fetchAllAssoc());
136 }
137
138 function handler_plan(&$page)
139 {
140 $page->changeTpl('xnet/plan.tpl');
141
142 $page->setType('plan');
143
144 $res = XDB::iterator(
145 'SELECT dom.id, dom.nom as domnom, groups.diminutif, groups.nom
146 FROM group_dom AS dom
147 INNER JOIN groups ON dom.id = groups.dom
148 WHERE FIND_IN_SET("GroupesX", dom.cat) AND FIND_IN_SET("GroupesX", groups.cat)
149 ORDER BY dom.nom, groups.nom');
150 $groupesx = array();
151 while ($tmp = $res->next()) { $groupesx[$tmp['id']][] = $tmp; }
152 $page->assign('groupesx', $groupesx);
153
154 $res = XDB::iterator(
155 'SELECT dom.id, dom.nom as domnom, groups.diminutif, groups.nom
156 FROM group_dom AS dom
157 INNER JOIN groups ON dom.id = groups.dom
158 WHERE FIND_IN_SET("Binets", dom.cat) AND FIND_IN_SET("Binets", groups.cat)
159 ORDER BY dom.nom, groups.nom');
160 $binets = array();
161 while ($tmp = $res->next()) { $binets[$tmp['id']][] = $tmp; }
162 $page->assign('binets', $binets);
163
164 $res = XDB::iterator(
165 'SELECT diminutif, nom
166 FROM groups
167 WHERE cat LIKE "%Promotions%"
168 ORDER BY diminutif');
169 $page->assign('promos', $res);
170
171 $res = XDB::iterator(
172 'SELECT diminutif, nom
173 FROM groups
174 WHERE FIND_IN_SET("Institutions", cat)
175 ORDER BY diminutif');
176 $page->assign('inst', $res);
177 }
178
179 function handler_groups2(&$page)
180 {
181 $this->handler_groups(&$page, Get::v('cat'), Get::v('dom'));
182 }
183
184 function handler_groups(&$page, $cat = null, $dom = null)
185 {
186 if (!$cat) {
187 $this->handler_index(&$page);
188 }
189
190 $cat = mb_strtolower($cat);
191
192 $page->changeTpl('xnet/groupes.tpl');
193 $page->assign('cat', $cat);
194 $page->assign('dom', $dom);
195
196 $res = XDB::query("SELECT id,nom
197 FROM group_dom
198 WHERE FIND_IN_SET({?}, cat)
199 ORDER BY nom", $cat);
200 $doms = $res->fetchAllAssoc();
201 $page->assign('doms', $doms);
202
203 if (empty($doms)) {
204 $res = XDB::query("SELECT diminutif, nom, site
205 FROM groups
206 WHERE FIND_IN_SET({?}, cat)
207 ORDER BY nom", $cat);
208 $page->assign('gps', $res->fetchAllAssoc());
209 } elseif (!is_null($dom)) {
210 $res = XDB::query("SELECT diminutif, nom, site
211 FROM groups
212 WHERE FIND_IN_SET({?}, cat) AND dom={?}
213 ORDER BY nom", $cat, $dom);
214 $page->assign('gps', $res->fetchAllAssoc());
215 }
216
217 $page->setType($cat);
218 }
219
220 function handler_autologin(&$page)
221 {
222 $allkeys = func_get_args();
223 unset($allkeys[0]);
224 $url = join('/',$allkeys);
225 pl_content_headers("text/javascript");
226 echo '$.ajax({ url: "'.$url.'?forceXml=1", dataType: "xml", success: function(xml) { $("body",xml).insertBefore("body"); $("body:eq(1)").remove(); }});';
227 exit;
228 }
229 }
230
231 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
232 ?>