forked from debruine/experimentum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.php
executable file
·173 lines (149 loc) · 7.14 KB
/
project.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
165
166
167
168
169
170
171
172
173
<?php
require_once $_SERVER['DOCUMENT_ROOT'] . '/include/main_func.php';
require_once DOC_ROOT . '/include/classes/Parsedown.php';
unset($_SESSION['session_id']);
/****************************************************
* Get Project Info
***************************************************/
if (count($_GET) > 0) {
$keys = array_keys($_GET);
$projectname = $keys[0];
if (in_array($_SESSION['status'], $RES_STATUS)) {
$myproject = new myQuery('SELECT * FROM project WHERE url="' . $projectname . '"');
} else {
$myproject = new myQuery('SELECT * FROM project WHERE status="active" AND url="' . $projectname . '"');
}
// check if a project was returned or exit
if ($myproject->get_num_rows() == 0) {
header('Location: /');
exit;
}
$_SESSION['project'] = $projectname;
$project = $myproject->get_one_array();
$_SESSION['project_id'] = $project['id'];
$exclusions = array();
if ($_SESSION['age'] > 0) {
$exclusions['exp'][] = '(exp.lower_age <= ' . ($_SESSION['age']) . ' OR exp.lower_age IS NULL)';
$exclusions['quest'][] = '(quest.lower_age <= ' . ($_SESSION['age']) . ' OR quest.lower_age IS NULL)';
$exclusions['sets'][] = '(sets.lower_age <= ' . ($_SESSION['age']) . ' OR sets.lower_age IS NULL)';
$exclusions['exp'][] = '(exp.upper_age >= ' . ($_SESSION['age']) . ' OR exp.upper_age IS NULL)';
$exclusions['quest'][] = '(quest.upper_age >= ' . ($_SESSION['age']) . ' OR quest.upper_age IS NULL)';
$exclusions['sets'][] = '(sets.upper_age >= ' . ($_SESSION['age']) . ' OR sets.upper_age IS NULL)';
} else {
// only show items with no age limits for people without an age
$exclusions['exp'][] = 'exp.lower_age IS NULL AND exp.upper_age IS NULL';
$exclusions['quest'][] = 'quest.lower_age IS NULL AND quest.upper_age IS NULL';
$exclusions['sets'][] = 'sets.lower_age IS NULL AND sets.upper_age IS NULL';
}
if ($_SESSION['sex'] == 'male') {
$exclusions['exp'][] = '(exp.sex!="female")';
$exclusions['quest'][] = '(quest.sex!="female")';
$exclusions['sets'][] = '(sets.sex!="female")';
} else if ($_SESSION['sex'] == 'female') {
$exclusions['exp'][] = '(exp.sex!="male")';
$exclusions['quest'][] = '(quest.sex!="male")';
$exclusions['sets'][] = '(sets.sex!="male")';
}
$myitems = new myQuery('SELECT item_type, item_id, icon,
IF(item_type="exp", exp.name,
IF(item_type="quest", quest.name,
IF(item_type="set", sets.name, "Mystery Item"))) as name,
IF(item_type="exp", exp.status,
IF(item_type="quest", quest.status,
IF(item_type="set", sets.status, NULL))) as the_status,
IF(item_type="exp", exp.lower_age,
IF(item_type="quest", quest.lower_age,
IF(item_type="set", sets.lower_age, NULL))) as the_lower_age,
IF(item_type="exp", exp.upper_age,
IF(item_type="quest", quest.upper_age,
IF(item_type="set", sets.upper_age, NULL))) as the_upper_age
FROM project_items as p
LEFT JOIN exp ON (exp.id=item_id) AND item_type="exp" AND ' . implode(' AND ', $exclusions['exp']) . '
LEFT JOIN quest ON (quest.id=item_id) AND item_type="quest" AND ' . implode(' AND ', $exclusions['quest']) . '
LEFT JOIN sets ON (sets.id=item_id) AND item_type="set" AND ' . implode(' AND ', $exclusions['sets']) . '
WHERE p.project_id=' . $project['id'] . '
ORDER BY item_n');
$items = $myitems->get_assoc();
} else {
header('Location: /');
exit;
}
/****************************************************/
/* !Display Page */
/***************************************************/
$title = loc($project['name']);
$buttonwidth = count($items) * 11;
$styles = array(
'#fb-login' => 'display: none;',
'#logresauto' => 'max-width: 33em; margin: 1em auto;',
'#logres' => 'max-width: 22em; margin: 1em auto;',
'#auto' => 'max-width: 11em; margin: 1em auto;',
'.bigbuttons li a.registerbutton' => 'background-image: url(/images/linearicons/pencil?c=FFF);',
'.bigbuttons li a.loginbutton' => 'background-image: url(/images/linearicons/lock?c=FFF);',
'.bigbuttons li a.autobutton' => 'background-image: url(/images/linearicons/0676-ghost-hipster?c=FFF);',
'#itembuttons' => "margin: 1em auto; max-width: {$buttonwidth}em;"
);
$page = new page($title);
$page->set_menu(false);
$page->displayHead($styles);
$page->displayBody();
// warn if not eligible for any parts of the study
$visitems = false;
foreach ($items as $i) { $visitems = $visitems || !empty($i['the_status']); }
if (!$visitems) {
echo "<h3 class='error'>You are not eligible for this study.<br>
It might be restricted by age or gender.</h3>";
}
$Parsedown = new Parsedown();
echo $Parsedown->text($project['intro']);
if (!empty($_SESSION['status'])) {
$res = in_array($_SESSION['status'], $RES_STATUS) ? ' res' : '';
// participant is logged in
echo '<ul class="bigbuttons" id="itembuttons">';
$url = array(
'exp' => '/exp',
'quest' => '/quest',
'set' => '/include/scripts/set'
);
foreach ($items as $i) {
printf('<li id="%s_%s" class="%s%s"><a class="%s" href="%s?id=%s" style="%s">%s</a></li>' . ENDLINE,
$i['item_type'],
$i['item_id'],
ifEmpty($i['the_status'], 'hide'),
$res,
$i['item_type'],
$url[$i['item_type']],
$i['item_id'],
(!empty($i['icon'])) ? "background-image: url({$i['icon']}?c=FFF)" : "",
ifEmpty($i['name'], $i['item_type'] . "_" . $i['item_id'] . "<span class='corner'>hidden</span>")
);
}
echo '</ul>';
} else if (array_key_exists("all", $_GET)) {
// not logged in
?>
<ul class="bigbuttons" id="logresauto">
<li><a class="loginbutton" href="/login">Login</a></li>
<li><a class="registerbutton" href="/register">Register</a></li>
<li><a class="autobutton" href="javascript: guestLogin('<?= $projectname ?>');">Login as a Guest</a></li>
</ul>
<?php
} else if (array_key_exists("noguest", $_GET)) {
// participant is not logged in yet
?>
<p>Please login or register if you do not yet have an account.</p>
<ul class="bigbuttons" id="logres">
<li><a class="loginbutton" href="/login">Login</a></li>
<li><a class="registerbutton" href="/register">Register</a></li>
</ul>
<?php
} else {
// participant should be auto-logged in
?>
<ul class="bigbuttons" id="auto">
<li><a class="autobutton" href="javascript: guestLogin('<?= $projectname ?>');">Login as a Guest</a></li>
</ul>
<?php
}
$page->displayFooter();
?>