Proof of concept:
[platal.git] / htdocs / admin / admin_trombino.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2006 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 require_once("xorg.inc.php");
23 new_admin_page('admin/admin_trombino.tpl');
24 $page->assign('xorg_title','Polytechnique.org - Administration - Trombino');
25
26 $uid = Env::getInt('uid');
27 $q = $globals->xdb->query(
28 "SELECT a.alias,promo
29 FROM auth_user_md5 AS u
30 INNER JOIN aliases AS a ON ( u.user_id = a.id AND type='a_vie' )
31 WHERE user_id = {?}", $uid);
32 list($forlife, $promo) = $q->fetchOneRow();
33
34 switch (Env::get('action')) {
35
36 case "ecole":
37 header("Content-type: image/jpeg");
38 readfile("/home/web/trombino/photos".$promo."/".$forlife.".jpg");
39 exit;
40 break;
41
42 case "valider":
43 $data = file_get_contents($_FILES['userfile']['tmp_name']);
44 list($x, $y) = getimagesize($_FILES['userfile']['tmp_name']);
45 $mimetype = substr($_FILES['userfile']['type'], 6);
46 unlink($_FILES['userfile']['tmp_name']);
47 $globals->xdb->execute(
48 "REPLACE INTO photo SET uid={?}, attachmime = {?}, attach={?}, x={?}, y={?}",
49 $uid, $mimetype, $data, $x, $y);
50 break;
51
52 case "supprimer":
53 $globals->xdb->execute('DELETE FROM photo WHERE uid = {?}', $uid);
54 break;
55 }
56
57 $page->assign('forlife', $forlife);
58 $page->run();
59 ?>