-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverify.php
More file actions
291 lines (235 loc) · 6.25 KB
/
verify.php
File metadata and controls
291 lines (235 loc) · 6.25 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
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<?php
include('inc/functions.php');
/* get permissions */
include('inc/getperms.php');
$highest_perm = 3;
if($highest_perm < 3) {
print_error(array("You don't have permission to be here"));
}
/* check query string */
if(
($_GET['sid'] == '')
|| ($_GET['ct'] == '')
|| ($_GET['ts'] == '')
) {
print_error(array("Bad query string"));
die;
#$sem_id = 16;
#$classtype = 'regular';
#$timestamp = 1401452104;
} else {
$sem_id = $_GET['sid'];
$classtype = $_GET['ct'];
$timestamp = $_GET['ts'];
}
/* get semester info */
include_once('inc/mysql.php');
$sem_sql = ""
. "SELECT *"
. " FROM semesters"
. " WHERE semester_id = $sem_id"
;
$sem_res = mysql_query($sem_sql);
if(!$sem_res) {
die("Database error (semester info): " . mysql_error());
}
$row = mysql_fetch_assoc($sem_res);
$sem_name = $row['semester_name'];
$sem_year = $row['semester_year'];
/* start work */
$errors = array();
$info = array();
$basedir = '/opt/gsw/faceval';
$workdir = "$basedir/archives/$timestamp"
. "_$sem_name"
. "_$sem_year"
. "_$classtype"
;
$ttable = "$workdir/ttable.txt";
$cctable = "$workdir/cctable.txt";
$surzip = "$workdir/surveys.zip";
if(backup_db("$sem_name $sem_year $classtype: Before file verification")) {
array_push($info, "Database successfully backed up");
} else {
array_push($errors, "Database backup failed");
}
/* unzip the zip */
$surdir = "$workdir/surveys";
if(is_dir($surdir)) {
foreach(glob("$surdir/*") as $file) {
unlink($file);
}
rmdir($surdir);
}
unzip($surzip, "$surdir");
/* check cctable entries vs. survey files in surveys directory */
$crns = array();
$cctlines = file($cctable);
foreach($cctlines as $line) {
$line = rtrim($line);
$parts = preg_split("/\t+/", $line);
$crn = $parts[0];
$dept = preg_replace("/^0+/", '', $parts[1]);
$iid = $parts[2];
$name = $parts[3];
if(preg_match("/[^0-9]/", $crn)){
array_push($errors, "Bad line format or bad CRN in CRN-Course table: $line");
}
if($crn != '') {
$crns[$crn] = $iid;
if(!is_readable("$surdir/$crn.txt")) {
array_push($errors, "No text file for $crn, $name");
}
}
}
/* check survey files vs. cctable entries */
foreach(glob("$surdir/*.txt") as $file) {
$crn = preg_replace("/^.*\//", '', $file);
$crn = preg_replace("/\.txt/", '', $crn);
if(preg_match("/[^0-9]/", $crn) || !preg_match("/\.txt/", $file)) {
array_push($errors, "Bad survey file format: $crn.txt");
}
if($crns[$crn] == '') {
array_push($errors, "No entry for $crn found in CRN-Course table");
} else {}
}
/* check database to see what courses are already in the database */
if(count($crns) > 0) {
include_once('inc/mysql.php');
$cc_sql = ""
. "SELECT *"
. " FROM courses"
. " WHERE semester_id = $sem_id"
/*
. " AND (course_crn = "
. implode(" OR course_crn = ", array_keys($crns))
. ")"
*/
;
if($classtype == "online") {
$cc_sql .= " AND is_online = 1";
} else {
$cc_sql .= " AND is_online = 0";
}
$cc_res = mysql_query($cc_sql);
if(!$cc_res) {
die("Database error (CRN check): " . mysql_error(). "<br>" . $cc_sql);
}
while($row = mysql_fetch_assoc($cc_res)) {
$crn = $row['course_crn'];
array_push($info, "Database entry found for CRN $crn");
}
} else {
array_push($errors, "No courses to add");
}
/* check instructor file */
$ttlines = file($ttable);
foreach($ttlines as $line) {
$line = rtrim($line);
$parts = preg_split("/\t+/", $line);
$iid = trim($parts[0]);
$dept_id = trim(preg_replace("/^0+/", '', $parts[1]));
$instr_name = $parts[2];
$instr_lname = preg_replace("/\, .*/", '', $instr_name);
$instr_fname = preg_replace("/.*\, /", '', $instr_name);
if(
($iid == '')
|| ($dept_id == '')
|| ($instr_name == '')
|| ($instr_lname == '')
//|| ($instr_fname == '')
|| (preg_match("/[^0-9]/", $iid))
|| (preg_match("/[^0-9]/", $dept_id))
) {
array_push($errors, "Bad line format or invalid data in Teachers table: $line");
} else {
include_once('inc/mysql.php');
$ic_sql = ""
. "SELECT perm_level"
. " FROM permissions"
. " WHERE instr_id LIKE '$instr_id'"
. " AND dept_id = $dept_id"
. " AND perm_level >= 1"
;
$ic_res = mysql_query($ic_sql);
if(!$ic_res) {
die("Database error (instructor check): " . mysql_error());
}
if(mysql_num_rows($ic_res) < 1) {
/* check if instructor exists in instructors table */
$ic2_sql = ""
. "SELECT *"
. " FROM instructors"
. " WHERE instr_id LIKE '$instr_id'"
;
$ic2_res = mysql_query($ic2_sql);
if(!$ic2_res) {
die("Database error (instructor $instr_id): " . mysql_error());
}
/* if not, add instructor */
if(mysql_num_rows($ic2_res) < 1) {
$add_sql = '';
if($instr_fname != '') {
$add_sql = ""
. "INSERT INTO instructors"
. " (instr_id, instr_pass, instr_lname, instr_fname)"
. " VALUES"
. " ('$instr_id', MD5('gsweval'), '$instr_lname', '$instr_fname')"
;
} else {
$add_sql = ''
. 'INSERT INTO instructors'
. ' (instr_id, instr_pass, instr_lname)'
. ' VALUES'
. " ('$instr_id', MD5('gsweval'), '$instr_lname')"
;
$add_res = mysql_query($add_sql);
if(!$add_res) {
die("Database error (add instructor $instr_id): " . mysql_error());
} else {
array_push($info, "Instructor added: $line");
}
}
}
/* in either case, add permission 1 */
$perm_sql = ""
. "INSERT INTO permissions"
. " (instr_id, dept_id, perm_level)"
. " VALUES"
. " ('$instr_id', $dept_id, 1)"
;
$perm_res = mysql_query($perm_sql);
if(!$perm_res) {
die("Database error (add permissions $instr_id): " . mysql_error());
} else {
array_push($info, "Gave $instr_lname, $instr_fname permission 1 on department $dept_id");
}
}
}
}
if(count($errors) > 0) {
print_error($errors);
die;
}
$semname = $sem_name;
$semyear = $sem_year;
include('inc/insidehead.php');
print <<<SUCCESS
<h1>Success!</h1>
<p>
Your data for <strong>$classtype</strong> classes in <strong>$semname of $semyear</strong> has been verified.
</p>
<p>
Please <a href='insertdata.php?sid=$sem_id&ct=$classtype&ts=$timestamp'>Click here</a> to insert the data into the database.
</p>
<hr width='50%'/>
SUCCESS;
if(count($info) > 0) {
print "<h2>Information:</h2>\n<ul>\n";
foreach($info as $line) {
print "<li>\n$line\n</li>\n";
}
print "</ul>";
}
include('inc/insidefoot.php');
?>