Merge remote branch 'origin/xorg/1.0.2/master' into xorg/master
[platal.git] / modules / xnet.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2011 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 'Xnet' => $this->make_wiki_hook(),
38 );
39 }
40
41 function handler_photo(&$page, $x = null)
42 {
43 if (!$x || !($profile = Profile::get($x))) {
44 return PL_NOT_FOUND;
45 }
46
47 // Retrieve the photo and its mime type.
48 $photo = $profile->getPhoto(true, true);
49
50 // Display the photo, or a default one when not available.
51 $photo->send();
52 }
53
54 function handler_index(&$page)
55 {
56 $page->nomenu = true;
57 $page->changeTpl('xnet/index.tpl');
58 }
59
60 function handler_exit(&$page)
61 {
62 Platal::session()->stopSUID();
63 Platal::session()->destroy();
64 $page->changeTpl('xnet/deconnexion.tpl');
65 }
66
67 function handler_admin(&$page)
68 {
69 $page->changeTpl('xnet/admin.tpl');
70
71 if (Get::has('del')) {
72 $res = XDB::query('SELECT id, nom, mail_domain
73 FROM groups WHERE diminutif={?}',
74 Get::v('del'));
75 list($id, $nom, $domain) = $res->fetchOneRow();
76 $page->assign('nom', $nom);
77 if ($id && Post::has('del')) {
78 S::assert_xsrf_token();
79
80 XDB::query('DELETE FROM group_members WHERE asso_id={?}', $id);
81 $page->trigSuccess('membres supprimés');
82
83 if ($domain) {
84 XDB::query('DELETE FROM virtual_domains WHERE domain={?}', $domain);
85 XDB::query('DELETE FROM virtual, virtual_redirect
86 USING virtual INNER JOIN virtual_redirect USING (vid)
87 WHERE alias LIKE {?}', '%@'.$domain);
88 $page->trigSuccess('suppression des alias mails');
89
90 $mmlist = new MMList(S::v('uid'), S::v('password'), $domain);
91 if ($listes = $mmlist->get_lists()) {
92 foreach ($listes as $l) {
93 $mmlist->delete_list($l['list'], true);
94 }
95 $page->trigSuccess('mail lists surpprimées');
96 }
97 }
98
99 XDB::query('DELETE FROM groups WHERE id={?}', $id);
100 $page->trigSuccess("Groupe $nom supprimé");
101 Get::kill('del');
102 }
103 if (!$id) {
104 Get::kill('del');
105 }
106 }
107
108 if (Post::has('diminutif') && Post::v('diminutif') != "") {
109 S::assert_xsrf_token();
110
111 $res = XDB::query('SELECT COUNT(*)
112 FROM groups
113 WHERE diminutif = {?}',
114 Post::v('diminutif'));
115
116 if ($res->fetchOneCell() == 0) {
117 XDB::execute('INSERT INTO groups (id, diminutif)
118 VALUES (NULL, {?})',
119 Post::v('diminutif'));
120 pl_redirect(Post::v('diminutif') . '/edit');
121 } else {
122 $page->trigError('Le diminutif demandé est déjà pris.');
123 }
124 }
125
126 $res = XDB::query('SELECT nom, diminutif
127 FROM groups
128 ORDER BY nom');
129 $page->assign('assos', $res->fetchAllAssoc());
130 }
131
132 function handler_plan(&$page)
133 {
134 $page->changeTpl('xnet/plan.tpl');
135
136 $page->setType('plan');
137
138 $res = XDB::iterator(
139 'SELECT dom.id, dom.nom as domnom, groups.diminutif, groups.nom
140 FROM group_dom AS dom
141 INNER JOIN groups ON dom.id = groups.dom
142 WHERE FIND_IN_SET("GroupesX", dom.cat) AND FIND_IN_SET("GroupesX", groups.cat)
143 ORDER BY dom.nom, groups.nom');
144 $groupesx = array();
145 while ($tmp = $res->next()) { $groupesx[$tmp['id']][] = $tmp; }
146 $page->assign('groupesx', $groupesx);
147
148 $res = XDB::iterator(
149 'SELECT dom.id, dom.nom as domnom, groups.diminutif, groups.nom
150 FROM group_dom AS dom
151 INNER JOIN groups ON dom.id = groups.dom
152 WHERE FIND_IN_SET("Binets", dom.cat) AND FIND_IN_SET("Binets", groups.cat)
153 ORDER BY dom.nom, groups.nom');
154 $binets = array();
155 while ($tmp = $res->next()) { $binets[$tmp['id']][] = $tmp; }
156 $page->assign('binets', $binets);
157
158 $res = XDB::iterator(
159 'SELECT diminutif, nom
160 FROM groups
161 WHERE cat LIKE "%Promotions%"
162 ORDER BY diminutif');
163 $page->assign('promos', $res);
164
165 $res = XDB::iterator(
166 'SELECT diminutif, nom
167 FROM groups
168 WHERE FIND_IN_SET("Institutions", cat)
169 ORDER BY diminutif');
170 $page->assign('inst', $res);
171 }
172
173 function handler_groups2(&$page)
174 {
175 $this->handler_groups(&$page, Get::v('cat'), Get::v('dom'));
176 }
177
178 function handler_groups(&$page, $cat = null, $dom = null)
179 {
180 if (!$cat) {
181 $this->handler_index(&$page);
182 }
183
184 $cat = mb_strtolower($cat);
185
186 $page->changeTpl('xnet/groupes.tpl');
187 $page->assign('cat', $cat);
188 $page->assign('dom', $dom);
189
190 $res = XDB::query("SELECT id,nom
191 FROM group_dom
192 WHERE FIND_IN_SET({?}, cat)
193 ORDER BY nom", $cat);
194 $doms = $res->fetchAllAssoc();
195 $page->assign('doms', $doms);
196
197 if (empty($doms)) {
198 $res = XDB::query("SELECT diminutif, nom, site
199 FROM groups
200 WHERE FIND_IN_SET({?}, cat)
201 ORDER BY nom", $cat);
202 $page->assign('gps', $res->fetchAllAssoc());
203 } elseif (!is_null($dom)) {
204 $res = XDB::query("SELECT diminutif, nom, site
205 FROM groups
206 WHERE FIND_IN_SET({?}, cat) AND dom={?}
207 ORDER BY nom", $cat, $dom);
208 $page->assign('gps', $res->fetchAllAssoc());
209 }
210
211 $page->setType($cat);
212 }
213
214 function handler_autologin(&$page)
215 {
216 $allkeys = func_get_args();
217 unset($allkeys[0]);
218 $url = join('/',$allkeys);
219 pl_content_headers("text/javascript");
220 echo '$.ajax({ url: "'.$url.'?forceXml=1", dataType: "xml", success: function(xml) { $("body",xml).insertBefore("body"); $("body:eq(1)").remove(); }});';
221 exit;
222 }
223 }
224
225 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
226 ?>