1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
<?php
/* --------------------------------------------------------------
ShopInformationApiV2Controller.inc.php 2017-03-30
Gambio GmbH
http://www.gambio.de
Copyright (c) 2017 Gambio GmbH
Released under the GNU General Public License (Version 2)
[http://www.gnu.org/licenses/gpl-2.0.html]
--------------------------------------------------------------
*/
if(!function_exists('xtc_get_country_name'))
{
require_once DIR_FS_INC . 'xtc_get_country_name.inc.php';
}
if(!function_exists('xtc_get_zone_name'))
{
require_once DIR_FS_INC . 'xtc_get_zone_name.inc.php';
}
MainFactory::load_class('HttpApiV2Controller');
class ShopInformationApiV2Controller extends HttpApiV2Controller
{
/**
* @api {get} /shop_information Get Shop Information
* @apiVersion 2.4.0
* @apiName GetShopInformation
* @apiGroup ShopInformation
*
* @apiDescription
* Returns shop information like shop url, shop name, shop owner address data, shop template name and shop version.
*
* @apiExample {curl} Get Shop Information
* curl -i --user admin@shop.de:12345 http://shop.de/api.php/v2/shop_information
*/
public function get()
{
$response = [
'url' => HTTP_SERVER . DIR_WS_CATALOG,
'shopName' => STORE_NAME,
'owner' => STORE_OWNER,
'company' => COMPANY_NAME,
'firstname' => TRADER_FIRSTNAME,
'lastname' => TRADER_NAME,
'street' => TRADER_STREET,
'houseNumber' => TRADER_STREET_NUMBER,
'postcode' => TRADER_ZIPCODE,
'city' => TRADER_LOCATION,
'state' => xtc_get_zone_name(STORE_COUNTRY, STORE_ZONE, ''),
'country' => xtc_get_country_name(STORE_COUNTRY),
'telephone' => TRADER_TEL,
'fax' => TRADER_FAX,
'email' => STORE_OWNER_EMAIL_ADDRESS,
'zoneId' => STORE_ZONE,
'countryId' => STORE_COUNTRY,
'template' => CURRENT_TEMPLATE,
'shopVersion' => gm_get_conf('INSTALLED_VERSION')
];
$this->_writeResponse($response);
}
}