タグごとに関連商品を提案し、最も一致した順に並べ替えたい。
製品とタグの間の HABTM モデルの関連付け
class Product extends AppModel {
//..
var $hasAndBelongsToMany = array("Tag");
//..
}
タグモデルではその逆です。また、結合テーブル名は「products_tags」です。
サンプル用
//just sample of Product contain Tag data
$products[0]['Tag'] = array('touch', 'phone', '3G', 'apple'); //iPhone
$products[1]['Tag'] = array('phone', '3G', 'BB'); //BB
$products[2]['Tag'] = array('touch', '3G', 'apple'); //iPad
$products[3]['Tag'] = array('3G', 'air card'); //3G air card
このサンプルでは、優先順位による iPhone の並べ替えに最も関連するものは次のとおりです。
- ipad (3 タグで見つかりました)
- BB (2 つのタグで見つかりました)
- エアカード (一致するのは 1 つだけ)
Model find() を使用して、次のようなサブクエリを取得する Cake の方法:
SELECT DISTINCT (product_id) AS id, (
/* sub-query counting same tags*/
SELECT COUNT(*) FROM tags as Tag
LEFT JOIN products_tags AS ProductTag ON ( Tag.id = ProductTag.tag_id )
WHERE product_id = id
AND Tag.name IN ( 'touch', 'phone', '3G', 'apple' )
) AS priority /*this is weight count by how many same tags*/
FROM `tags` as Tag
LEFT JOIN products_tags AS ProductTag ON ( Tag.id = ProductTag.tag_id )
WHERE Tag.name
IN ( 'touch', 'phone', '3G', 'apple' )
ORDER BY priority DESC
上記の SQL クエリは、必要なものを正確に返します。しかし、パラメータを CakePHP の AppModel->find() メソッドに解析する方法が見つかりません。