public function testPhoneDoesNotExist()
 {
     $phone = new Phone();
     $phone->setCountryCode(1)->setNumber('6127701999')->setType(Phone::PHONE_TYPE_HOME);
     $entity = new Customer();
     $this->assertFalse($entity->getPhoneIndex($phone));
 }
示例#2
0
 public function testCreateHome()
 {
     $entity = new Phone();
     $entity->setType(Phone::PHONE_TYPE_HOME)->setCountryCode(44)->setNumber('02123456789');
     $this->assertEquals(Phone::PHONE_TYPE_HOME, $entity->getType());
     $this->assertEquals(44, $entity->getCountryCode());
     $this->assertEquals('02123456789', $entity->getNumber());
     $this->assertJson(json_encode($entity->toArray()));
     $this->assertJsonStringEqualsJsonString(json_encode($entity->toArray()), json_encode(array('type' => 'L', 'countryCode' => 44, 'number' => '02123456789')));
 }
示例#3
0
 public function showAction()
 {
     $this->getResponse()->setHeader('Content-type', 'application/json');
     $route = $this->resolver->process(preg_replace('/.*(expressly\\/.*)/i', '/${1}', $_SERVER['REQUEST_URI']));
     if ($route instanceof Route) {
         $emailAddress = $this->getRequest()->getParam('email');
         $merchant = $this->app['merchant.provider']->getMerchant();
         try {
             $mageCustomer = \Mage::getModel('customer/customer');
             $mageCustomer->setWebsiteId(\Mage::app()->getWebsite()->getId());
             $mageCustomer->loadByEmail($emailAddress);
             $reference = $mageCustomer->getId();
             if ($reference) {
                 $customer = new Customer();
                 $customer->setFirstName($mageCustomer->getFirstname())->setLastName($mageCustomer->getLastname())->setDateUpdated(new DateTime($mageCustomer->getCreatedAt()));
                 if ($mageCustomer->getDob()) {
                     $customer->setBirthday(new DateTime($mageCustomer->getDob()));
                 }
                 if ($mageCustomer->getTaxvat()) {
                     $customer->setTaxNumber($mageCustomer->getTaxvat());
                 }
                 $gender = $mageCustomer->getGender();
                 if ($gender == 1 || $gender == 2) {
                     $customer->setGender($mageCustomer->getGender() == 1 ? 'M' : 'F');
                 }
                 $email = new Email();
                 $email->setAlias('default')->setEmail($emailAddress);
                 $customer->addEmail($email);
                 $defaultBilling = $mageCustomer->getDefaultBilling();
                 $defaultShipping = $mageCustomer->getDefaultShipping();
                 foreach ($mageCustomer->getAddresses() as $mageAddress) {
                     $address = new Address();
                     $address->setFirstName($mageAddress->getFirstname())->setLastName($mageAddress->getLastname())->setCompanyName($mageAddress->getCompany())->setAddress1($mageAddress->getStreet1())->setAddress2($mageAddress->getStreet2())->setCity($mageAddress->getCity())->setStateProvince($mageAddress->getRegionCode())->setZip($mageAddress->getPostcode())->setCountry($mageAddress->getCountry());
                     $phone = new Phone();
                     $phone->setType(Phone::PHONE_TYPE_HOME)->setNumber($mageAddress->getTelephone());
                     $customer->addPhone($phone);
                     $address->setPhonePosition($customer->getPhoneIndex($phone));
                     $primary = false;
                     $type = null;
                     if ($mageAddress->getId() == $defaultBilling) {
                         $primary = true;
                         $type = Address::ADDRESS_BILLING;
                     }
                     if ($mageAddress->getId() == $defaultShipping) {
                         $primary = true;
                         $type = $type == Address::ADDRESS_BILLING ? Address::ADDRESS_BOTH : Address::ADDRESS_SHIPPING;
                     }
                     $customer->addAddress($address, $primary, $type);
                 }
                 $presenter = new CustomerMigratePresenter($merchant, $customer, $emailAddress, $reference);
                 $this->getResponse()->setBody(json_encode($presenter->toArray()));
             } else {
                 $this->getResponse()->setHttpResponseCode(404);
             }
         } catch (\Exception $e) {
             $this->logger->error(ExceptionFormatter::format($e));
             $this->getResponse()->setBody(json_encode(array()));
         }
     } else {
         $this->getResponse()->setHttpResponseCode(401);
     }
 }
示例#4
0
 public function addPhone(Phone $phone)
 {
     $phones = $this->phones;
     $exists = function ($index, $el) use($phones, $phone) {
         if ($el->toArray() == $phone->toArray()) {
             return true;
         }
         return false;
     };
     if (!$this->phones->exists($exists)) {
         $this->phones->add($phone);
     }
     return $this;
 }
示例#5
0
 private function retrieveUserByEmail($emailAddr)
 {
     try {
         $user = get_user_by('email', $emailAddr);
         if ($user) {
             $customer = new Customer();
             $customer->setFirstName($user->first_name)->setLastName($user->last_name);
             $email = new Email();
             $email->setEmail($emailAddr)->setAlias('primary');
             $customer->addEmail($email);
             $user_id =& $user->ID;
             $countryCodeProvider = $this->app['country_code.provider'];
             $createAddress = function ($prefix) use($user_id, $countryCodeProvider, $customer) {
                 $address = new Address();
                 $address->setFirstName(get_user_meta($user_id, $prefix . '_first_name', true))->setLastName(get_user_meta($user_id, $prefix . '_last_name', true))->setAddress1(get_user_meta($user_id, $prefix . '_address_1', true))->setAddress2(get_user_meta($user_id, $prefix . '_address_2', true))->setCity(get_user_meta($user_id, $prefix . '_city', true))->setZip(get_user_meta($user_id, $prefix . '_postcode', true));
                 $iso3 = $countryCodeProvider->getIso3(get_user_meta($user_id, $prefix . '_country', true));
                 $address->setCountry($iso3);
                 $address->setStateProvince(get_user_meta($user_id, $prefix . '_state', true));
                 $phoneNumber = get_user_meta($user_id, $prefix . '_phone', true);
                 if (!empty($phoneNumber)) {
                     $phone = new Phone();
                     $phone->setType(Phone::PHONE_TYPE_HOME)->setNumber((string) $phoneNumber);
                     $customer->addPhone($phone);
                     $address->setPhonePosition((int) $customer->getPhoneIndex($phone));
                 }
                 return $address;
             };
             $billingAddress = $createAddress('billing');
             $shippingAddress = $createAddress('shipping');
             if (Address::compare($billingAddress, $shippingAddress)) {
                 $customer->addAddress($billingAddress, true, Address::ADDRESS_BOTH);
             } else {
                 $customer->addAddress($billingAddress, true, Address::ADDRESS_BILLING);
                 $customer->addAddress($shippingAddress, true, Address::ADDRESS_SHIPPING);
             }
             $merchant = $this->app['merchant.provider']->getMerchant();
             $response = new CustomerMigratePresenter($merchant, $customer, $emailAddr, $user->ID);
             wp_send_json($response->toArray());
         }
     } catch (\Exception $e) {
         $this->app['logger']->error(ExceptionFormatter::format($e));
         wp_send_json(array());
     }
 }