-
Notifications
You must be signed in to change notification settings - Fork 8
/
ratefile.php
164 lines (160 loc) · 8.03 KB
/
ratefile.php
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?php
declare(strict_types=1);
/**
* TDMDownload
*
* You may not change or alter any portion of this comment or credits
* of supporting developers from this source code or any supporting source code
* which is considered copyrighted (c) material of the original comment or credit authors.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* @copyright Gregory Mage (Aka Mage)
* @license GNU GPL 2 (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
* @author Gregory Mage (Aka Mage)
*/
use XoopsModules\Tdmdownloads\Tree;
require_once __DIR__ . '/header.php';
$moduleDirName = basename(__DIR__);
// template d'affichage
$GLOBALS['xoopsOption']['template_main'] = 'tdmdownloads_ratefile.tpl';
require_once XOOPS_ROOT_PATH . '/header.php';
/** @var \xos_opal_Theme $xoTheme */
$xoTheme->addStylesheet(XOOPS_URL . '/modules/' . $moduleDirName . '/assets/css/styles.css', null);
//On recupere la valeur de l'argument op dans l'URL$
$op = \Xmf\Request::getString('op', 'list');
$lid = \Xmf\Request::getInt('lid', 0, 'REQUEST');
//redirection si pas de permission de vote
if (false === $perm_vote) {
redirect_header('index.php', 2, _NOPERM);
}
$viewDownloads = $downloadsHandler->get($lid);
// redirection si le téléchargement n'existe pas ou n'est pas activé
if (!is_object($viewDownloads) || 0 == $viewDownloads->getVar('status')) {
redirect_header('index.php', 3, _MD_TDMDOWNLOADS_SINGLEFILE_NONEXISTENT);
}
//redirection si pas de permission (cat)
$categories = $utility->getItemIds('tdmdownloads_view', $moduleDirName);
if (!in_array($viewDownloads->getVar('cid'), $categories)) {
redirect_header(XOOPS_URL, 2, _NOPERM);
}
//Les valeurs de op qui vont permettre d'aller dans les differentes parties de la page
switch ($op) {
// Vue list
case 'list':
//tableau des catégories
$criteria = new \CriteriaCompo();
$criteria->setSort('cat_weight ASC, cat_title');
$criteria->setOrder('ASC');
$criteria->add(new \Criteria('cat_cid', '(' . implode(',', $categories) . ')', 'IN'));
$downloadscatArray = $categoryHandler->getAll($criteria);
$mytree = new Tree($downloadscatArray, 'cat_cid', 'cat_pid');
//navigation
$navigation = $utility::getPathTreeUrl($mytree, $viewDownloads->getVar('cid'), $downloadscatArray, 'cat_title', $prefix = ' <img src="assets/images/deco/arrow.gif" alt="arrow"> ', true, 'ASC', true);
$navigation .= ' <img src="assets/images/deco/arrow.gif" alt="arrow"> <a title="' . $viewDownloads->getVar('title') . '" href="singlefile.php?lid=' . $viewDownloads->getVar('lid') . '">' . $viewDownloads->getVar('title') . '</a>';
$navigation .= ' <img src="assets/images/deco/arrow.gif" alt="arrow"> ' . _MD_TDMDOWNLOADS_SINGLEFILE_RATHFILE;
$xoopsTpl->assign('navigation', $navigation);
// référencement
// titre de la page
$pagetitle = _MD_TDMDOWNLOADS_SINGLEFILE_RATHFILE . ' - ' . $viewDownloads->getVar('title') . ' - ';
$pagetitle .= $utility::getPathTreeUrl($mytree, $viewDownloads->getVar('cid'), $downloadscatArray, 'cat_title', $prefix = ' - ', false, 'DESC', true);
$xoopsTpl->assign('xoops_pagetitle', $pagetitle);
//description
$xoTheme->addMeta('meta', 'description', strip_tags(_MD_TDMDOWNLOADS_SINGLEFILE_RATHFILE . ' (' . $viewDownloads->getVar('title') . ')'));
//Affichage du formulaire de notation des téléchargements
/** @var \XoopsModules\Tdmdownloads\Rating $obj */
$obj = $ratingHandler->create();
$form = $obj->getForm($lid);
$xoopsTpl->assign('themeForm', $form->render());
break;
// save
case 'save':
/** @var \XoopsModules\Tdmdownloads\Rating $obj */
$obj = $ratingHandler->create();
if (empty($xoopsUser)) {
$ratinguser = 0;
} else {
$ratinguser = $xoopsUser->getVar('uid');
}
// si c'est un membre on vérifie qu'il ne vote pas pour son fichier
if (0 !== $ratinguser) {
$criteria = new \CriteriaCompo();
$criteria->add(new \Criteria('lid', $lid));
$downloadsArray = $downloadsHandler->getAll($criteria);
foreach (array_keys($downloadsArray) as $i) {
/** @var \XoopsModules\Tdmdownloads\Downloads[] $downloadsArray */
if ($downloadsArray[$i]->getVar('submitter') == $ratinguser) {
redirect_header('singlefile.php?lid=' . \Xmf\Request::getInt('lid', 0), 2, _MD_TDMDOWNLOADS_RATEFILE_CANTVOTEOWN);
}
}
// si c'est un membre on vérifie qu'il ne vote pas 2 fois
$criteria = new \CriteriaCompo();
$criteria->add(new \Criteria('lid', $lid));
$votesArray = $ratingHandler->getAll($criteria);
foreach (array_keys($votesArray) as $i) {
/** @var \XoopsModules\Wfdownloads\Rating[] $votesArray */
if ($votesArray[$i]->getVar('ratinguser') === $ratinguser) {
redirect_header('singlefile.php?lid=' . \Xmf\Request::getInt('lid', 0), 2, _MD_TDMDOWNLOADS_RATEFILE_VOTEONCE);
}
}
} else {
// si c'est un utilisateur anonyme on vérifie qu'il ne vote pas 2 fois par jour
$yesterday = time() - 86400;
$criteria = new \CriteriaCompo();
$criteria->add(new \Criteria('lid', $lid));
$criteria->add(new \Criteria('ratinguser', 0));
$criteria->add(new \Criteria('ratinghostname', getenv('REMOTE_ADDR')));
$criteria->add(new \Criteria('ratingtimestamp', $yesterday, '>'));
if ($ratingHandler->getCount($criteria) >= 1) {
redirect_header('singlefile.php?lid=' . \Xmf\Request::getInt('lid', 0), 2, _MD_TDMDOWNLOADS_RATEFILE_VOTEONCE);
}
}
$erreur = false;
$errorMessage = '';
// Test avant la validation
$rating = \Xmf\Request::getInt('rating', 0, 'POST');
if ($rating < 0 || $rating > 10) {
$errorMessage .= _MD_TDMDOWNLOADS_RATEFILE_NORATING . '<br>';
$erreur = true;
}
xoops_load('captcha');
$xoopsCaptcha = \XoopsCaptcha::getInstance();
if (!$xoopsCaptcha->verify()) {
$errorMessage .= $xoopsCaptcha->getMessage() . '<br>';
$erreur = true;
}
$obj->setVar('lid', $lid);
$obj->setVar('ratinguser', $ratinguser);
$obj->setVar('rating', $rating);
$obj->setVar('ratinghostname', getenv('REMOTE_ADDR'));
$obj->setVar('ratingtimestamp', time());
if (true === $erreur) {
$xoopsTpl->assign('message_erreur', $errorMessage);
} else {
if ($ratingHandler->insert($obj)) {
$criteria = new \CriteriaCompo();
$criteria->add(new \Criteria('lid', $lid));
$votesArray = $ratingHandler->getAll($criteria);
$votesTotal = $ratingHandler->getCount($criteria);
$ratingTotal = 0;
foreach (array_keys($votesArray) as $i) {
$ratingTotal += $votesArray[$i]->getVar('rating');
}
$rating = $ratingTotal / $votesTotal;
$objdownloads = $downloadsHandler->get($lid);
$objdownloads->setVar('rating', number_format((float)$rating, 1));
$objdownloads->setVar('votes', $votesTotal);
if ($downloadsHandler->insert($objdownloads)) {
redirect_header('singlefile.php?lid=' . $lid, 2, _MD_TDMDOWNLOADS_RATEFILE_VOTEOK);
}
echo $objdownloads->getHtmlErrors();
}
echo $obj->getHtmlErrors();
}
//Affichage du formulaire de notation des téléchargements
$form = $obj->getForm($lid);
$xoopsTpl->assign('themeForm', $form->render());
break;
}
require XOOPS_ROOT_PATH . '/footer.php';