Merge branch 'fusionax' into account
[platal.git] / modules / xnetlists.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2008 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 Platal::load('lists');
23
24 class XnetListsModule extends ListsModule
25 {
26 var $client;
27
28 function handlers()
29 {
30 return array(
31 '%grp/lists' => $this->make_hook('lists', AUTH_MDP, 'groupmember'),
32 '%grp/lists/create' => $this->make_hook('create', AUTH_MDP, 'groupmember'),
33
34 '%grp/lists/members' => $this->make_hook('members', AUTH_COOKIE),
35 '%grp/lists/csv' => $this->make_hook('csv', AUTH_COOKIE),
36 '%grp/lists/annu' => $this->make_hook('annu', AUTH_COOKIE),
37 '%grp/lists/archives' => $this->make_hook('archives', AUTH_COOKIE),
38 '%grp/lists/archives/rss' => $this->make_hook('rss', AUTH_PUBLIC),
39
40 '%grp/lists/moderate' => $this->make_hook('moderate', AUTH_MDP),
41 '%grp/lists/admin' => $this->make_hook('admin', AUTH_MDP),
42 '%grp/lists/options' => $this->make_hook('options', AUTH_MDP),
43 '%grp/lists/delete' => $this->make_hook('delete', AUTH_MDP),
44
45 '%grp/lists/soptions' => $this->make_hook('soptions', AUTH_MDP),
46 '%grp/lists/check' => $this->make_hook('check', AUTH_MDP),
47 '%grp/lists/sync' => $this->make_hook('sync', AUTH_MDP),
48
49 '%grp/alias/admin' => $this->make_hook('aadmin', AUTH_MDP, 'groupadmin'),
50 '%grp/alias/create' => $this->make_hook('acreate', AUTH_MDP, 'groupadmin'),
51
52 /* hack: lists uses that */
53 'profile' => $this->make_hook('profile', AUTH_PUBLIC),
54 );
55 }
56
57 function prepare_client(&$page, $user = null)
58 {
59 global $globals;
60 Platal::load('lists', 'lists.inc.php');
61
62 if (is_null($user)) {
63 $user =& S::user();
64 }
65 $this->client = new MMList($user, $globals->asso('mail_domain'));
66
67 $page->assign('asso', $globals->asso());
68 $page->setType($globals->asso('cat'));
69
70 return $globals->asso('mail_domain');
71 }
72
73 function handler_lists(&$page)
74 {
75 global $globals;
76
77 if (!$globals->asso('mail_domain')) {
78 return PL_NOT_FOUND;
79 }
80 $this->prepare_client($page);
81 $page->changeTpl('xnetlists/index.tpl');
82
83 if (Get::has('del')) {
84 S::assert_xsrf_token();
85 $this->client->unsubscribe(Get::v('del'));
86 pl_redirect('lists');
87 }
88 if (Get::has('add')) {
89 S::assert_xsrf_token();
90 $this->client->subscribe(Get::v('add'));
91 pl_redirect('lists');
92 }
93
94 if (Post::has('del_alias') && may_update()) {
95 S::assert_xsrf_token();
96
97 $alias = Post::v('del_alias');
98 // prevent group admin from erasing aliases from other groups
99 $alias = substr($alias, 0, strpos($alias, '@')).'@'.$globals->asso('mail_domain');
100 XDB::query(
101 'DELETE FROM r, v
102 USING x4dat.virtual AS v
103 LEFT JOIN x4dat.virtual_redirect AS r USING(vid)
104 WHERE v.alias={?}', $alias);
105 $page->trigSuccess(Post::v('del_alias')." supprimé !");
106 }
107
108 $listes = $this->client->get_lists();
109 $page->assign('listes',$listes);
110
111 $alias = XDB::iterator(
112 'SELECT alias,type
113 FROM x4dat.virtual
114 WHERE alias
115 LIKE {?} AND type="user"
116 ORDER BY alias', '%@'.$globals->asso('mail_domain'));
117 $page->assign('alias', $alias);
118
119 $page->assign('may_update', may_update());
120 }
121
122 function handler_create(&$page)
123 {
124 global $globals;
125
126 if (!$globals->asso('mail_domain')) {
127 return PL_NOT_FOUND;
128 }
129 $this->prepare_client($page);
130 $page->changeTpl('xnetlists/create.tpl');
131
132 if (!Post::has('submit')) {
133 return;
134 } else {
135 S::assert_xsrf_token();
136 }
137
138 if (!Post::has('liste')) {
139 $page->trigError('champs «adresse souhaitée» vide');
140 return;
141 }
142
143 $liste = strtolower(Post::v('liste'));
144
145 if (!preg_match("/^[a-zA-Z0-9\-]*$/", $liste)) {
146 $page->trigError('le nom de la liste ne doit contenir que des lettres non accentuées, chiffres et tirets');
147 return;
148 }
149
150 $new = $liste.'@'.$globals->asso('mail_domain');
151 $res = XDB::query('SELECT alias FROM x4dat.virtual WHERE alias={?}', $new);
152
153 if ($res->numRows()) {
154 $page->trigError('cet alias est déjà pris');
155 return;
156 }
157 if (!Post::v('desc')) {
158 $page->trigError('le sujet est vide');
159 return;
160 }
161
162 $ret = $this->client->create_list(
163 $liste, utf8_decode(Post::v('desc')), Post::v('advertise'),
164 Post::v('modlevel'), Post::v('inslevel'),
165 array(S::user()->forlifeEmail()), array(S::user()->forlifeEmail()));
166
167 $dom = strtolower($globals->asso("mail_domain"));
168 $red = $dom.'_'.$liste;
169
170 if (!$ret) {
171 $page->kill("Un problème est survenu, contacter "
172 ."<a href='mailto:support@m4x.org'>support@m4x.org</a>");
173 return;
174 }
175 foreach (array('', 'owner', 'admin', 'bounces', 'unsubscribe') as $app) {
176 $mdir = $app == '' ? '+post' : '+' . $app;
177 if (!empty($app)) {
178 $app = '-' . $app;
179 }
180 XDB::execute('INSERT INTO x4dat.virtual (alias,type)
181 VALUES({?},{?})', $liste. $app . '@'.$dom, 'list');
182 XDB::execute('INSERT INTO x4dat.virtual_redirect (vid,redirect)
183 VALUES ({?}, {?})', XDB::insertId(),
184 $red . $mdir . '@listes.polytechnique.org');
185 }
186 pl_redirect('lists/admin/'.$liste);
187 }
188
189 function handler_sync(&$page, $liste = null)
190 {
191 global $globals;
192
193 if (!$globals->asso('mail_domain')) {
194 return PL_NOT_FOUND;
195 }
196 $this->prepare_client($page);
197 $page->changeTpl('xnetlists/sync.tpl');
198
199 if (Env::has('add')) {
200 S::assert_xsrf_token();
201 $this->client->mass_subscribe($liste, array_keys(Env::v('add')));
202 }
203
204 list(,$members) = $this->client->get_members($liste);
205 $mails = array_map(create_function('$arr', 'return $arr[1];'), $members);
206 $subscribers = array_unique($mails);
207
208 $not_in_group_x = array();
209 $not_in_group_ext = array();
210
211 $ann = XDB::fetchColumn('SELECT uid
212 FROM groupex.membres
213 WHERE asso_id = {?}', $globals->asso('id'));
214 $users = User::getBuildUsersWithUIDs($ann, 'promo,full_name');
215 $not_in_list = array();
216 foreach ($users as $user) {
217 if (!in_array(strtolower($user->forlifeEmail()), $subscribers)) {
218 $not_in_list[] = $user;
219 }
220 }
221
222 $page->assign('not_in_list', $not_in_list);
223 }
224
225 function handler_aadmin(&$page, $lfull = null)
226 {
227 global $globals;
228
229 if (!$globals->asso('mail_domain') || is_null($lfull)) {
230 return PL_NOT_FOUND;
231 }
232 $page->changeTpl('xnetlists/alias-admin.tpl');
233
234 if (Env::has('add_member')) {
235 S::assert_xsrf_token();
236
237 $add = Env::t('add_member');
238 $user = User::getSilent($add);
239 if ($user) {
240 $add = $user->forlifeEmail();
241 } else if (!User::isForeignEmailAddress($add)) {
242 $add = null;
243 }
244 if (!empty($add)) {
245 XDB::execute('INSERT INTO x4dat.virtual_redirect (vid, redirect)
246 SELECT vid, {?},
247 FROM x4dat.virtual
248 WHERE alias = {?}', strtolower($add), $lfull);
249 $page->trigSuccess($add . ' ajouté.');
250 } else {
251 $page->trigError($add . ' n\'existe pas.');
252 }
253 }
254
255 if (Env::has('del_member')) {
256 S::assert_xsrf_token();
257 XDB::query(
258 "DELETE FROM x4dat.virtual_redirect
259 USING x4dat.virtual_redirect
260 INNER JOIN x4dat.virtual USING(vid)
261 WHERE redirect={?} AND alias={?}", Env::v('del_member'), $lfull);
262 pl_redirect('alias/admin/'.$lfull);
263 }
264
265 global $globals;
266 $emails = XDB::fetchColumn('SELECT redirect
267 FROM virtual_redirect AS vr
268 INNER JOIN virtual AS v USING(vid)
269 WHERE v.alias = {?}
270 ORDER BY redirect', $lfull);
271 $mem = array();
272 foreach ($emails as $email) {
273 $user = User::getSilent($email);
274 if ($user) {
275 $mem[] = array('user' => $user, 'email' => $email);
276 } else {
277 $mem[] = array('email' => $email);
278 }
279 }
280 $page->assign('mem', $mem);
281 }
282
283 function handler_acreate(&$page)
284 {
285 global $globals;
286
287 if (!$globals->asso('mail_domain')) {
288 return PL_NOT_FOUND;
289 }
290 $page->changeTpl('xnetlists/alias-create.tpl');
291
292 if (!Post::has('submit')) {
293 return;
294 } else {
295 S::assert_xsrf_token();
296 }
297
298 if (!Post::has('liste')) {
299 $page->trigError('champs «adresse souhaitée» vide');
300 return;
301 }
302 $liste = Post::v('liste');
303 if (!preg_match("/^[a-zA-Z0-9\-\.]*$/", $liste)) {
304 $page->trigError('le nom de l\'alias ne doit contenir que des lettres,'
305 .' chiffres, tirets et points');
306 return;
307 }
308
309 $new = $liste.'@'.$globals->asso('mail_domain');
310 $res = XDB::query('SELECT COUNT(*) FROM x4dat.virtual WHERE alias={?}', $new);
311 $n = $res->fetchOneCell();
312 if ($n) {
313 $page->trigError('cet alias est déjà pris');
314 return;
315 }
316
317 XDB::query('INSERT INTO x4dat.virtual (alias,type) VALUES({?}, "user")', $new);
318
319 pl_redirect("alias/admin/$new");
320 }
321
322 function handler_profile(&$page, $user = null)
323 {
324 http_redirect('https://www.polytechnique.org/profile/'.$user);
325 }
326 }
327
328 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
329 ?>