dolibarr  17.0.4
index.php
1 <?php
2 /* Copyright (C) 2018 Andreu Bisquerra <jove@bisquerra.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  */
17 
18 // This page return an image of a photo
19 
20 //if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
21 //if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled cause need to load personalized language
22 if (!defined('NOREQUIRESOC')) {
23  define('NOREQUIRESOC', '1');
24 }
25 //if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1');
26 if (!defined('NOTOKENRENEWAL')) {
27  define('NOTOKENRENEWAL', '1');
28 }
29 if (!defined('NOREQUIREMENU')) {
30  define('NOREQUIREMENU', '1');
31 }
32 if (!defined('NOREQUIREHTML')) {
33  define('NOREQUIREHTML', '1');
34 }
35 if (!defined('NOREQUIREAJAX')) {
36  define('NOREQUIREAJAX', '1');
37 }
38 
39 if (!defined('INCLUDE_PHONEPAGE_FROM_PUBLIC_PAGE')) {
40  require '../../main.inc.php'; // Load $user and permissions
41 }
42 
43 $id = GETPOST('id', 'int');
44 $w = GETPOST('w', 'int');
45 $h = GETPOST('h', 'int');
46 $query = GETPOST('query', 'alpha');
47 
48 
49 
50 /*
51  * View
52  */
53 
54 if ($query == "cat") {
55  require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
56  require_once DOL_DOCUMENT_ROOT.'/core/lib/categories.lib.php';
57 
58  $object = new Categorie($db);
59  $result = $object->fetch($id);
60 
61  $upload_dir = $conf->categorie->multidir_output[$object->entity];
62  $pdir = get_exdir($object->id, 2, 0, 0, $object, 'category').$object->id."/photos/";
63  $dir = $upload_dir.'/'.$pdir;
64 
65  foreach ($object->liste_photos($dir) as $key => $obj) {
66  if ($obj['photo_vignette']) {
67  $filename = $obj['photo_vignette'];
68  } else {
69  $filename = $obj['photo'];
70  }
71  $file = DOL_URL_ROOT.'/viewimage.php?cache=1&publictakepos=1&modulepart=category&entity='.$object->entity.'&file='.urlencode($pdir.$filename);
72  header('Location: '.$file);
73  exit;
74  }
75  header('Location: ../../public/theme/common/nophoto.png');
76  exit;
77 } elseif ($query == "pro") {
78  require_once DOL_DOCUMENT_ROOT."/product/class/product.class.php";
79 
80  $objProd = new Product($db);
81  $objProd->fetch($id);
82  $image = $objProd->show_photos('product', $conf->product->multidir_output[$objProd->entity], 'small', 1);
83 
84  $match = array();
85  preg_match('@src="([^"]+)"@', $image, $match);
86  $file = array_pop($match);
87  if ($file == "") {
88  header('Location: ../../public/theme/common/nophoto.png');
89  exit;
90  } else {
91  if (!defined('INCLUDE_PHONEPAGE_FROM_PUBLIC_PAGE')) {
92  header('Location: '.$file.'&cache=1');
93  exit;
94  } else {
95  header('Location: '.$file.'&cache=1&publictakepos=1&modulepart=product');
96  exit;
97  }
98  }
99 } else {
100  // TODO We don't need this. Size of image must be defined on HTML page, image must NOT be resized when downloaded.
101 
102  // The file
103  $filename = $query.".jpg";
104 
105  // Dimensions
106  list($width, $height) = getimagesize($filename);
107  $new_width = $w;
108  $new_height = $h;
109 
110  // Resample
111  $image_p = imagecreatetruecolor($new_width, $new_height);
112  $image = imagecreatefromjpeg($filename);
113  imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
114 
115  // Output
116  imagejpeg($image_p, null, 100);
117 }
Class to manage categories.
Class to manage products or services.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.