Merge branch 'xorg/maint' into xorg/master
[platal.git] / modules / profile / decos.inc.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 ProfileSettingDeco implements ProfileSetting
23 {
24 private static function compareMedals(array $a, array $b)
25 {
26 if ($a['id'] == $b['id']) {
27 if ($a['grade'] == $b['grade']) {
28 return $a['level'] > $b['level'];
29 }
30 return $a['grade'] > $b['grade'];
31 }
32 return $a['id'] > $b['id'];
33 }
34
35 public function value(ProfilePage $page, $field, $value, &$success)
36 {
37 $success = true;
38 if (is_null($value)) {
39 // Fetch already attributed medals
40 $value = XDB::fetchAllAssoc("SELECT m.mid AS id, m.gid AS grade, 1 AS valid, FIND_IN_SET('has_levels', e.flags) AS has_levels, m.level
41 FROM profile_medals AS m
42 INNER JOIN profile_medal_enum AS e ON (m.mid = e.id)
43 WHERE m.pid = {?}",
44 $page->pid());
45
46 // Fetch not yet validated medals
47 $medals = ProfileValidate::get_typed_requests($page->pid(), 'medal');
48 foreach ($medals as &$medal) {
49 $value[] = array(
50 'id' => $medal->mid,
51 'grade' => $medal->gid,
52 'level' => $medal->level,
53 'has_levels' => $medal->has_levels,
54 'valid' => '0'
55 );
56 }
57 } elseif (!is_array($value)) {
58 $value = array();
59 }
60 usort($value, 'self::compareMedals');
61 return $value;
62 }
63
64 public function save(ProfilePage $page, $field, $value)
65 {
66 $original =& $page->orig[$field];
67
68 $i = $j = 0;
69 $total_original = count($original);
70 $total_value = count($value);
71
72 while ($i < $total_original || $j < $total_value) {
73 if (isset($value[$j]) && (!isset($original[$i]) || self::compareMedals($original[$i], $value[$j]))) {
74 $req = new MedalReq(S::user(), $page->profile, $value[$j]['id'], $value[$j]['grade'], $value[$j]['level'], $value[$j]['has_levels']);
75 $req->submit();
76 sleep(1);
77 ++$j;
78 } elseif (isset($original[$i]) && (!isset($value[$j]) || self::compareMedals($value[$j], $original[$i]))) {
79 if ($original[$i]['valid']) {
80 XDB::execute('DELETE FROM profile_medals
81 WHERE pid = {?} AND mid = {?} AND gid = {?}',
82 $page->pid(), $original[$i]['id'], $original[$i]['grade']);
83 } else {
84 $req = MedalReq::get_request($page->pid(), $original[$i]['id'], $original[$i]['grade'], $value[$j]['level']);
85 if ($req) {
86 $req->clean();
87 }
88 }
89 ++$i;
90 } else {
91 ++$i;
92 ++$j;
93 }
94 }
95 }
96
97 public function getText($value) {
98 $medalsList = DirEnum::getOptions(DirEnum::MEDALS);
99 $medals = array();
100 foreach ($value as $id => $medal) {
101 $medals[] = $medalsList[$id];
102 }
103 return implode(', ', $medals);
104 }
105 }
106
107 class ProfilePageDecos extends ProfilePage
108 {
109 protected $pg_template = 'profile/deco.tpl';
110
111 public function __construct(PlWizard $wiz)
112 {
113 parent::__construct($wiz);
114 $this->settings['medals'] = new ProfileSettingDeco();
115 $this->settings['medals_pub'] = new ProfileSettingPub();
116 $this->watched['medals'] = true;
117 }
118
119 protected function _fetchData()
120 {
121 $res = XDB::query("SELECT medals_pub
122 FROM profiles
123 WHERE pid = {?}",
124 $this->pid());
125 $this->values['medals_pub'] = $res->fetchOneCell();
126 }
127
128 protected function _saveData()
129 {
130 if ($this->changed['medals_pub']) {
131 XDB::execute("UPDATE profiles
132 SET medals_pub = {?}
133 WHERE pid = {?}",
134 $this->values['medals_pub'], $this->pid());
135 }
136 }
137
138 public function _prepare(PlPage $page, $id)
139 {
140 $res = XDB::iterator('SELECT *, FIND_IN_SET(\'validation\', flags) AS validate
141 FROM profile_medal_enum
142 ORDER BY type, text');
143 $mlist = array();
144 while ($tmp = $res->next()) {
145 $mlist[$tmp['type']][] = $tmp;
146 }
147 $page->assign('medal_list', $mlist);
148 $fullType = array(
149 'ordre' => 'Ordres',
150 'croix' => 'Croix',
151 'militaire' => 'Médailles militaires',
152 'honneur' => 'Médailles d\'honneur',
153 'resistance' => 'Médailles de la résistance',
154 'prix' => 'Prix',
155 'sport' => 'Médailles sportives'
156 );
157 $page->assign('fullType', $fullType);
158 }
159 }
160
161 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
162 ?>