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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
<?php
#===============================================================================
# Get instances
#===============================================================================
$Language = Application::getLanguage();
#===============================================================================
# Get repositories
#===============================================================================
$PostRepository = Application::getRepository('Post');
$UserRepository = Application::getRepository('User');
#===============================================================================
# Pagination
#===============================================================================
$site_size = Application::get('POST.LIST_SIZE');
$site_sort = Application::get('POST.LIST_SORT');
$currentSite = HTTP::GET('site') ?? 1;
$currentSite = intval($currentSite);
$offset = ($currentSite-1) * $site_size;
if($search = HTTP::GET('q')) {
$filter = [
'day' => HTTP::GET('d'),
'month' => HTTP::GET('m'),
'year' => HTTP::GET('y')
];
try {
if (!$posts = $PostRepository->search($search, $filter, $site_size, $offset)) {
$message = $Language->text('search_no_results', htmlspecialchars($search));
}
} catch(PDOException $Exception) {
$message = $Exception->getMessage();
}
}
$form_data = [
'SELECT' => [
'D' => HTTP::GET('d'),
'M' => HTTP::GET('m'),
'Y' => HTTP::GET('y'),
],
'OPTIONS' => [
'D' => $PostRepository->getDistinctDays(),
'M' => $PostRepository->getDistinctMonths(),
'Y' => $PostRepository->getDistinctYears(),
]
];
$search_data = [
'TEXT' => $search,
'INFO' => isset($message) ? $message : FALSE,
];
#===============================================================================
# Build document
#===============================================================================
if(!empty($posts)) {
foreach($posts as $Post) {
$User = $UserRepository->find($Post->get('user'));
$templates[] = generatePostItemTemplate($Post, $User);
}
$count = $PostRepository->getLastSearchOverallCount();
$last = ceil($count / $site_size);
$ResultTemplate = Template\Factory::build('search/result');
$ResultTemplate->set('FORM', $form_data);
$ResultTemplate->set('SEARCH', $search_data);
$ResultTemplate->set('RESULT', [
'LIST' => $templates ?? []
]);
$ResultTemplate->set('PAGINATION', [
'THIS' => $currentSite,
'LAST' => $last,
'HTML' => createPaginationTemplate(
$currentSite, $last, Application::getURL('search/')
)
]);
$MainTemplate = Template\Factory::build('main');
$MainTemplate->set('HTML', $ResultTemplate);
$MainTemplate->set('HEAD', [
'NAME' => $Language->text('title_search_results', htmlspecialchars($search)),
'PERM' => Application::getURL('search/')
]);
}
else {
$SearchTemplate = Template\Factory::build('search/main');
$SearchTemplate->set('FORM', $form_data);
$SearchTemplate->set('SEARCH', $search_data);
$MainTemplate = Template\Factory::build('main');
$MainTemplate->set('HTML', $SearchTemplate);
$MainTemplate->set('HEAD', [
'NAME' => $Language->text('title_search_request'),
'PERM' => Application::getURL('search/')
]);
}
echo $MainTemplate;
|