lot of various code simplifications, including removing useless settings,
[platal.git] / include / contacts.pdf.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
50a40a33 3 * Copyright (C) 2003-2006 Polytechnique.org *
0337d704 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
22define ('FPDF_FONTPATH', dirname(__FILE__).'/fonts/');
63528107 23require_once '/usr/share/fpdf/fpdf.php';
24require_once dirname(__FILE__).'/../classes/VarStream.php';
0337d704 25
26class ContactsPDF extends FPDF
27{
28 var $col = 0;
29 var $y0;
30
31 var $title = "Mes contacts sur Polytechnique.org";
32 var $broken = false;
33 var $error = false;
34
35 function ContactsPDF()
36 {
37 parent::FPDF();
38 $this->AddFont('Vera Sans', '', 'Vera.php');
39 $this->AddFont('Vera Sans', 'I', 'VeraIt.php');
40 $this->AddFont('Vera Sans', 'B', 'VeraBd.php');
b48a0758 41
0337d704 42 $this->AddFont('Vera Mono', '', 'VeraMono.php');
b48a0758 43
0337d704 44 $this->SetTitle($this->title);
45 $this->SetCreator('Site Polytechnique.org');
46 $this->AddPage();
47 }
48
49 function Output()
50 {
51 Header('Pragma: public');
52 parent::Output();
53 }
54
55 function Rotate($angle,$x=-1,$y=-1)
56 {
e54098b8 57 if ($x==-1) {
0337d704 58 $x = $this->x;
59 }
e54098b8 60 if ($y==-1) {
0337d704 61 $y=$this->y;
62 }
e54098b8 63 if ($this->angle != 0) {
0337d704 64 $this->_out('Q');
65 }
66 $this->angle = $angle;
e54098b8 67 if ($angle != 0)
0337d704 68 {
69 $angle*=M_PI/180;
70 $c = cos($angle);
71 $s = sin($angle);
72 $cx = $x*$this->k;
73 $cy = ($this->h-$y)*$this->k;
74 $this->_out(sprintf('q %.5f %.5f %.5f %.5f %.2f %.2f cm 1 0 0 1 %.2f %.2f cm',$c,$s,-$s,$c,$cx,$cy,-$cx,-$cy));
75 }
76 }
b48a0758 77
0337d704 78 function Header()
79 {
80
81 $this->SetFont('Vera Sans', 'B', 20);
82 $this->SetTextColor(230);
83 $this->Rotate(45,55,190);
84 $this->Text(55,190,"informations limitées à un usage");
85 $this->Text(40,210,"strictement personnel et non commercial");
86 $this->Rotate(0);
b48a0758 87
0337d704 88 $this->setLeftMargin(5);
89 $this->setRightMargin(5);
90 $this->SetFont('Vera Sans', 'B', 16);
91 $this->SetY(5);
92 $this->SetTextColor(51,102,153);
93 $this->SetDrawColor(102,153,204);
94 $this->SetLineWidth(0.2);
95 $this->SetFillColor(245, 248, 252);
96 $this->Cell(200, 10, $this->title, 1, 1, 'C', 1);
e54098b8 97 $this->Image(dirname(dirname(__FILE__)).'/htdocs/images/logo.png', 5, 5, 10, 10, 'png', 'https://www.polytechnique.org/');
b48a0758 98
0337d704 99 $this->Ln(10);
100 $this->y0 = $this->GetY();
101 $this->ColSetup(false);
102 }
103
104 function Footer()
105 {
106 $this->setLeftMargin(5);
107 $this->setRightMargin(5);
108 $this->SetY(-15);
109 $this->SetFont('Vera Sans','I',8);
110 $this->SetTextColor(128);
111 $this->Cell(0, 10, 'Page '.$this->PageNo(), 0, 0, 'C');
7d804f13 112 $this->Cell(0, 10, '(en date du '.strftime('%d %B %Y').')', 0, 0, 'R');
0337d704 113 }
114
115 function ColSetup($col)
116 {
117 $this->col = $col;
118 $x = 10 + $this->col * 100;
119 $this->SetLeftMargin($x);
120 $this->SetRightMargin(120 - $x);
121 $this->SetX($x);
122 $this->SetY($this->y0);
123 }
124
125 function NextCol()
126 {
127 $this->ColSetup(1 - $this->col);
e54098b8 128 if ($this->col == 0) {
129 $this->AddPage();
130 }
0337d704 131 }
132
133 function AcceptPageBreak()
134 {
135 $this->broken = true;
136 }
137
138 function Space($w=0.1, $h=0.5)
139 {
140 $x = $this->getX();
141 $y = $this->getY();
142 $this->SetLineWidth($w);
143 $this->Line($x, $y, $x+90, $y);
144 $this->Ln($h);
145 }
146
147 function TableRow($l, $r, $font = 'Sans')
148 {
149 $this->SetFont('Vera Sans', 'B', 8);
150 $y = $this->getY();
151 $x = $this->getX();
152 $this->MultiCell(25, 4, $l, '', 1);
153 $y1 = $this->getY();
154
155 $this->SetFont('Vera '.$font, '', 8);
156 $this->setY($y);
157 $first = 1;
b48a0758 158
0337d704 159 $this->setX($x+25);
160 $this->MultiCell(65, 4, $r, '', 1);
b48a0758 161
0337d704 162 $this->setY(max($y1, $this->getY())+0.5);
163 $this->setX($x);
164 }
165
166 function Address($a)
167 {
168 $l = "adresse\n";
169 if ($a['active']) {
170 $l .= 'actuelle';
171 } elseif ($a['secondaire']) {
172 $l .= 'secondaire';
173 } else {
174 $l .= 'principale';
175 }
176
177 $r = '';
178 $r = trim("$r\n".$a['adr1']);
179 $r = trim("$r\n".$a['adr2']);
180 $r = trim("$r\n".$a['adr3']);
181 $r = trim("$r\n".trim($a['postcode'].' '.$a['city']));
182
183 $this->TableRow($l, $r);
184
79a5acea 185 foreach ($a['tels'] as $tel)
186 if ($tel['tel']) {
187 $this->TableRow($tel['tel_type'], $tel['tel'], 'Mono');
188 }
0337d704 189 }
190
191 function AddressPro($a)
192 {
193 if ($a['entreprise']) {
194 $this->TableRow('Entreprise', $a['entreprise']);
195 }
b48a0758 196
0337d704 197 if ($a['adr1'] || $a['adr2'] || $a['adr3'] || $a['postcode'] || $a['city']) {
198 $r = '';
199 $r = trim("$r\n".$a['adr1']);
200 $r = trim("$r\n".$a['adr2']);
201 $r = trim("$r\n".$a['adr3']);
202 $r = trim("$r\n".trim($a['postcode'].' '.$a['city']));
203 $this->TableRow('adresse pro', $r);
204 }
205
206 if ($a['tel']) {
207 $this->TableRow('Téléphone', $a['tel'], 'Mono');
208 }
209 if ($a['fax']) {
210 $this->TableRow('Fax', $a['fax'], 'Mono');
211 }
212 }
213
214 function Error()
215 {
216 $this->error = true;
217 }
218
219 function wordwrap($text, $maxwidth = 90) {
220 $text = trim($text);
221 if ($text==='') { return 0; }
222 $space = $this->GetStringWidth(' ');
223 $lines = explode("\n", $text);
224 $text = '';
225 $count = 0;
226
e54098b8 227 foreach ($lines as $line) {
0337d704 228 $words = preg_split('/ +/', $line);
229 $width = 0;
230
e54098b8 231 foreach ($words as $word) {
0337d704 232 $wordwidth = $this->GetStringWidth($word);
e54098b8 233 if ($width + $wordwidth <= $maxwidth) {
0337d704 234 $width += $wordwidth + $space;
235 $text .= $word.' ';
e54098b8 236 } else {
0337d704 237 $width = $wordwidth + $space;
e54098b8 238 $text = rtrim($text)."\n".$word.' ';
0337d704 239 $count++;
240 }
241 }
242 $text = rtrim($text)."\n";
243 $count++;
244 }
245 $text = rtrim($text);
246 return $count;
247 }
248
249 function AddContact($x, $wp = true)
250 {
0337d704 251 /* infamous hack :
252 1- we store the current state.
253 2- at the end, we find out if we triggered the page break,
254 -> no ? ok
255 -> yes ? then we have to create a col, and add the contact again.
256 */
257 $old = $this;
258
259 $this->SetFont('Vera Sans', '', 10);
260 $this->SetDrawColor(0);
261 $this->SetFillColor(245, 248, 252);
262 $this->SetLineWidth(0.4);
263
264 $nom = $x['prenom'].' '.($x['nom_usage'] ? "{$x['nom_usage']} ({$x['nom']})" : $x['nom'])." ({$x['promo']})";
265 $ok = false;
266
267 if ($wp) {
08cce2ff 268 $res = XDB::query("SELECT * FROM photo WHERE attachmime IN ('jpeg','png') AND uid={?}", $x['user_id']);
0337d704 269 if ($i = $res->numRows()) {
270 $old2 = $this;
271 $photo = $res->fetchOneAssoc();
272 $width = $photo['x'] * 20/$photo['y'];
273 $GLOBALS["p{$x['user_id']}"] = $photo['attach'];
b48a0758 274
0337d704 275 $_x = $this->getX();
276 $_y = $this->getY();
277 $this->Cell(0, 20, '', '', 0, '', 1);
278 $this->Image("var://p{$x['user_id']}", $_x, $_y, $width, 20, $photo['attachmime']);
b48a0758 279
0337d704 280 if ($this->error) {
281 $this = $old2;
282 } else {
283 $this->setX($_x);
284 $this->Cell($width, 20, '', "T");
285 $h = 20 / $this->wordwrap($nom, 90-$width);
286 $this->MultiCell(0, $h, $nom, 'T', 'C');
287 $ok = true;
288 }
289 }
290 }
291 if (!$ok) {
292 $this->MultiCell(0, 6, $nom, "T", 'C', 1);
293 }
b48a0758 294
0337d704 295 if ($x['mobile']) {
296 $this->Space();
297 $this->TableRow('mobile', $x['mobile'], 'Mono');
298 }
299
300 foreach ($x['adr'] as $a) {
301 $this->Space();
302 $this->Address($a);
303 }
b48a0758 304
0337d704 305 foreach ($x['adr_pro'] as $a) {
306 if ( ! ($a['entreprise'] || $a['tel'] || $a['fax']
307 || $a['adr1'] || $a['adr2'] || $a['adr3'] || $a['postcode'] || $a['city']) )
308 {
309 continue;
310 }
311 $this->Space();
312 $this->AddressPro($a);
313 }
314
315 $this->Space(0.4, 5);
316
317 if ($this->broken) {
318 $old->NextCol();
319 $old->AddContact($x, $wp);
320 $this = $old;
321 }
322 }
323
324}
325
326?>