Paper numbering changed ("yyyy-0m" -> "m/yyyy")
[www.energie.vellum.cz.git] / common.php
1 <?php // $Id$
2
3         error_reporting(E_ALL);
4
5         include("config.php");
6
7         // $viewcvs prepared by "config.php"
8         if ($viewcvs==$HTTP_SERVER_VARS["SCRIPT_NAME"])
9                 unset($viewcvs);
10         $cvs_id_split=split(" ",$cvs_id);
11         if (count($cvs_id_split)==8) {
12                 $cvs_id_split[1]="<a href=\"$viewcvs\">".$cvs_id_split[1]."</a>";
13                 $cvs_id_split[5]="<a href=\"mailto:".$cvs_id_split[5]."@".$HTTP_SERVER_VARS["HTTP_HOST"]."\">".$cvs_id_split[5]."</a>";
14                 }
15         $cvs_id_html=join(" ",$cvs_id_split);
16
17         $have_js=(isset($HTTP_GET_VARS["have_js"]) || isset($HTTP_POST_VARS["have_js"])
18                         ? "?have_js=1" : "");
19         if (isset($detect_js) && !$have_js)
20                 $head.='<script type="text/javascript" src="have_js.js"></script>'."\n";
21
22         $user_agent=$HTTP_SERVER_VARS["HTTP_USER_AGENT"];
23         if (ereg("[[:<:]]MSIE ([0-9]+)\\.",$user_agent,$msie_major_a))
24                 $msie_major=$msie_major_a[1];
25         else if (ereg("[[:<:]]Mozilla/([0-9]+)\\.",$user_agent,$mozilla_major_a))
26                 $mozilla_major=$mozilla_major_a[1];
27
28 function addpercents($url)
29 {
30         $r=$c="";
31         foreach(preg_split('//', $url, -1, PREG_SPLIT_NO_EMPTY) as $c)
32                 if (ereg("[a-zA-Z0-9]",$c))
33                         $r.=$c;
34                 else
35                         $r.=sprintf("%%%02X",ord($c));
36         return($r);
37 }
38
39 function fatal($msg="UNKNOWN")
40 {
41         global $admin_mail;
42
43         print("\n<br /><h1 class=\"error\">Nastala chyba pøi zpracování: $msg!</h1>\n"
44                         ."<p>Mù¾ete tento problém nahlásit <a href=\"mailto:$admin_mail\">správci tohoto webu</a>.</p>\n");
45         footer();
46 }
47
48 function prepvar($name,$regex=".",$require=true)
49 {
50         global $HTTP_GET_VARS,$HTTP_POST_VARS;
51
52              if (isset($HTTP_GET_VARS[$name]))
53                 $v=$HTTP_GET_VARS[$name];
54         else if (isset($HTTP_POST_VARS[$name]))
55                 $v=$HTTP_POST_VARS[$name];
56         else
57                 unset($v);
58
59         $name_html="Parametr <span class=\"quote\">".htmlspecialchars($name)."</span>";
60
61         $regex="^$regex\$";
62         if (isset($v) && !ereg($regex,$v))
63                 fatal("$name_html nevyhovuje po¾adovanému regexu <span class=\"quote\">".htmlspecialchars($regex)."</span>");
64         if (!isset($v) && $require)
65                 fatal("$name_html je vy¾adován");
66
67         if (!isset($v))
68                 return(0);
69
70         $globals[$name]=$v;
71         return($v);
72 }
73
74 function db_connect()
75 {
76         global $db_host,$db_user,$db_pwd,$db_name;
77         global $db_link;
78
79         if (isset($db_link))
80                 return;
81         if (!($db_link=mysql_connect($db_host,$db_user,$db_pwd)))
82                 fatal("MySQL connect: ".mysql_error());
83         if (!mysql_select_db($db_name,$db_link))
84                 fatal("MySQL database select: ".mysql_error());
85 }
86
87 function db_query($query)
88 {
89         global $db_link;
90
91         db_connect();
92         if (!($r=mysql_query($query,$db_link)))
93                 fatal("MySQL query \"$query\": ".mysql_error());
94         return($r);
95 }
96
97 function db_row($query)
98 {
99         $q=db_query($query);
100         $r=mysql_fetch_row($q);
101         mysql_free_result($q);
102         return($r);
103 }
104
105 function db_item($query)
106 {
107         $row=db_row($query);
108         return($row[0]);
109 }
110
111 function month_a($year,$month,$month_last=0)
112 {
113         global $tb_obsah;
114
115         if (!$month_last)
116                 $month_last=db_item("select month_last from $tb_obsah where year='$year' and month='$month'");
117         $month_full=sprintf("%02d".($month==$month_last ? "" : "-%02d"),$month,$month_last);
118
119         $r=array("year"=>$year,"month"=>$month,"month_last"=>$month_last,"month_full"=>$month_full,
120                         "name"=>"$month".($month==$month_last ? "" : "-$month_last")."/$year",
121                         "img" =>"img/eap-$year-${month_full}.jpeg",
122                         "icon"=>"img/eap-$year-${month_full}s.jpeg",
123                         );
124         return($r);
125 }
126
127 function img_size($width,$height=0)
128 {
129         if (!$height)
130                 list($width,$height)=getimagesize($width);
131         return("style=\"border:0;width:${width}px;height:${height}px\" width=\"$width\" height=\"$height\"");
132 }
133
134 function gsm_banking()
135 {
136         return("<img src=\"img/sluzby_bankovni_pggsm.gif\" ".img_size(89,31)." alt=\"Paegas GSM banking\" class=\"img-align\" />");
137 }
138
139 function price_a()
140 {
141         if (!($f=fopen("objednavka.js","r")))
142                 fatal("Nepodaøilo se naèíst seznam dostupného zbo¾í");
143         $r=array();
144         while (($s=fgets($f,0x1000))) {
145                 if (!($s=trim($s)))
146                         break;
147                 if (!(ereg("^want_price\\[ *'([^']*)'\\]=([0-9]*);$",$s,$matched)))
148                         continue;
149                 $r[$matched[1]]=$matched[2];
150                 }
151         fclose($f);
152         return($r);
153 }
154
155 function title_name($year,$month)
156 {
157              if (isset($year) && isset($month)) {
158                 $month_a=month_a($year,$month);
159                 return("Èíslo ".$month_a["name"]);
160                 }
161         else if (isset($year))
162                 return("Roèník $year");
163         else
164                 return("V¹echny roèníky");
165 }
166
167 function title_month($year,$month)
168 {
169   $month_a=month_a($year,$month);
170         return(""
171                         ."<table border=\"0\" width=\"100%\">\n"
172                         ."<tr><td align=\"center\"><table border=\"1\" cellpadding=\"10\">\n"
173                         ."<tr><td align=\"center\"><img src=\"".$month_a["img"]."\" ".img_size($month_a["img"])
174                         ." alt=\"titulní stránka ".$month_a["name"]."\" /></td></tr>\n"
175                         ."</table></td></tr>\n"
176                         ."</table>\n"
177                         );
178 }
179
180 function title_icons_table_month($year,$month,$month_last)
181 {
182         $month_a=month_a($year,$month,$month_last);
183         print("<a href=\"title.php?year=$year&amp;month=$month\">"
184                                 ."<img src=\"".$month_a["icon"]."\" ".img_size($month_a["icon"])
185                                 ." alt=\"titulní stránka ".$month_a["name"]."\" /></a><br />"
186                         ."<a href=\"obsah.php?year=$year&amp;month=$month\">obsah ".$month_a["name"]."</a>"
187                         );
188 }
189
190 function title_icons($year,$month)
191 {
192         global $tb_obsah;
193
194         print("<h2>"
195                 .(isset($year) ? "<a name=\"year_$year\">" : "")
196                 .title_name(&$year,&$month)
197                 .(isset($year) ? "</a>" : "")
198                 ."</h2>\n");
199
200         $result=db_query("select year,month,month_last from $tb_obsah"
201                         .(isset($year) || isset($month) ? " where" : "")
202                         .(isset($year ) ? " year=$year"   : "")
203                         .(isset($year) && isset($month) ? " and" : "")
204                         .(isset($month) ?   " month=$month" : "")
205                         ." order by year,month");
206         $split=6;
207
208         // $year variable changes its meaning here!!!
209         if (isset($year))
210                 $wanted_year=$year;
211         $year=0;
212
213         $fin_split="";
214         $fin_year="";
215         while ($row=mysql_fetch_array($result)) {
216                 $row["month"     ]--;
217                 $row["month_last"]--;
218
219                 if ($row["year"]!=$year) {
220                         print($fin_split.$fin_year);
221
222                         $year=$row["year"];
223                         print(""
224                                         .(!isset($wanted_year) ? "<p><a name=\"year_$year\">&nbsp;</a></p>" : "")
225                                         ."<table border=\"0\" width=\"100%\"><tr><td align=\"center\"><table border=\"1\" cellpadding=\"5\">\n"
226                                         ."<tr><th colspan=\"$split\">Roèník $year (<a href=\"obsah.php?year=$year\">obsahy èísel</a>)</th></tr>\n"
227                                         );
228                         $fin_year="</table></td></tr></table>\n";
229                         $fin_split="";
230                         $month=-1;
231                         $floor=-1;
232                         }
233                 while ($floor<floor($row["month"]/$split)) {
234                         print($fin_split."<tr>");
235                         $fin_split="</tr>\n";
236                         $floor++;
237                         $month=$floor*$split-1;
238                         }
239                 while ($month+1<$row["month"]) {
240                         print("<td></td>");
241                         $month++;
242                         }
243                 print("<td align=\"center\""
244                                 .($row["month_last"]!=$row["month"] ? " colspan=\"".($row["month_last"]+1-$row["month"])."\"" : "")
245                                 .">");
246                 title_icons_table_month($year,$row["month"]+1,$row["month_last"]+1);
247                 print("</td>\n");
248                 $month=$row["month_last"];
249                 }
250         mysql_free_result($result);
251         print($fin_split.$fin_year);
252 }
253
254 function title($year,$month)
255 {
256         if (isset($year) && isset($month))
257                 return(title_month( $year, $month));
258         else
259                 return(title_icons(&$year,&$month));
260 }
261
262 function image_supported($mime)
263 {
264         global $HTTP_SERVER_VARS;
265
266         $exp=explode(",",$HTTP_SERVER_VARS["HTTP_ACCEPT"]);
267         while (($s=array_shift($exp))) {
268                 $s=trim(ereg_replace(";.*","",$s));
269                 if ($s==$mime)
270                         return(true);
271                 }
272         return(false);
273 }
274
275 function footer()
276 {
277         // deadlock prevention:
278         global $footer_passed;
279         if (isset($footer_passed))
280                 exit();
281         $footer_passed=true;
282
283         global $cvs_id_html,$viewcvs,$viewcvs,$HTTP_SERVER_VARS;
284         ?>
285 <p>&nbsp;</p>
286 <hr />
287 <table border="0" width="100%">
288 <tr><td align="left"><span class="cvs-id"><?php print($cvs_id_html); ?></span></td><td align="right"><a
289         href="http://validator.w3.org/check/referer"><img src="http://www.w3.org/Icons/valid-xhtml10"
290                 <?php print(img_size(88,31)); ?> alt="Valid XHTML 1.0!" /></a><a
291         href="http://jigsaw.w3.org/css-validator/validator?warning=2&amp;profile=css2&amp;uri=<?php
292                 print(addpercents("http://".$HTTP_SERVER_VARS["HTTP_HOST"].$HTTP_SERVER_VARS["REQUEST_URI"]));
293                 ?>"><img src="http://jigsaw.w3.org/css-validator/images/vcss"
294                 <?php print(img_size(88,31)); ?> alt="Valid CSS!" /></a></td></tr>
295 </table>
296 </body></html>
297         <?php
298         exit();
299 }
300
301 // Stolen from: php-manual.html#function.header
302 function no_cache()
303 {
304         header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");          // Date in the past
305         header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); // always modified
306         header("Cache-Control: no-cache, must-revalidate");        // HTTP/1.1
307         header("Pragma: no-cache");                                // HTTP/1.0
308 }
309
310 function heading()
311 {
312         global $msie_major,$mozilla_major,$title_tail,$head_css,$head;
313
314         header("Content-type: text/html; charset=iso-8859-2");
315         if (!isset($msie_major) || $msie_major>=4)
316                 print('<?xml version="1.0" encoding="iso-8859-2"?>'."\n");
317 ?>
318 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
319 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">
320 <head><title>Energie &amp; peníze<?php
321         if (isset($title_tail))
322                 print(": $title_tail");
323 ?></title>
324 <style type="text/css"><!--
325 .cvs-id  { font-family: monospace; }
326 .error   { color: red;    background-color: transparent; }
327 .quote   { font-family: monospace; }
328 body {
329                 background-color: black;
330                 color: white;
331                 }
332 :link    { color: aqua;   background-color: transparent; }
333 :visited { color: teal;   background-color: transparent; }
334 h1,h2    { color: yellow; background-color: transparent; }
335 <?php
336         if (isset($head_css))
337                 print(trim($head_css)."\n");
338         print("--></style>\n");
339         if (isset($head))
340                 print($head);
341         print("</head><body");
342         if (isset($mozilla_major) && $mozilla_major==4)
343                 print(" bgcolor=\"black\" text=\"white\" link=\"cyan\" vlink=\"teal\"");
344         print(">\n");
345 }
346 ?>