まず、設定を変更する必要があります。
複数のWebサイト間で顧客アカウントを共有する
ここでこの機能を設定する必要があります:System -> Configuration -> Customer Configuration -> Share Customer Accounts
。
すべての顧客をすべてのWebサイトに共有するには、この設定をグローバルに設定します。
ウェブサイト間でログインを共有する
異なるWebサイトのストアを切り替えるときにセッションを維持するには、[システム]> [構成]> [一般]> [Web]で[フロントエンドでSIDを使用]を有効にします。
ユーザーが登録したのと同じWebサイトにリダイレクトするように強制する
別のWebサイトからログインしようとしたときに登録したのと同じWebサイトに顧客が強制的にログインします。
使用する customer_login
イベントをconfig.xmlに定義します
<?xml version="1.0"?>
<config>
<modules>
<Stackexchange_Magento165528>
<version>1.0.0</version>
</Stackexchange_Magento165528>
</modules>
<global>
<models>
<magento165528>
<class>Stackexchange_Magento165528_Model</class>
</magento165528>
</models>
<events>
<customer_login> <!-- identifier of the event we want to catch -->
<observers>
<customer_login_handler> <!-- identifier of the event handler -->
<type>singleton</type> <!-- class method call type; valid are model, object and singleton -->
<class>magento165528/observer</class> <!-- observers class alias -->
<method>redirectoSourceDomain</method> <!-- observer's method to be called -->
<args></args> <!-- additional arguments passed to observer -->
</customer_login_handler>
</observers>
</customer_login>
</events>
</global>
</config>
オブザーバークラス:
<?php
class Stackexchange_Magento165528_Model_Observer
{
public function redirectoSourceDomain(Varien_Event_Observer $observer)
{
$_customer = $observer->getEvent()->getCustomer();
/*
* Store of website from which website Customer have registered
*/
$_customer_resgister_store_id= $_customer->getStoreId();
if($_customer_resgister_store_id != Mage::app()->getStore()->getStoreId()){
$allStores=Mage::app()->getStores(); //get list of all stores,websites
foreach ($allStores as $_eachStoreId => $val){
$_storeId = Mage::app()->getStore($_eachStoreId)->getId();
//get url using store id
if($_customer_resgister_store_id == $_eachStoreId ){
$Websiteurl= Mage::app()->getStore($_storeId)->getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
$_redirecUrl = $Websiteurl."customer/account/login?SID=".Mage::getModel("core/session")->getEncryptedSessionId();
/* Force redirect to repective Website */
Mage::app()->getFrontController()->getResponse()
->setRedirect($_redirecUrl)
->sendResponse();
exit;
}
}
}
return;
}
}
注意:
私はこのコードを私のMAGENTO DEMO STORE Webサイトでテストしました。
この2つのWebサイトは、Webサイトの概念を使用して同じmagentoインスタンスから実行されています。