在Magento中重写控制器,一个功能不起作用

时间:2012-08-14 16:58:20

标签: magento controller magento-1.4

我试图在提交表单后将我的联系表单重定向到主页。我设置了我的模块,可以确认它是否正常工作。在下面的代码中,我得到了“预调度”和“索引操作”日志消息,但没有得到“发布操作”,正如您所料,它也不会在完成时将我重定向到主页。我确实收到了联系电子邮件。任何人都可以告诉我为什么前两个函数正常工作而postAction()不是吗?

我将原始控制器中的所有代码复制到我的控制器中以进行故障排除。除了添加日志消息和底部的重定向外,一切都是默认的。

class MyCompany_Contacts_IndexController extends Mage_Contacts_IndexController
{   
const XML_PATH_EMAIL_RECIPIENT  = 'contacts/email/recipient_email';
const XML_PATH_EMAIL_SENDER     = 'contacts/email/sender_email_identity';
const XML_PATH_EMAIL_TEMPLATE   = 'contacts/email/email_template';
const XML_PATH_ENABLED          = 'contacts/contacts/enabled';

public function preDispatch()
{
    parent::preDispatch();
    Mage::log('Pre-dispatched');

    if( !Mage::getStoreConfigFlag(self::XML_PATH_ENABLED) ) {
        $this->norouteAction();
    }
}

public function indexAction()
{
    Mage::log('Index Action.');
    $this->loadLayout();
    $this->getLayout()->getBlock('contactForm')
        ->setFormAction( Mage::getUrl('*/*/post') );

    $this->_initLayoutMessages('customer/session');
    $this->_initLayoutMessages('catalog/session');
    $this->renderLayout();
}

public function postAction()
{
    parent::postAction();
    Mage::log('Post Action.');
    $post = $this->getRequest()->getPost();
    if ( $post ) {
        $translate = Mage::getSingleton('core/translate');
        /* @var $translate Mage_Core_Model_Translate */
        $translate->setTranslateInline(false);
        try {
            $postObject = new Varien_Object();
            $postObject->setData($post);

            $error = false;

            if (!Zend_Validate::is(trim($post['name']) , 'NotEmpty')) {
                $error = true;
            }

            if (!Zend_Validate::is(trim($post['comment']) , 'NotEmpty')) {
                $error = true;
            }

            if (!Zend_Validate::is(trim($post['email']), 'EmailAddress')) {
                $error = true;
            }

            if (Zend_Validate::is(trim($post['hideit']), 'NotEmpty')) {
                $error = true;
            }

            if ($error) {
                throw new Exception();
            }
            $mailTemplate = Mage::getModel('core/email_template');
            /* @var $mailTemplate Mage_Core_Model_Email_Template */
            $mailTemplate->setDesignConfig(array('area' => 'frontend'))
                ->setReplyTo($post['email'])
                ->sendTransactional(
                    Mage::getStoreConfig(self::XML_PATH_EMAIL_TEMPLATE),
                    Mage::getStoreConfig(self::XML_PATH_EMAIL_SENDER),
                    Mage::getStoreConfig(self::XML_PATH_EMAIL_RECIPIENT),
                    null,
                    array('data' => $postObject)
                );

            if (!$mailTemplate->getSentSuccess()) {
                throw new Exception();
            }

            $translate->setTranslateInline(true);

           // Mage::getSingleton('customer/session')->addSuccess(Mage::helper('contacts')->__('Your inquiry was submitted and will be responded to as soon as possible. Thank you for contacting us.'));
            $this->_redirect('');

            return;
        } catch (Exception $e) {
            $translate->setTranslateInline(true);

           // Mage::getSingleton('customer/session')->addError(Mage::helper('contacts')->__('Unable to submit your request. Please, try again later'));
            $this->_redirect('');
            return;
        }

    } else {
        $this->_redirect('');
    }
}

}

config.xml中

<?xml version="1.0" encoding="UTF-8"?>
<config>
  <modules>
    <MyCompany_Contacts>
        <version>0.0.1</version>
    </MyCompany_Contacts>
  </modules>

  <frontend>
    <routers>
      <contacts>
        <args>
          <modules>
              <MyCompany_Contacts before="Mage_Contacts">MyCompany_Contacts</MyCompany_Contacts>
          </modules>
        </args>
      </contacts>
    </routers>
  </frontend>
</config>

2 个答案:

答案 0 :(得分:1)

问题在于自定义postAction中的parent::postAction();部分。您现在正在做的是将表单发布到/ post。它最终会在你的postAction中结束,但随后会直接通过parent :: postAction()进行路由。

父方法Mage_Contacts_IndexController::postAction()也包含发送电子邮件的逻辑。因此你收到一个。问题是在父方法结束时仍然存在重定向$this->_redirect('*/*/');。这可以防止代码到达你的`Mage :: log('Post Action。')和其他自定义代码。

解决方案:移除parent::postAction(),您的postAction方法中的自定义代码将被执行,最终您将自行重定向到主页。

答案 1 :(得分:0)

我想我想出来了。我记得Akismet在发送之前对发布数据进行了分析,因此完全有可能默认的Mage_Contacts已经扩展并且首先通过该模块。将记录添加到Akismet控制器中的postAction()并验证它。感谢您让我走上正轨。