CakePHP3で投稿サイトを制作中です。
現在投稿された記事内の点数と、他ユーザより投稿されたコメント&点数の、
点数部分を元に平均値を出し、スターレートとして反映させようとしています。
平均値を出すためのカラムが2つのテーブルを参照することになっていますが、
上記の構造を前提にAVG関数での記述をいくつか試しましたが、
思うように結果が得られず、現在も格闘中です。
▽環境▽
AWS Cloud9:無料枠
MySQL:ver5.7.26
CakePHP:ver3.8.2
PHP:ver7.2.19
■実現したいこと
下記2点の、点数の平均値を出したいです。
特定記事情報(Icesテーブル)に紐づく
他ユーザからのコメント情報(Commentsテーブル)の
(カラム名)repeat_rate
(カラム名)stock_rate
それぞれの平均を出し、
view側へ、出力したいです。
※Icesテーブルには
投稿したユーザの記事+投稿ユーザが
感じる上記2点の点数(repeat_rate、stock_rate)を入れ、
Commetsテーブルには
その記事に対し、他ユーザがコメント+上記2点の点数を
入れられるようになっています。
■困っていること
「実現したいこと」に記載の内容の
CakePHPでの記述方法がわかりません。
下記コードを元にどのように追記、修正すべきか、
教えていただきたいです。
▽DBのテーブル構成はusers,ices,commentsの計3つです▽
MySQL
1mysql> show create table users \G 2*************************** 1. row *************************** 3 Table: users 4Create Table: CREATE TABLE `users` ( 5 `id` int(11) NOT NULL AUTO_INCREMENT, 6 7 //一部省略 8 9 PRIMARY KEY (`id`) 10) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 111 row in set (0.00 sec) 12 13mysql> show create table ices \G 14*************************** 1. row *************************** 15 Table: ices 16Create Table: CREATE TABLE `ices` ( 17 `id` int(11) NOT NULL AUTO_INCREMENT, 18 `user_id` int(11) NOT NULL, 19//一部省略 20 `repeat_rate` int(11) DEFAULT NULL, ←"リピート率"の平均値として参照したい 21 `stock_rate` int(11) DEFAULT NULL, ←"ストック率"の平均値として参照したい 22 PRIMARY KEY (`id`), 23 KEY `ice_fk` (`user_id`), 24 CONSTRAINT `ice_fk` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE 25) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 261 row in set (0.00 sec) 27 28mysql> show create table comments \G 29*************************** 1. row *************************** 30 Table: comments 31Create Table: CREATE TABLE `comments` ( 32 `id` int(11) NOT NULL AUTO_INCREMENT, 33 `ice_id` int(11) NOT NULL, 34 `user_id` int(11) NOT NULL, 35 `comment` varchar(100) NOT NULL, 36 `repeat_rate` int(11) DEFAULT NULL, ←"リピート率"の平均値として参照したい 37 `stock_rate` int(11) DEFAULT NULL, ←"ストック率"の平均値として参照したい 38 `created` datetime DEFAULT NULL, 39 `modified` datetime DEFAULT NULL, 40 PRIMARY KEY (`id`), 41 KEY `comments_fk` (`user_id`), 42 KEY `comments_ices_fk` (`ice_id`), 43 CONSTRAINT `comments_fk` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, 44 CONSTRAINT `comments_ices_fk` FOREIGN KEY (`ice_id`) REFERENCES `ices` (`id`) ON DELETE CASCADE ON UPDATE CASCADE 45) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 461 row in set (0.00 sec)
▽CakePHPのModel部分です▽
php
1/src/Model/Table/UsersTable.php 2class UsersTable extends Table 3{ 4 public function initialize(array $config) 5 { 6 parent::initialize($config); 7 $this->setTable('users'); 8 $this->setDisplayField('id'); 9 $this->setPrimaryKey('id'); 10 $this->addBehavior('Timestamp'); 11 $this->hasMany('Comments',[ 12 'foreignKey' => 'user_id' 13 ]); 14 $this->hasMany('Ices', [ 15 'foreignKey' => 'user_id' 16 ]); 17 } 18 19/src/Model/Table/IcesTable.php 20class IcesTable extends Table 21{ 22public function initialize(array $config) 23 { 24 parent::initialize($config); 25 26 $this->setTable('ices'); 27 $this->setDisplayField('id'); 28 $this->setPrimaryKey('id'); 29 $this->addBehavior('Timestamp'); 30 31 $this->addBehavior('Josegonzalez/Upload.Upload', [ 32 'image_file' => [] 33 ]); 34 35 $this->belongsTo('Users', [ 36 'foreignKey' => 'user_id', 37 'joinType' => 'INNER' 38 ]); 39 $this->hasMany('Comments', [ 40 'foreignKey' => 'ice_id' 41 ]); 42 } 43 44/src/Model/Table/CommentsTable.php 45class CommentsTable extends Table 46{ 47 public function initialize(array $config) 48 { 49 parent::initialize($config); 50 51 $this->setTable('comments'); 52 $this->setDisplayField('comment'); 53 $this->setPrimaryKey('id'); 54 55 $this->addBehavior('Timestamp'); 56 57 $this->belongsTo('Ices', [ 58 'foreignKey' => 'ice_id', 59 'joinType' => 'INNER' 60 ]); 61 62 $this->belongsTo('Users', [ 63 'joinType' => 'INNER' 64 ]); 65 }
▽CakePHPのコントローラ部分です▽
php
1/src/Controller/IcesController.php 2public function search() 3 { 4 $ices = $this->Ices->find('all'); 5 $manufacturer = isset($this->request->query['manufacturer']) ? $this->request->query['manufacturer'] : null; 6 $keyword = isset($this->request->query['keyword']) ? $this->request->query['keyword'] : null; 7 8 if($manufacturer){ 9 $where = ['Ices.manufacturer' => $manufacturer]; 10 11 if ($keyword) { 12 $where['OR']['Ices.ice_fraver LIKE'] = "%$keyword%"; 13 $where['OR']['Ices.simple_comment LIKE'] = "%$keyword%"; 14 } 15 16 $ices = $this->Ices->find('all'); 17 $ices->where($where) 18 ->contain(['Comments.Users','Users']) 19 ->leftJoinWith('Comments') 20 ->group(['Ices.id']) 21 //現在思いつく一番希望に近い記述が下記の記載方法でした 22 ->select(['rerate' => 'AVG(Comments.repeat_rate + Ices.repeat_rate)'] 23 ->select($this->Ices) 24 ->order(['rerate' => 'DESC']) 25 26 ->all(); 27 28 $this->set('manufacturer', $manufacturer); 29 $this->set('keyword', $keyword); 30 31 $this->set('ices', $this->paginate($ices)); 32 $this->render('ranking'); 33 } 34
上記コントローラ内の
->select(['rerate' => 'AVG(Comments.repeat_rate + Ices.repeat_rate)']
の部分が自身の思いつく限りの一番希望に近い記述ではありましたが、
この記載方法では、
Commentsテーブルの中だけでrepeat_rateの平均値を出し、
Icesテーブルの中だけででrepeat_rateの平均値を出し、
上記2点を最後に足す、
という処理となるため、本来希望する算出方法とは異なってしまいます。
お手数をおかけしますが、ご教示、よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー