mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-10 19:41:26 +01:00
69 lines
3.1 KiB
PHP
69 lines
3.1 KiB
PHP
<?php
|
|
/* Copyright (C) 2017 Oscss-Shop <support@oscss-shop.fr>.
|
|
* Copyright (C) 2008-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modifyion 2.0 (the "License");
|
|
* it under the terms of the GNU General Public License as published bypliance with the License.
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
*
|
|
* 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/>.
|
|
* or see http://www.gnu.org/
|
|
*/
|
|
|
|
if (!defined('REQUIRE_JQUERY_BLOCKUI')) define('REQUIRE_JQUERY_BLOCKUI', 1);
|
|
|
|
|
|
/**
|
|
* \file htdocs/commande/info.php
|
|
* \ingroup commande
|
|
* \brief Page des informations d'une commande
|
|
*/
|
|
$res = 0;
|
|
if (!$res && file_exists("../main.inc.php")) $res = @include("../main.inc.php");
|
|
if (!$res && file_exists("../../main.inc.php")) $res = @include("../../main.inc.php");
|
|
if (!$res && file_exists("../../../main.inc.php")) $res = @include("../../../main.inc.php");
|
|
if (!$res && file_exists("../../../../main.inc.php")) $res = @include("../../../../main.inc.php");
|
|
if (!$res && file_exists("../../../dolibarr/htdocs/main.inc.php"))
|
|
$res = @include("../../../dolibarr/htdocs/main.inc.php"); // Used on dev env only
|
|
if (!$res && file_exists("../../../../dolibarr/htdocs/main.inc.php"))
|
|
$res = @include("../../../../dolibarr/htdocs/main.inc.php"); // Used on dev env only
|
|
if (!$res && file_exists("../../../../../dolibarr/htdocs/main.inc.php"))
|
|
$res = @include("../../../../../dolibarr/htdocs/main.inc.php"); // Used on dev env only
|
|
if (!$res) die("Include of main fails");
|
|
|
|
// CORE
|
|
|
|
global $lang, $user, $conf;
|
|
|
|
|
|
require_once DOL_DOCUMENT_ROOT.'/admin/dolistore/class/dolistore.class.php';
|
|
$dolistore = new Dolistore();
|
|
|
|
$id_product = GETPOST('id_product', 'int');
|
|
$id_image = GETPOST('id_image', 'int');
|
|
// quality : image resize with this in the URL : "cart_default", "home_default", "large_default", "medium_default", "small_default", "thickbox_default"
|
|
$quality = GETPOST('quality', 'alpha');
|
|
|
|
try {
|
|
$url = $conf->global->MAIN_MODULE_DOLISTORE_API_SRV.'/api/images/products/'.$id_product.'/'.$id_image.'/'.$quality;
|
|
$api = new PrestaShopWebservice($conf->global->MAIN_MODULE_DOLISTORE_API_SRV,
|
|
$conf->global->MAIN_MODULE_DOLISTORE_API_KEY, $dolistore->debug_api);
|
|
//echo $url;
|
|
$request = $api->executeRequest($url, array(CURLOPT_CUSTOMREQUEST => 'GET'));
|
|
header('Content-type:image');
|
|
print $request['response'];
|
|
} catch (PrestaShopWebserviceException $e) {
|
|
// Here we are dealing with errors
|
|
$trace = $e->getTrace();
|
|
if ($trace[0]['args'][0] == 404) die('Bad ID');
|
|
else if ($trace[0]['args'][0] == 401) die('Bad auth key');
|
|
else die('Can not access to '.$conf->global->MAIN_MODULE_DOLISTORE_API_SRV);
|
|
}
|
|
|