closes FS#352
[platal.git] / include / contacts.pdf.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2004 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 define ('FPDF_FONTPATH', dirname(__FILE__).'/fonts/');
23 require_once('/usr/share/fpdf/fpdf.php');
24 require_once('xorg.varstream.inc.php');
25
26 class 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');
41
42 $this->AddFont('Vera Mono', '', 'VeraMono.php');
43
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 {
57 if($x==-1) {
58 $x = $this->x;
59 }
60 if($y==-1) {
61 $y=$this->y;
62 }
63 if($this->angle != 0) {
64 $this->_out('Q');
65 }
66 $this->angle = $angle;
67 if($angle != 0)
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 }
77
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);
87
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);
97 $this->Image(dirname(__FILE__).'/../htdocs/images/logo.png', 5, 5, 10, 10, 'png', 'https://www.polytechnique.org/');
98
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');
112 $this->Cell(0, 10, '(en date du '.strftime('%d %B %Y').')', 0, 0, 'R');
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);
128 if ($this->col == 0) { $this->AddPage(); }
129 }
130
131 function AcceptPageBreak()
132 {
133 $this->broken = true;
134 }
135
136 function Space($w=0.1, $h=0.5)
137 {
138 $x = $this->getX();
139 $y = $this->getY();
140 $this->SetLineWidth($w);
141 $this->Line($x, $y, $x+90, $y);
142 $this->Ln($h);
143 }
144
145 function TableRow($l, $r, $font = 'Sans')
146 {
147 $this->SetFont('Vera Sans', 'B', 8);
148 $y = $this->getY();
149 $x = $this->getX();
150 $this->MultiCell(25, 4, $l, '', 1);
151 $y1 = $this->getY();
152
153 $this->SetFont('Vera '.$font, '', 8);
154 $this->setY($y);
155 $first = 1;
156
157 $this->setX($x+25);
158 $this->MultiCell(65, 4, $r, '', 1);
159
160 $this->setY(max($y1, $this->getY())+0.5);
161 $this->setX($x);
162 }
163
164 function Address($a)
165 {
166 $l = "adresse\n";
167 if ($a['active']) {
168 $l .= 'actuelle';
169 } elseif ($a['secondaire']) {
170 $l .= 'secondaire';
171 } else {
172 $l .= 'principale';
173 }
174
175 $r = '';
176 $r = trim("$r\n".$a['adr1']);
177 $r = trim("$r\n".$a['adr2']);
178 $r = trim("$r\n".$a['adr3']);
179 $r = trim("$r\n".trim($a['postcode'].' '.$a['city']));
180
181 $this->TableRow($l, $r);
182
183 if ($a['tel']) {
184 $this->TableRow('Téléphone', $a['tel'], 'Mono');
185 }
186 if ($a['fax']) {
187 $this->TableRow('Fax', $a['fax'], 'Mono');
188 }
189 }
190
191 function AddressPro($a)
192 {
193 if ($a['entreprise']) {
194 $this->TableRow('Entreprise', $a['entreprise']);
195 }
196
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
227 foreach ($lines as $line)
228 {
229 $words = preg_split('/ +/', $line);
230 $width = 0;
231
232 foreach ($words as $word)
233 {
234 $wordwidth = $this->GetStringWidth($word);
235 if ($width + $wordwidth <= $maxwidth)
236 {
237 $width += $wordwidth + $space;
238 $text .= $word.' ';
239 }
240 else
241 {
242 $width = $wordwidth + $space;
243 $text = rtrim($text)."\n".$word.'
244 ';
245 $count++;
246 }
247 }
248 $text = rtrim($text)."\n";
249 $count++;
250 }
251 $text = rtrim($text);
252 return $count;
253 }
254
255 function AddContact($x, $wp = true)
256 {
257 global $globals;
258 /* infamous hack :
259 1- we store the current state.
260 2- at the end, we find out if we triggered the page break,
261 -> no ? ok
262 -> yes ? then we have to create a col, and add the contact again.
263 */
264 $old = $this;
265
266 $this->SetFont('Vera Sans', '', 10);
267 $this->SetDrawColor(0);
268 $this->SetFillColor(245, 248, 252);
269 $this->SetLineWidth(0.4);
270
271 $nom = $x['prenom'].' '.($x['nom_usage'] ? "{$x['nom_usage']} ({$x['nom']})" : $x['nom'])." ({$x['promo']})";
272 $ok = false;
273
274 if ($wp) {
275 $res = $globals->xdb->query("SELECT * FROM photo WHERE attachmime IN ('jpeg','png') AND uid={?}", $x['user_id']);
276 if ($i = $res->numRows()) {
277 $old2 = $this;
278 $photo = $res->fetchOneAssoc();
279 $width = $photo['x'] * 20/$photo['y'];
280 $GLOBALS["p{$x['user_id']}"] = $photo['attach'];
281
282 $_x = $this->getX();
283 $_y = $this->getY();
284 $this->Cell(0, 20, '', '', 0, '', 1);
285 $this->Image("var://p{$x['user_id']}", $_x, $_y, $width, 20, $photo['attachmime']);
286
287 if ($this->error) {
288 $this = $old2;
289 } else {
290 $this->setX($_x);
291 $this->Cell($width, 20, '', "T");
292 $h = 20 / $this->wordwrap($nom, 90-$width);
293 $this->MultiCell(0, $h, $nom, 'T', 'C');
294 $ok = true;
295 }
296 }
297 }
298 if (!$ok) {
299 $this->MultiCell(0, 6, $nom, "T", 'C', 1);
300 }
301
302 if ($x['mobile']) {
303 $this->Space();
304 $this->TableRow('mobile', $x['mobile'], 'Mono');
305 }
306
307 foreach ($x['adr'] as $a) {
308 $this->Space();
309 $this->Address($a);
310 }
311
312 foreach ($x['adr_pro'] as $a) {
313 if ( ! ($a['entreprise'] || $a['tel'] || $a['fax']
314 || $a['adr1'] || $a['adr2'] || $a['adr3'] || $a['postcode'] || $a['city']) )
315 {
316 continue;
317 }
318 $this->Space();
319 $this->AddressPro($a);
320 }
321
322 $this->Space(0.4, 5);
323
324 if ($this->broken) {
325 $old->NextCol();
326 $old->AddContact($x, $wp);
327 $this = $old;
328 }
329 }
330
331 }
332
333 ?>