是的!我实际上是为 Recurly 构建的——我试图让它开源,但它还没有开放。这是 load() 方法的一个片段,它是它的核心。
// TBT_Recurly_Model_Resource_Recurly_Abstract_Collection
public function load($printQuery = false, $logQuery = false)
{
if ($this->isLoaded()) {
return $this;
}
if ($this->_isCached()) {
return $this->_loadCache();
}
$this->_beforeLoad();
$this->_renderFilters()
->_renderOrders()
->_renderLimit();
$this->clear();
try {
# This is ultimately doing the API call
$recurly_list = $this->_getListSafe();
} catch (Recurly_Error $e) {
Mage::logException($e);
$this->setConnectionError($e->getMessage());
return $this;
}
foreach ($recurly_list as $recurly_item)
{
$item = $this->getNewEmptyItem();
$item->getResource()->setDataOnObject($item, $recurly_item);
// Recurly appears to sometimes return duplicate subscription items in it's list response.
if (!isset($this->_items[$item->getId()])) {
$this->addItem($item);
}
}
$this->_afterLoadRecurly();
// We have to setIsLoaded before we saveCache b/c otherwise it will infinite loop
$this->_setIsLoaded();
$this->_saveCache();
$this->_afterLoad();
return $this;
}
我们实际上最终采用了这个并将它放入一个基本的 REST 类中,这真的很酷,因为它最终很容易在它之上实现新的 REST API。
就最佳实践而言,我不确定我是否具体回答了您的问题。但基本上我认为要让它干净的主要事情是:
- 按照 Magento 模型/集合方法签名进行查询。
- 实现缓存
- 在资源模型层实现API通信