Adapts profile related validation requests to ProfileValidate.
[platal.git] / include / validations / medals.inc.php
CommitLineData
20d7932b 1<?php
2/***************************************************************************
9f5bd98e 3 * Copyright (C) 2003-2010 Polytechnique.org *
20d7932b 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 MedalReq
23
c3d1e6b6 24class MedalReq extends ProfileValidate
20d7932b 25{
26 // {{{ properties
27
612a2d8a 28 public $mid;
29 public $gid;
20d7932b 30
31 // }}}
32 // {{{ constructor
33
c3d1e6b6 34 public function __construct(User &$_user, Profile &$_profile, $_idmedal, $_subidmedal, $_stamp = 0)
20d7932b 35 {
c3d1e6b6 36 parent::__construct($_user, $_profile, false, 'medal', $_stamp);
5daf68f6 37 $this->mid = $_idmedal;
20d7932b 38 $this->gid = $_subidmedal;
a1ee34a4
FB
39 if (is_null($this->gid)) {
40 $this->gid = 0;
41 }
20d7932b 42 }
43
44 // }}}
45 // {{{ function formu()
46
612a2d8a 47 public function formu()
787bb3d7 48 {
612a2d8a 49 return 'include/form.valid.medals.tpl';
50 }
20d7932b 51
52 // }}}
53 // {{{ function _mail_subj
54
612a2d8a 55 protected function _mail_subj()
20d7932b 56 {
c3d1e6b6 57 return '[Polytechnique.org/Décoration] Demande de décoration : ' . $this->medal_name();
20d7932b 58 }
59
60 // }}}
61 // {{{ function _mail_body
62
612a2d8a 63 protected function _mail_body($isok)
20d7932b 64 {
65 if ($isok) {
c3d1e6b6 66 return ' La décoration ' . $this->medal_name() . ' vient d\'être ajoutée à ta fiche.';
20d7932b 67 } else {
c3d1e6b6 68 return ' La demande que tu avais faite pour la décoration ' . $this->medal_name() . ' a été refusée.';
20d7932b 69 }
70 }
71
72 // }}}
73 // {{{ function medal_name
74
612a2d8a 75 public function medal_name()
20d7932b 76 {
c3d1e6b6
SJ
77 $res = XDB::query('SELECT m.text
78 FROM profile_medal_enum AS m
79 WHERE m.id = {?}', $this->mid);
80 return $res->fetchOneCell();
20d7932b 81 }
82
83 // }}}
d02b8359 84 // {{{ function submit()
85
612a2d8a 86 public function submit()
d02b8359 87 {
010268b2 88 $res = XDB::query("SELECT FIND_IN_SET('validation', flags)
5c8a71f2 89 FROM profile_medal_enum
d02b8359 90 WHERE id = {?}", $this->mid);
91 if ($res->fetchOneCell()) {
92 parent::submit();
93 } else {
94 $this->commit();
95 }
96 }
612a2d8a 97
d02b8359 98 // }}}
20d7932b 99 // {{{ function commit()
100
612a2d8a 101 public function commit ()
20d7932b 102 {
5c8a71f2 103 return XDB::execute('REPLACE INTO profile_medals
a2a1c2f2 104 VALUES ({?}, {?}, {?})',
c3d1e6b6 105 $this->profile->id(), $this->mid,
a1ee34a4 106 is_null($this->gid) ? 0 : $this->gid);
20d7932b 107 }
108
109 // }}}
85cc366b
FB
110 // {{{ function get_request($medal)
111
c3d1e6b6 112 static public function get_request($pid, $type)
85cc366b 113 {
c3d1e6b6 114 $reqs = parent::get_typed_requests($pid, 'medal');
85cc366b
FB
115 foreach ($reqs as &$req) {
116 if ($req->mid == $type) {
117 return $req;
118 }
119 }
120 return null;
121 }
122
123 // }}}
20d7932b 124}
125
126// }}}
127
a7de4ef7 128// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
20d7932b 129?>