public function loginByCustomer(Mage_Customer_Model_Customer $customer)
 {
     if ($customer->getConfirmation()) {
         $customer->setConfirmation(null);
         $customer->save();
     }
     Mage::getSingleton('customer/session')->setCustomerAsLoggedIn($customer);
 }
Beispiel #2
0
 /**
  * Set customer object and setting customer id in session
  *
  * @param   Mage_Customer_Model_Customer $customer
  * @return  Mage_Customer_Model_Session
  */
 public function setCustomer(Mage_Customer_Model_Customer $customer)
 {
     // check if customer is not confirmed
     if ($customer->isConfirmationRequired()) {
         if ($customer->getConfirmation()) {
             throw new Exception('This customer is not confirmed and cannot log in.', Mage_Customer_Model_Customer::EXCEPTION_EMAIL_NOT_CONFIRMED);
         }
     }
     $this->_customer = $customer;
     $this->setId($customer->getId());
     // save customer as confirmed, if it is not
     if (!$customer->isConfirmationRequired() && $customer->getConfirmation()) {
         $customer->setConfirmation(null)->save();
         $customer->setIsJustConfirmed(true);
     }
     return $this;
 }
Beispiel #3
0
 /**
  * Set customer object and setting customer id in session
  *
  * @param   Mage_Customer_Model_Customer $customer
  * @return  Mage_Customer_Model_Session
  */
 public function setCustomer(Mage_Customer_Model_Customer $customer)
 {
     // check if customer is not confirmed
     if ($customer->isConfirmationRequired()) {
         if ($customer->getConfirmation()) {
             return $this->_logout();
         }
     }
     $this->_customer = $customer;
     $this->setId($customer->getId());
     // save customer as confirmed, if it is not
     if (!$customer->isConfirmationRequired() && $customer->getConfirmation()) {
         $customer->setConfirmation(null)->save();
         $customer->setIsJustConfirmed(true);
     }
     return $this;
 }
Beispiel #4
0
 /**
  * Set customers basic data like name, gender etc.
  *
  * @param Mage_Customer_Model_Customer $magentoCustomer
  * @param ShopgateCustomer             $shopgateCustomer
  *
  * @return Mage_Customer_Model_Customer $magentoCustomer
  */
 protected function _registerSetBasicData($magentoCustomer, $shopgateCustomer)
 {
     $magentoCustomer->setConfirmation(null);
     $magentoCustomer->setFirstname($shopgateCustomer->getFirstName());
     $magentoCustomer->setLastname($shopgateCustomer->getLastName());
     $magentoCustomer->setGender($this->getMagentoCustomerGender($shopgateCustomer->getGender()));
     $magentoCustomer->setDob($shopgateCustomer->getBirthday());
     $magentoCustomer->setForceConfirmed(true);
     $magentoCustomer->save();
     $magentoCustomer->sendNewAccountEmail('registered', '', $magentoCustomer->getStore()->getId());
     return $magentoCustomer;
 }