aboutsummaryrefslogtreecommitdiff
path: root/frontend/d.php
blob: e68b05c1ffa62dbd6bc890534f3c7614118daf34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<?php

/*
   Cheetah News d.php
   Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Wojciech Polak.
   Copyright (C) 2006 The Cheetah News Team.

   This program is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by the
   Free Software Foundation; either version 3 of the License, or (at your
   option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License along
   with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

require 'lib/include.php';
require 'lib/d-files.php';

$copyright = "/*
   Cheetah News Aggregator.
   Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Wojciech Polak.
   Copyright (C) 2006 The Cheetah News Team.

   This program is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by the
   Free Software Foundation; either version 3 of the License, or (at your
   option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License along
   with this program.  If not, see <http://www.gnu.org/licenses/>.
*/\n\n";

getvars ('q');

if ($q == 'popular')
  $days = 1;
else
  $days = 30;

start_session (null, false, 86400 * $days);
$session->auth ('iflogged');

$headers = getallheaders ();
$logged = $session->status['afterlogged'] == 'yes';

if (isset ($files[$q])) {
  $d = $files[$q];
  if ($d[0] == 'js') {
    if (!$logged && $q != 'login')
      return;
    $m = $d[1];
    if ($mofile)
      array_push ($m, $mofile);
    checkModification ($m, true);
    header ('Content-Type: application/x-javascript; charset=UTF-8');
    echo $copyright;
    if ($q == 'bt')
      convert_mo ();
    printJsCode ($d[1]);
  }
  else if ($d[0] == 'css') {
    checkModification ($d[1], false);
    header ('Content-Type: text/css');
    printCode ($d[1]);
  }
  else if ($d[0] == 'xml') {
    checkModification ($d[1], false);
    header ('Content-Type: application/xml; charset=UTF-8');
    printCode ($d[1]);
  }
}

function checkModification ($files, $checkLang)
{
  global $CONF, $session, $headers, $locale;
  $lm = 0;
  foreach ($files as $f)
  {
    if ($f[0] != '/')
      $f = $CONF['baseDir'].'/'.$f;
    $fmt = @filemtime ($f);
    if ($fmt > $lm)
      $lm = $fmt;
  }

  $ts = $lm - count ($files);
  if ($checkLang)
    $ts -= calstr ($locale);

  $lastModified = gmdate ('D, d M Y H:i:s T', $ts);
  $tag = $lastModified.(string)count ($files).$session->id;
  $ETag = '';
  if ($checkLang)
    $ETag = '"'.md5 ($tag.$locale).'"';
  else
    $ETag = '"'.md5 ($tag).'"';

  if (array_key_exists ('If-Modified-Since', $headers) &&
      array_key_exists ('If-None-Match', $headers))
  {
    $headers['If-None-Match'] = str_replace ('-gzip', '',
					     $headers['If-None-Match']);
    if ($headers['If-Modified-Since'] == $lastModified &&
	$headers['If-None-Match'] == $ETag) {
      header ('HTTP/1.1 304 Not Modified');
      exit ();
    }
  }
  else if (array_key_exists ('If-Modified-Since', $headers)) {
    $ifModifiedSince = $headers['If-Modified-Since'];
    $p = strpos ($ifModifiedSince, ';');
    if ($p)
      $ifModifiedSince = substr ($ifModifiedSince, 0, $p);
    if ($ifModifiedSince == $lastModified) {
      header ('HTTP/1.1 304 Not Modified');
      exit ();
    }
  }

  header ("Last-Modified: $lastModified");
  header ("ETag: $ETag");
}

function normalize_filename ($f)
{
  global $CONF;
  if ($f[0] != '/')
    return $CONF['baseDir'].'/'.$f;
  return $f;
}

function calstr (&$s)
{
  $a = dechex (crc32 ($s));
  $b = 0;
  $len = strlen ($a);
  for ($i = 0; $i < $len; $i++)
    $b += ord ($a[$i]);
  return $b;
}

function printJsCode ($files)
{
  /* Loading mod_jspp.so from php.ini is recommended. If, however, you
     cannot afford it, uncomment the following:
  if (!extension_loaded ('jspp') && @dl ('mod_jspp.so') == false) {
    error_log ('Cannot load mod_jspp.so');
    printCode ($files);
    return;
  }
  */
  jspp_gettext (array_map ('normalize_filename', $files));
}

function printCode ($files)
{
  global $CONF;
  foreach ($files as $f)
  {
    if ($f[0] != '/')
      $f = $CONF['baseDir'].'/'.$f;
    $fp = @fopen ($f, 'r');
    if ($fp) {
      while (!feof ($fp))
	echo fread ($fp, 4096);
      fclose ($fp);
    }
  }
}

?>

Return to:

Send suggestions and report system problems to the System administrator.