Bye xorg.misc.inc.php
[platal.git] / include / googleapps.inc.php
CommitLineData
bb0727ea
VZ
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
f5c4bf30 22// Post-processes the successful Google Apps account creation queue job.
bb0727ea
VZ
23function post_queue_u_create($job) {
24 global $globals;
25
26 // Retrieves the user parameters (userid and forlife).
27 $parameters = json_decode($job['j_parameters'], true);
28 $forlife = isset($parameters['username']) ? $parameters['username'] : null;
29 $userid = $job['q_recipient_id'];
30 if (!$forlife || !$userid) {
31 return;
32 }
33
f5c4bf30
VZ
34 // Adds a redirection to the Google Apps delivery address, if requested by
35 // the user at creation time.
bb0727ea
VZ
36 $account = new GoogleAppsAccount($userid, $forlife);
37 if ($account->activate_mail_redirection) {
38 require_once('emails.inc.php');
afde0a3a 39 $storage = new EmailStorage($userid, 'googleapps');
94c6c788 40 $storage->activate();
bb0727ea
VZ
41 }
42
f5c4bf30 43 // Sends the 'account created' email to the user, with basic documentation.
bb0727ea
VZ
44 $res = XDB::query(
45 "SELECT FIND_IN_SET('femme', u.flags), prenom
46 FROM auth_user_md5 AS u
47 INNER JOIN aliases AS a ON (a.id = u.user_id)
48 WHERE a.alias = {?}",
49 $forlife);
50 list($sexe, $prenom) = $res->fetchOneRow();
51
52 $mailer = new PlMailer('googleapps/create.mail.tpl');
53 $mailer->assign('account', $account);
54 $mailer->assign('email', $forlife . '@' . $globals->mail->domain);
55 $mailer->assign('googleapps_domain', $globals->mailstorage->googleapps_domain);
56 $mailer->assign('prenom', $prenom);
57 $mailer->assign('sexe', $sexe);
58 $mailer->send();
59}
60
f5c4bf30 61// Post-processes the successful Google Apps account update queue job.
bb0727ea
VZ
62function post_queue_u_update($job) {
63 global $globals;
64
65 // If the u_update job was an unsuspend request, re-adds the redirection
66 // to the Google Apps delivery address, provided the account is active (it might
67 // have been deleted between the unsuspension and the post-queue processing).
68 $parameters = json_decode($job['j_parameters'], true);
69 $forlife = isset($parameters['username']) ? $parameters['username'] : null;
70 $userid = $job['q_recipient_id'];
71 if (!$forlife || !$userid) {
72 return;
73 }
74
75 if (isset($parameters['suspended']) && $parameters['suspended'] == false) {
76 require_once('emails.inc.php');
77 $account = new GoogleAppsAccount($userid, $forlife);
f5c4bf30 78 if ($account->active()) {
bb0727ea
VZ
79 // Re-adds the email redirection (if the user did request it).
80 if ($account->activate_mail_redirection) {
afde0a3a 81 $storage = new EmailStorage($userid, 'googleapps');
94c6c788 82 $storage->activate();
bb0727ea
VZ
83 }
84
85 // Sends an email to the account owner.
86 $res = XDB::query(
87 "SELECT FIND_IN_SET('femme', u.flags), prenom
88 FROM auth_user_md5 AS u
89 INNER JOIN aliases AS a ON (a.id = u.user_id)
90 WHERE a.alias = {?}",
91 $forlife);
92 list($sexe, $prenom) = $res->fetchOneRow();
93
94 $mailer = new PlMailer('googleapps/unsuspend.mail.tpl');
95 $mailer->assign('account', $account);
96 $mailer->assign('email', $forlife . '@' . $globals->mail->domain);
97 $mailer->assign('prenom', $prenom);
98 $mailer->assign('sexe', $sexe);
99 $mailer->send();
100 }
101 }
102}
103
104// Reprensentation of an SQL-stored Google Apps account.
f5c4bf30
VZ
105// This class is the interface with the gappsd SQL tables: gappsd is the python
106// daemon which deals with Google Apps provisioning APIs.
107// TODO(vincent.zanotti): add the url of gappsd, when available.
bb0727ea
VZ
108class GoogleAppsAccount
109{
f5c4bf30 110 // User identification: user id, and forlife.
bb0727ea
VZ
111 private $uid;
112 public $g_account_name;
113
f5c4bf30 114 // Local account parameters.
bb0727ea
VZ
115 public $sync_password;
116 public $activate_mail_redirection;
f5c4bf30
VZ
117
118 // Account status, obtained from Google Apps provisioning & reporting APIs.
0089e594 119 public $g_account_id;
bb0727ea
VZ
120 public $g_status;
121 public $g_suspension;
122 public $r_disk_usage;
123 public $r_creation;
124 public $r_last_login;
125 public $r_last_webmail;
126 public $reporting_date;
127
f5c4bf30 128 // Pending requests in the gappsd job queue (cf. top note).
bb0727ea
VZ
129 public $pending_create;
130 public $pending_delete;
131 public $pending_update;
132 public $pending_update_admin;
133 public $pending_update_other;
134 public $pending_update_password;
135 public $pending_update_suspension;
136
f5c4bf30 137 // Pending requests in plat/al validation queue.
bb0727ea
VZ
138 public $pending_validation_unsuspend;
139
f5c4bf30
VZ
140 // Constructs the account object, by retrieving all informations from the
141 // GApps account table, from GApps job queue, and from plat/al validation queue.
142 public function __construct($uid, $account_name = NULL)
bb0727ea 143 {
f5c4bf30
VZ
144 if ($account_name == NULL) {
145 require_once 'user.func.inc.php';
146 $account_name = get_user_forlife($uid, '_silent_user_callback');
147 }
148
bb0727ea
VZ
149 $this->uid = $uid;
150 $this->g_account_name = $account_name;
151 $this->g_status = NULL;
bd4662f0
VZ
152 if (!$this->g_account_name) {
153 return;
154 }
bb0727ea
VZ
155
156 $res = XDB::query(
157 "SELECT l_sync_password, l_activate_mail_redirection,
0089e594 158 g_account_name, g_account_id, g_status, g_suspension, r_disk_usage,
bb0727ea
VZ
159 UNIX_TIMESTAMP(r_creation) as r_creation,
160 UNIX_TIMESTAMP(r_last_login) as r_last_login,
161 UNIX_TIMESTAMP(r_last_webmail) as r_last_webmail
162 FROM gapps_accounts
163 WHERE g_account_name = {?}",
164 $account_name);
165 if ($account = $res->fetchOneAssoc()) {
166 $this->sync_password = $account['l_sync_password'];
167 $this->activate_mail_redirection = $account['l_activate_mail_redirection'];
0089e594 168 $this->g_account_id = $account['g_account_id'];
bb0727ea
VZ
169 $this->g_status = $account['g_status'];
170 $this->g_suspension = $account['g_suspension'];
171 $this->r_disk_usage = $account['r_disk_usage'];
172 $this->r_creation = $account['r_creation'];
173 $this->r_last_login = $account['r_last_webmail'];
174 $this->r_last_webmail = $account['r_last_webmail'];
175
176 $this->load_pending_counts();
177 $this->load_pending_validations();
178 if ($this->pending_update) {
179 $this->load_pending_updates();
180 }
181
182 $res = XDB::query("SELECT MAX(date) FROM gapps_reporting");
183 $this->reporting_date = $res->fetchOneCell();
184 }
185 }
186
f5c4bf30
VZ
187 // Determines if changes to the Google Account are currently waiting in the
188 // GApps job queue, and initializes the local values accordingly.
bb0727ea
VZ
189 private function load_pending_counts()
190 {
bb0727ea
VZ
191 $res = XDB::query(
192 "SELECT SUM(j_type = 'u_create') AS pending_create,
193 SUM(j_type = 'u_update') AS pending_update,
194 SUM(j_type = 'u_delete') AS pending_delete
195 FROM gapps_queue
196 WHERE q_recipient_id = {?} AND
197 p_status IN ('idle', 'active', 'softfail')
198 GROUP BY j_type",
199 $this->uid);
200 $pending = $res->fetchOneAssoc();
201 $this->pending_create = $pending['pending_create'];
202 $this->pending_update = $pending['pending_update'];
203 $this->pending_delete = $pending['pending_delete'];
204
205 $this->pending_update_admin = false;
206 $this->pending_update_other = false;
207 $this->pending_update_password = false;
208 $this->pending_update_suspension = false;
209 }
210
f5c4bf30
VZ
211 // Checks for unsuspend requests waiting for validation in plat/al
212 // validation queue.
bb0727ea
VZ
213 private function load_pending_validations()
214 {
215 require_once('validations.inc.php');
216 $this->pending_validation_unsuspend =
217 Validate::get_typed_requests_count($this->uid, 'gapps-unsuspend');
218 }
219
f5c4bf30
VZ
220 // Retrieves all the pending update job in the gappsd queue for the current
221 // user, and analyzes the scope of the update (ie. the fields in the user
222 // account which are going to be updated).
bb0727ea
VZ
223 private function load_pending_updates()
224 {
bb0727ea
VZ
225 $res = XDB::iterator(
226 "SELECT j_parameters
227 FROM gapps_queue
228 WHERE q_recipient_id = {?} AND
229 p_status IN ('idle', 'active', 'softfail') AND
230 j_type = 'u_update'",
231 $this->uid);
232 while ($update = $res->next()) {
233 $update_data = json_decode($update["j_parameters"], true);
234
235 if (isset($update_data["suspended"])) {
236 $this->pending_update_suspension = true;
237 } elseif (isset($update_data["password"])) {
238 $this->pending_update_password = true;
239 } elseif (isset($update_data["admin"])) {
240 $this->pending_update_admin = true;
241 } else {
242 $this->pending_update_other = true;
243 }
244 }
245 }
246
247 // Creates a queue job of the @p type, for the user represented by this
f5c4bf30
VZ
248 // GoogleAppsAccount object, using @p parameters. @p parameters is supposed
249 // to be a one-dimension array of key-value mappings.
d93451de 250 // The created job as a 'immediate' priority, and is scheduled for immediate
f5c4bf30 251 // execution.
bb0727ea
VZ
252 private function create_queue_job($type, $parameters) {
253 $parameters["username"] = $this->g_account_name;
254 XDB::execute(
255 "INSERT INTO gapps_queue
256 SET q_owner_id = {?}, q_recipient_id = {?},
257 p_entry_date = NOW(), p_notbefore_date = NOW(),
d93451de 258 p_priority = 'immediate',
bb0727ea
VZ
259 j_type = {?}, j_parameters = {?}",
260 S::v('uid'),
261 $this->uid,
262 $type,
263 json_encode($parameters));
264 }
265
f5c4bf30
VZ
266
267 // Returns true if the account is currently active.
268 public function active()
269 {
270 return $this->g_status == 'active';
271 }
272
273 // Returns true if the account exists in Google Apps.
274 public function provisioned()
275 {
276 return $this->g_status == 'active' or $this->g_status == 'disabled';
277 }
278
279 // Returns true if the account exists, but cannot be used (user-requested
280 // suspension, or Google-requested suspension).
281 public function suspended()
282 {
283 return $this->g_status == 'disabled';
284 }
285
286
bb0727ea
VZ
287 // Changes the GoogleApps password.
288 public function set_password($password) {
f5c4bf30 289 if (!$this->provisioned()) {
bb0727ea
VZ
290 return;
291 }
292
293 if (!$this->pending_update_password) {
294 $this->create_queue_job('u_update', array('password' => $password));
d73f885f 295 $this->pending_update_password = true;
bb0727ea
VZ
296 }
297 }
298
f5c4bf30 299
bb0727ea
VZ
300 // Changes the password synchronization status ("sync = true" means that the
301 // Polytechnique.org password will be replicated to the Google Apps account).
302 public function set_password_sync($sync) {
f5c4bf30 303 if (!$this->provisioned()) {
bb0727ea
VZ
304 return;
305 }
306
307 $this->sync_password = $sync;
308 XDB::execute(
309 "UPDATE gapps_accounts
310 SET l_sync_password = {?}
311 WHERE g_account_name = {?}",
312 $sync,
313 $this->g_account_name);
314 }
315
316 // Suspends the Google Apps account.
317 public function suspend() {
f5c4bf30 318 if (!$this->provisioned()) {
bb0727ea
VZ
319 return;
320 }
321
322 if (!$this->pending_update_suspension) {
323 $this->create_queue_job('u_update', array('suspended' => true));
324 $this->pending_update_suspension = true;
5656271f
VZ
325 XDB::execute(
326 "UPDATE gapps_accounts
327 SET g_status = 'disabled'
328 WHERE g_account_name = {?} AND g_status = 'active'",
329 $this->g_account_name);
bb0727ea
VZ
330 }
331 }
332
333 // Adds an unsuspension request to the validation queue (used on user-request).
334 public function unsuspend($activate_mail_redirection = NULL) {
f5c4bf30 335 if (!$this->provisioned()) {
bb0727ea
VZ
336 return;
337 }
338 if ($activate_mail_redirection !== NULL) {
339 $this->activate_mail_redirection = $activate_mail_redirection;
340 XDB::execute(
341 "UPDATE gapps_accounts
342 SET l_activate_mail_redirection = {?}
343 WHERE g_account_name = {?}",
f5c4bf30
VZ
344 $activate_mail_redirection,
345 $this->g_account_name);
bb0727ea
VZ
346 }
347
348 if (!$this->pending_update_suspension && !$this->pending_validation_unsuspend) {
349 require_once('validations.inc.php');
350 $unsuspend = new GoogleAppsUnsuspendReq($this->uid);
351 $unsuspend->submit();
352 $this->pending_validation_unsuspend = true;
353 }
354 }
355
356 // Unsuspends the Google Apps account (used on admin-request, or on validation of
357 // an user-request).
358 public function do_unsuspend() {
f5c4bf30 359 if (!$this->provisioned()) {
bb0727ea
VZ
360 return;
361 }
362
363 if (!$this->pending_update_suspension) {
364 if ($this->sync_password) {
365 $res = XDB::query(
366 "SELECT password
367 FROM auth_user_md5
368 WHERE user_id = {?}",
369 $this->uid);
370 $password = ($res->numRows() > 0 ? $res->fetchOneCell() : false);
371 } else {
372 $password = false;
373 }
374
375 if ($password) {
376 $this->create_queue_job('u_update', array('suspended' => false, 'password' => $password));
377 } else {
378 $this->create_queue_job('u_update', array('suspended' => false));
379 }
380 $this->pending_update_suspension = true;
381 return true;
382 }
383 return false;
384 }
385
f5c4bf30 386 // Creates a new Google Apps account with the @p local parameters.
bb0727ea
VZ
387 public function create($password_sync, $password, $redirect_mails) {
388 if ($this->g_status != NULL) {
389 return;
390 }
391
392 if (!$this->pending_create) {
393 // Retrieves information on the new account.
394 $res = XDB::query(
395 "SELECT nom, nom_usage, prenom
396 FROM auth_user_md5
397 WHERE user_id = {?}",
398 $this->uid);
399 list($nom, $nom_usage, $prenom) = $res->fetchOneRow();
400
f5c4bf30 401 // Adds an 'unprovisioned' entry in the gapps_accounts table.
bb0727ea
VZ
402 XDB::execute(
403 "INSERT INTO gapps_accounts
404 SET l_userid = {?},
405 l_sync_password = {?},
406 l_activate_mail_redirection = {?},
407 g_account_name = {?},
408 g_first_name = {?},
409 g_last_name = {?},
410 g_status = 'unprovisioned'",
411 $this->uid,
412 $password_sync,
413 $redirect_mails,
414 $this->g_account_name,
415 $prenom,
416 ($nom_usage ? $nom_usage : $nom));
417
418 // Adds the creation job in the GApps queue.
419 $this->create_queue_job(
420 'u_create',
421 array(
422 'username' => $this->g_account_name,
423 'first_name' => $prenom,
424 'last_name' => ($nom_usage ? $nom_usage : $nom),
425 'password' => $password,
426 ));
427
428 // Updates the GoogleAppsAccount status.
429 $this->__construct($this->uid, $this->g_account_name);
430 }
431 }
f5c4bf30
VZ
432
433
434 // Returns the status of the Google Apps account for @p user, or false
435 // when no account exists.
436 static public function account_status($uid) {
437 $res = XDB::query(
438 "SELECT g_status
439 FROM gapps_accounts
440 WHERE l_userid = {?}", $uid);
441 return ($res->numRows() > 0 ? $res->fetchOneCell() : false);
442 }
443
444 // Returns true if the @p user is an administrator of the Google Apps domain.
445 static public function is_administrator($uid) {
446 $res = XDB::query(
447 "SELECT g_admin
448 FROM gapps_accounts
449 WHERE l_userid = {?} AND g_status = 'active'", $uid);
4b67332c 450 return ($res->numRows() > 0 ? (bool)$res->fetchOneCell() : false);
f5c4bf30 451 }
bb0727ea
VZ
452}
453
454// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
455?>