source: trunk/action.php @ 1817

Last change on this file since 1817 was 1817, checked in by plg, 17 years ago

New: history logs high quality access via action.php. A new column
#history.is_high was added. Filter was added on administration history
detail view.

Modification: function get_sql_condition_FandF was slightly refactored for
presentation improvement.

  • Property svn:keywords set to Date Author Rev URL
File size: 5.5 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
8// | file          : $URL: trunk/action.php $
9// | last update   : $Date: 2007-02-14 22:53:02 +0000 (Wed, 14 Feb 2007) $
10// | last modifier : $Author: plg $
11// | revision      : $Rev: 1817 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28define('PHPWG_ROOT_PATH','./');
29include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
30
31// Check Access and exit when user status is not ok
32check_status(ACCESS_GUEST);
33
34function guess_mime_type($ext)
35{
36  switch ( strtolower($ext) )
37  {
38    case "jpe": case "jpeg":
39    case "jpg": $ctype="image/jpeg"; break;
40    case "png": $ctype="image/png"; break;
41    case "gif": $ctype="image/gif"; break;
42    case "tiff":
43    case "tif": $ctype="image/tiff"; break;
44    case "txt": $ctype="text/plain"; break;
45    case "html":
46    case "htm": $ctype="text/html"; break;
47    case "xml": $ctype="text/xml"; break;
48    case "pdf": $ctype="application/pdf"; break;
49    case "zip": $ctype="application/zip"; break;
50    case "ogg": $ctype="application/ogg"; break;
51    default: $ctype="application/octet-stream";
52  }
53  return $ctype;
54}
55
56function do_error( $code, $str )
57{
58  set_status_header( $code );
59  echo $str ;
60  exit();
61}
62
63
64if (!isset($_GET['id'])
65    or !is_numeric($_GET['id'])
66    or !isset($_GET['part'])
67    or !in_array($_GET['part'], array('t','e','i','h') ) )
68{
69  do_error(400, 'Invalid request - id/part');
70}
71
72$query = '
73SELECT * FROM '. IMAGES_TABLE.'
74  WHERE id='.$_GET['id'].'
75;';
76
77$result = pwg_query($query);
78$element_info = mysql_fetch_assoc($result);
79if ( empty($element_info) )
80{
81  do_error(404, 'Requested id not found');
82}
83
84// $filter['visible_categories'] and $filter['visible_images']
85// are not used because it's not necessary (filter <> restriction)
86$query='
87SELECT id
88  FROM '.CATEGORIES_TABLE.'
89    INNER JOIN '.IMAGE_CATEGORY_TABLE.' ON category_id = id
90  WHERE image_id = '.$_GET['id'].'
91'.get_sql_condition_FandF(
92  array('forbidden_categories' => 'category_id'),
93  '    AND'
94  ).'
95  LIMIT 1
96;';
97if ( mysql_num_rows(pwg_query($query))<1 )
98{
99  do_error(401, 'Access denied');
100}
101
102include_once(PHPWG_ROOT_PATH.'include/functions_picture.inc.php');
103$file='';
104switch ($_GET['part'])
105{
106  case 't':
107    $file = get_thumbnail_path($element_info);
108    break;
109  case 'e':
110    $file = get_element_path($element_info);
111    break;
112  case 'i':
113    $file = get_image_path($element_info);
114    break;
115  case 'h':
116    if ( $user['enabled_high']!='true' )
117    {
118      do_error(401, 'Access denied h');
119    }
120    $file = get_high_path($element_info);
121    break;
122}
123
124if ( empty($file) )
125{
126  do_error(404, 'Requested file not found');
127}
128
129if ($_GET['part'] == 'h') {
130  $is_high = true;
131  pwg_log($_GET['id'], $is_high);
132}
133
134$http_headers = array();
135
136$ctype = null;
137if (!url_is_remote($file))
138{
139  if ( !@is_readable($file) )
140  {
141    do_error(404, "Requested file not found - $file");
142  }
143  $http_headers[] = 'Content-Length: '.@filesize($file);
144  if ( function_exists('mime_content_type') )
145  {
146    $ctype = mime_content_type($file);
147  }
148
149  $gmt_mtime = gmdate('D, d M Y H:i:s', filemtime($file)).' GMT';
150  $http_headers[] = 'Last-Modified: '.$gmt_mtime;
151
152  // following lines would indicate how the client should handle the cache
153  /* $max_age=300;
154  $http_headers[] = 'Expires: '.gmdate('D, d M Y H:i:s', time()+$max_age).' GMT';
155  // HTTP/1.1 only
156  $http_headers[] = 'Cache-Control: private, must-revalidate, max-age='.$max_age;*/
157
158  if ( isset( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) )
159  {
160    set_status_header(304);
161    foreach ($http_headers as $header)
162    {
163      header( $header );
164    }
165    exit();
166  }
167}
168
169if (!isset($ctype))
170{ // give it a guess
171  $ctype = guess_mime_type( get_extension($file) );
172}
173
174$http_headers[] = 'Content-Type: '.$ctype;
175
176if (!isset($_GET['view']))
177{
178  $http_headers[] = 'Content-Disposition: attachment; filename="'
179            .basename($file).'";';
180  $http_headers[] = 'Content-Transfer-Encoding: binary';
181}
182else
183{
184  $http_headers[] = 'Content-Disposition: inline; filename="'
185            .basename($file).'";';
186}
187
188foreach ($http_headers as $header)
189{
190  header( $header );
191}
192
193// Looking at the safe_mode configuration for execution time
194if (ini_get('safe_mode') == 0)
195{
196  @set_time_limit(0);
197}
198
199@readfile($file);
200
201?>
Note: See TracBrowser for help on using the repository browser.