image.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. /* Copyright (C) 2017 Oscss-Shop <support@oscss-shop.fr>.
  3. * Copyright (C) 2008-2011 Laurent Destailleur <eldy@users.sourceforge.net>
  4. *
  5. * This program is free software; you can redistribute it and/or modifyion 2.0 (the "License");
  6. * it under the terms of the GNU General Public License as published bypliance with the License.
  7. * the Free Software Foundation; either version 3 of the License, or
  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 <http://www.gnu.org/licenses/>.
  16. * or see http://www.gnu.org/
  17. */
  18. if (!defined('REQUIRE_JQUERY_BLOCKUI')) define('REQUIRE_JQUERY_BLOCKUI', 1);
  19. /**
  20. * \file htdocs/admin/dolistore/ajax/image.php
  21. * \ingroup admin
  22. * \brief Page des informations dolistore
  23. */
  24. require "../../../main.inc.php";
  25. // CORE
  26. global $lang, $user, $conf;
  27. require_once DOL_DOCUMENT_ROOT.'/admin/dolistore/class/dolistore.class.php';
  28. $dolistore = new Dolistore();
  29. $id_product = GETPOST('id_product', 'int');
  30. $id_image = GETPOST('id_image', 'int');
  31. // quality : image resize with this in the URL : "cart_default", "home_default", "large_default", "medium_default", "small_default", "thickbox_default"
  32. $quality = GETPOST('quality', 'alpha');
  33. try {
  34. $url = $conf->global->MAIN_MODULE_DOLISTORE_API_SRV.'/api/images/products/'.$id_product.'/'.$id_image.'/'.$quality;
  35. $api = new PrestaShopWebservice(
  36. $conf->global->MAIN_MODULE_DOLISTORE_API_SRV,
  37. $conf->global->MAIN_MODULE_DOLISTORE_API_KEY, $dolistore->debug_api
  38. );
  39. //echo $url;
  40. $request = $api->executeRequest($url, array(CURLOPT_CUSTOMREQUEST => 'GET'));
  41. header('Content-type:image');
  42. print $request['response'];
  43. } catch (PrestaShopWebserviceException $e) {
  44. // Here we are dealing with errors
  45. $trace = $e->getTrace();
  46. if ($trace[0]['args'][0] == 404) die('Bad ID');
  47. elseif ($trace[0]['args'][0] == 401) die('Bad auth key');
  48. else die('Can not access to '.$conf->global->MAIN_MODULE_DOLISTORE_API_SRV);
  49. }