image.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. /* Copyright (C) 2017 Oscss-Shop <support@oscss-shop.fr>.
  3. * Copyright (C) 2008-2011 Laurent Destailleur <eldy@users.sourceforge.net>
  4. * Copyright (C) 2020 Frédéric France <frederic.france@netlogic.fr>
  5. *
  6. * This program is free software; you can redistribute it and/or modifyion 2.0 (the "License");
  7. * it under the terms of the GNU General Public License as published bypliance with the License.
  8. * the Free Software Foundation; either version 3 of the License, or
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. * or see https://www.gnu.org/
  18. */
  19. if (!defined('NOTOKENRENEWAL')) {
  20. define('NOTOKENRENEWAL', 1);
  21. }
  22. /**
  23. * \file htdocs/admin/dolistore/ajax/image.php
  24. * \ingroup admin
  25. * \brief Page des informations dolistore
  26. */
  27. require "../../../main.inc.php";
  28. require_once DOL_DOCUMENT_ROOT.'/admin/dolistore/class/dolistore.class.php';
  29. /*
  30. * View
  31. */
  32. top_httphead('image');
  33. $dolistore = new Dolistore();
  34. $id_product = GETPOST('id_product', 'int');
  35. $id_image = GETPOST('id_image', 'int');
  36. // quality : image resize with this in the URL : "cart_default", "home_default", "large_default", "medium_default", "small_default", "thickbox_default"
  37. $quality = GETPOST('quality', 'alpha');
  38. try {
  39. $url = $conf->global->MAIN_MODULE_DOLISTORE_API_SRV.'/api/images/products/'.$id_product.'/'.$id_image.'/'.$quality;
  40. $api = new PrestaShopWebservice(
  41. $conf->global->MAIN_MODULE_DOLISTORE_API_SRV,
  42. $conf->global->MAIN_MODULE_DOLISTORE_API_KEY,
  43. $dolistore->debug_api
  44. );
  45. //echo $url;
  46. $request = $api->executeRequest($url, array(CURLOPT_CUSTOMREQUEST => 'GET'));
  47. print $request['response'];
  48. } catch (PrestaShopWebserviceException $e) {
  49. // Here we are dealing with errors
  50. $trace = $e->getTrace();
  51. if ($trace[0]['args'][0] == 404) {
  52. die('Bad ID');
  53. } elseif ($trace[0]['args'][0] == 401) {
  54. die('Bad auth key');
  55. } else {
  56. die('Can not access to '.$conf->global->MAIN_MODULE_DOLISTORE_API_SRV);
  57. }
  58. }