CategoryQueryHandler.php
2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
namespace FootyRoom\Queries\Category;
use FootyRoom\Support\AutoMapper;
use Illuminate\Database\Connection;
class CategoryQueryHandler
{
/**
* @var \Illuminate\Database\Connection
*/
protected $mysql;
/**
* Constructor.
*
* @param \Illuminate\Database\Connection $mysql
*/
public function __construct(Connection $mysql)
{
$this->mysql = $mysql;
}
/**
* Query handler.
*
* @param \FootyRoom\Queries\Category\OneCategoryQuery $query
*
* @return \FootyRoom\Queries\Category\Category|null
*/
public function findOne(OneCategoryQuery $query)
{
$builder = $this->mysql
->table('wp_term_taxonomy AS taxonomy')
->select(
'terms.name as name',
'terms.term_id as id',
'terms.slug as slug',
'taxonomy.count'
)
->leftJoin('wp_terms as terms', 'terms.term_id', '=', 'taxonomy.term_id')
->where('terms.term_group', ForumCategoriesQuery::FORUM_TERM_GROUP);
if ($query->getCategorySlug()) {
$builder->where('terms.slug', $query->getCategorySlug());
}
$categoryDto = $builder->first();
if (!$categoryDto) {
return null;
}
return AutoMapper::map($categoryDto, Category::class);
}
/**
* Query handler.
*
* @param \FootyRoom\Queries\Category\ForumCategoriesQuery $query
*
* @return \FootyRoom\Queries\Category\Category[]
*/
public function findForumCategories(ForumCategoriesQuery $query)
{
$categories = $this->mysql->select(
'SELECT
terms.name as name,
terms.term_id as id,
terms.slug as slug,
taxonomy.count
FROM wp_term_taxonomy AS taxonomy
LEFT JOIN wp_terms AS terms ON terms.term_id = taxonomy.term_id
WHERE term_group = ?',
[$query->getForumTermGroup()]
);
$categoryModels = [];
foreach ($categories as $category) {
$categoryModels[] = AutoMapper::map($category, Category::class);
}
return $categoryModels;
}
}