release 1.1.8
[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.8";
84 $stable = "1.0.0";
85
86 if (preg_match("/^1\.1\.7/", $version)) {
87   $updates = "Version: " . $unstable . "\n" .
88     "4: Bug fixes\n" .
89     "";
90 } else if (preg_match("/^1\.1\.6/", $version)) {
91   $updates = "Version: " . $unstable . "\n" .
92     "8: Automatic rocket design optimization\n" .
93     "";
94 } else if (preg_match("/^1\.1\.5/", $version)) {
95   $updates = "Version: " . $unstable . "\n" .
96     "8: Automatic rocket design optimization\n" .
97     "6: Initial localization support\n" .
98     "5: Scaling support\n" .
99     "4: Bug fixes\n" .
100     "";
101 } else if (preg_match("/^1\.1\.4/", $version)) {
102   $updates = "Version: " . $unstable . "\n" .
103     "8: Automatic rocket design optimization\n" .
104     "6: Initial localization support\n" .
105     "5: Fixes to printing system\n" .
106     "5: Scaling support\n" .
107     "";
108 } else if (preg_match("/^1\.1\.3/", $version)) {
109   $updates = "Version: " . $unstable . "\n" .
110     "8: Automatic rocket design optimization\n" .
111     "7: Initial printing support\n" .
112     "6: Initial localization support\n" .
113     "5: Scaling support\n" .
114     "4: Bug fixes\n" .
115     "";
116 } else if (preg_match("/^1\.1\.[12]/", $version)) {
117   $updates = "Version: " . $unstable . "\n" .
118     "8: Automatic rocket design optimization\n" .
119     "6: Initial printing support\n" .
120     "5: Initial drag-and-drop support\n" .
121     "5: Initial localization support\n" .
122     "5: Scaling support\n" .
123     "4: Bug fixes\n" .
124     "";
125 } else if (preg_match("/^1\.1\.0/", $version)) {
126   $updates = "Version: " . $unstable . "\n" .
127     "8: Automatic rocket design optimization\n" .
128     "6: Initial printing support\n" .
129     "6: Initial localization support\n" .
130     "6: Enhanced motor selection\n" .
131     "5: Rewritten simulation code\n" .
132     "5: Drag-and-drop support\n" .
133     "4: Bug fixes\n" .
134     "";
135 } else if (preg_match("/^0\.9\.6/", $version)) {
136   $updates = "Version: " . $stable . "\n" .
137     "6: Hundreds of new thrustcurves\n" .
138     "5: Bug fixes\n" .
139     "";
140 } else if (preg_match("/^0\.9\.[45]/", $version)) {
141   $updates = "Version: " . $stable . "\n" .
142     "7: Hundreds of new thrustcurves\n" .
143     "6: Aerodynamic computation updates\n" .
144     "5: Numerous bug fixes" .
145     "";
146 }
147
148
149 if (strlen($updates) == 0) {
150
151   // No updates available
152   header("HTTP/1.0 204 No Content");
153
154 } else {
155
156   header("HTTP/1.0 200 OK");
157   echo $updates;
158
159 }
160
161 ?>