release 1.1.6
[debian/openrocket] / web / html / actions / updates.php
1 <?
2 $logfiles = "/home/groups/o/op/openrocket/persistent/logs/access-";
3
4
5 // getallheaders method
6 if (!function_exists('getallheaders')) {
7     function getallheaders() {
8        foreach ($_SERVER as $name => $value) {
9            if (substr($name, 0, 5) == 'HTTP_') {
10                $headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] = $value;
11            }
12        }
13        return $headers;
14     }
15 }
16
17
18 // Parse + validate headers
19 $orid = "";
20 $orversion = "";
21 $oros = "";
22 $orjava = "";
23 $orcountry = "";
24 $orcores = "";
25 $orlocale = "";
26 foreach (getallheaders() as $header => $value) {
27     if (preg_match("/^[a-zA-Z0-9 !$%&()*+,.\\/:=?@_~-]{1,40}$/", $value)) {
28         $h = strtolower($header);
29         if ($h == 'x-openrocket-version') {
30             $orversion = $value;
31         } else if ($h == 'x-openrocket-id') {
32             $orid = $value;
33         } else if ($h == 'x-openrocket-os') {
34             $oros = $value;
35         } else if ($h == 'x-openrocket-java') {
36             $orjava = $value;
37         } else if ($h == 'x-openrocket-country') {
38             $orcountry = $value;
39         } else if ($h == 'x-openrocket-cpus') {
40             $orcores = $value;
41         } else if ($h == 'x-openrocket-locale') {
42             $orlocale = $value;
43         }
44     }
45 }
46
47 // Log the request
48 if ((strlen($orversion) > 0 || strlen($orid) > 0 || strlen($oros) > 0
49      || strlen($orjava) > 0 || strlen($orcountry) > 0 
50      || strlen($orcores) > 0 || strlen($orlocale) > 0) &&
51     (strlen($orversion) < 20 && strlen($orid) < 50 && strlen($oros) < 50
52      && strlen($orjava) < 50 && strlen($orcountry) < 50) 
53      && strlen($orcores) < 10 && strlen($orlocale) < 20) {
54
55     $file = $logfiles . gmdate("Y-m");
56     $line = gmdate("Y-m-d H:i:s") . ";" . $orid . ";" . $orversion .
57         ";" . $oros . ";" . $orjava . ";" . $orcountry . ";" . $orcores . 
58         ";" . $orlocale . "\n";
59
60     $fp = fopen($file, 'a');
61     if ($fp != FALSE) {
62         fwrite($fp, $line);
63         fclose($fp);
64     }
65 }
66
67
68 // Set HTTP content-type header
69 // No charset allowed for 0.9.4
70 //header("Content-type: text/plain; charset=utf-8");
71 header("Content-type: text/plain");
72
73 /*
74  * Currently all old versions are handled manually.
75  * Update checking was introduced in OpenRocket 0.9.4
76  *
77  * We ignore "pre" versions, they are handled exacly like
78  * their non-pre counterparts.
79  */
80 $version = $_GET["version"];
81 $updates = "";
82
83 $unstable = "1.1.6";
84 $stable = "1.0.0";
85
86 if (preg_match("/^1\.1\.5/", $version)) {
87   $updates = "Version: " . $unstable . "\n" .
88     "6: Initial localization support\n" .
89     "5: Scaling support\n" .
90     "4: Bug fixes\n" .
91     "";
92 } else if (preg_match("/^1\.1\.4/", $version)) {
93   $updates = "Version: " . $unstable . "\n" .
94     "6: Initial localization support\n" .
95     "5: Fixes to printing system\n" .
96     "5: Scaling support\n" .
97     "";
98 } else if (preg_match("/^1\.1\.3/", $version)) {
99   $updates = "Version: " . $unstable . "\n" .
100     "7: Initial printing support\n" .
101     "6: Initial localization support\n" .
102     "5: Scaling support\n" .
103     "4: Bug fixes\n" .
104     "";
105 } else if (preg_match("/^1\.1\.[12]/", $version)) {
106   $updates = "Version: " . $unstable . "\n" .
107     "6: Initial printing support\n" .
108     "5: Initial drag-and-drop support\n" .
109     "5: Initial localization support\n" .
110     "5: Scaling support\n" .
111     "4: Bug fixes\n" .
112     "";
113 } else if (preg_match("/^1\.1\.0/", $version)) {
114   $updates = "Version: " . $unstable . "\n" .
115     "6: Initial printing support\n" .
116     "6: Initial localization support\n" .
117     "6: Enhanced motor selection\n" .
118     "5: Rewritten simulation code\n" .
119     "5: Drag-and-drop support\n" .
120     "4: Bug fixes\n" .
121     "";
122 } else if (preg_match("/^0\.9\.6/", $version)) {
123   $updates = "Version: " . $stable . "\n" .
124     "6: Hundreds of new thrustcurves\n" .
125     "5: Bug fixes\n" .
126     "";
127 } else if (preg_match("/^0\.9\.[45]/", $version)) {
128   $updates = "Version: " . $stable . "\n" .
129     "7: Hundreds of new thrustcurves\n" .
130     "6: Aerodynamic computation updates\n" .
131     "5: Numerous bug fixes" .
132     "";
133 }
134
135
136 if (strlen($updates) == 0) {
137
138   // No updates available
139   header("HTTP/1.0 204 No Content");
140
141 } else {
142
143   header("HTTP/1.0 200 OK");
144   echo $updates;
145
146 }
147
148 ?>