Skip to content

Commit 9c12c56

Browse files
authored
[Feature:System] Local CSV File (#27)
* Local CSV File New helper script for retrieving CSV file on an accessible file system. * Update config.php
1 parent 8ad5dae commit 9c12c56

File tree

4 files changed

+148
-41
lines changed

4 files changed

+148
-41
lines changed

student_auto_feed/config.php

+16-2
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,23 @@
129129
//Allows "\r" EOL encoding. This is rare but exists (e.g. Excel for Macintosh).
130130
ini_set('auto_detect_line_endings', true);
131131

132+
/* DATA SOURCING --------------------------------------------------------------
133+
* The Student Autofeed provides helper scripts to retrieve the CSV file for
134+
* processing. Shell script ssaf.sh is used to invoke one of the helper
135+
* scripts and then execute the autofeed. Current options are csv_local.php,
136+
* imap_remote.php, and json_remote.php
137+
* ------------------------------------------------------------------------- */
138+
139+
//Local CSV
140+
//This is used by csv_local.php to reference where the CSV file is provided.
141+
define('LOCAL_SOURCE_CSV', '/path/to/csv');
142+
132143
//Remote IMAP
133144
//This is used by imap_remote.php to login and retrieve a student enrollment
134145
//datasheet, should datasheets be provided via an IMAP email box. This also
135-
//works with exchange servers with IMAP enabled.
146+
//works with exchange servers (local network and cloud) with IMAP and basic
147+
//authentication enabled.
148+
//Note that this does NOT work should exchange require OAuth2.
136149
//IMAP_FOLDER is the folder where the data sheets can be found.
137150
//IMAP_OPTIONS: q.v. "Optional flags for names" at https://www.php.net/manual/en/function.imap-open.php
138151
//IMAP_FROM is for validation. Make sure it matches the identity of who sends the data sheets
@@ -163,7 +176,8 @@
163176
define('JSON_REMOTE_PASSWORD', 'json_password'); //DO NOT USE IN PRODUCTION
164177
define('JSON_REMOTE_PATH', '/path/to/files/');
165178

166-
// Add/Drop Reporting
179+
/* ADD/DROP REPORTING ------------------------------------------------------ */
180+
167181
// Where to email reports. Set to null to disable sending email.
168182
// Sendmail (or equivalent) needs to be installed on the server and configured
169183
// in php.ini. Reports are sent "unauthenticated".

student_auto_feed/csv_local.php

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
#!/usr/bin/env php
2+
<?php
3+
require __DIR__ . "/config.php";
4+
5+
new csv_local();
6+
exit(0);
7+
8+
/**
9+
* Validate and copy CSV data file via filesystem.
10+
*
11+
* This data source option has the CSV file provided to any filesystem the
12+
* autofeed's server can access (local or mounted). LOCAL_SOURCE_CSV must
13+
* be defined in config.php, referencing the location of the CSV file upload.
14+
*
15+
* @author Peter Bailie, Rensselaer Polytechnic Institute
16+
*/
17+
class csv_local {
18+
/** @static @property string */
19+
private static $source_file = LOCAL_SOURCE_CSV;
20+
21+
/** @static @property string */
22+
private static $dest_file = CSV_FILE;
23+
24+
/** @static @property string */
25+
private static $err = "";
26+
27+
public function __construct() {
28+
// Main process
29+
switch(false) {
30+
case $this->validate_csv():
31+
case $this->copy_csv():
32+
// If we wind up here, something went wrong in the main process.
33+
fprintf(STDERR, "%s", self::$err);
34+
exit(1);
35+
}
36+
}
37+
38+
/**
39+
* Validate CSV file before copy.
40+
*
41+
* Check's for the file's existence and tries to check that the file was
42+
* provided/refreshed on the same day as the autofeed was run. The day
43+
* check is to help prevent the auto feed from blindly running the same CSV
44+
* multiple days in a row and alert the sysadmin that an expected file
45+
* refresh did not happen. $this->err is set with an error message when
46+
* validation fails.
47+
*
48+
* @return boolean true when CSV is validated, false otherwise.
49+
*/
50+
private function validate_csv() {
51+
clearstatcache();
52+
53+
if (!file_exists(self::$source_file)) {
54+
self::$err = sprintf("CSV upload missing: %s\n", self::$source_file);
55+
return false;
56+
}
57+
58+
$file_modified = filemtime(self::$source_file);
59+
$today = time();
60+
// There are 86400 seconds in a day.
61+
if (intdiv($today, 86400) !== intdiv($file_modified, 86400)) {
62+
$today = date("m-d-Y", $today);
63+
$file_modified = date("m-d-Y", $file_modified);
64+
$hash = md5(file_get_contents(self::$source_file));
65+
self::$err = sprintf("CSV upload modified time mismatch.\nToday: %s\nUploaded File: %s\nUploaded File Hash: %s\n", $today, $file_modified, $hash);
66+
return false;
67+
}
68+
69+
return true;
70+
}
71+
72+
/**
73+
* Copy CSV file.
74+
*
75+
* $this->err is set with an error message when file copy fails.
76+
*
77+
* @return boolean true when copy is successful, false otherwise.
78+
*/
79+
private function copy_csv() {
80+
if (file_exists(self::$dest_file)) {
81+
unlink(self::$dest_file);
82+
}
83+
84+
if (!copy(self::$source_file, self::$dest_file)) {
85+
self::$err = sprintf("Failed to copy file.\nSource: %s\nDest: %s\n", self::$source_file, self::$dest_file);
86+
return false;
87+
}
88+
89+
return true;
90+
}
91+
}

student_auto_feed/ssaf.sh

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#!/usr/bin/env bash
2+
3+
# Use this bash script to run a data sourcing script before
4+
# submitty_student_auto_feed.php. This is intended to be used with cron.
5+
#
6+
# Author: Peter Bailie, Rensselaer Polytechnic Institute
7+
8+
display_usage() {
9+
cat << EOM
10+
usage: ssaf.sh (data_source) (term) [DB_auth]
11+
12+
data_source: csv_local|imap_remote|json_remote
13+
Which data sourcing script to run first: csv_local.php,
14+
imap_remote.php, or json_remote.php (required)
15+
term: Term code to pass to submitty_student_auto_feed.php (required)
16+
DB_auth: DB auth string for submitty_student_auto_feed.php [optional]
17+
EOM
18+
exit 1
19+
}
20+
21+
if [ $# -ne 2 ] && [ $# -ne 3 ]; then
22+
display_usage
23+
fi
24+
25+
CWD=$(dirname "$0")
26+
if [ "$1" = "csv_local" ] || [ "$1" = "imap_remote" ] || [ "$1" = "json_remote" ]; then
27+
SOURCE="${CWD}/${1}.php"
28+
else
29+
display_usage
30+
fi
31+
32+
if $SOURCE; then
33+
if [ "$3" != "" ]; then
34+
DASH_A="-a$3"
35+
fi
36+
37+
DASH_T="-t$2"
38+
"$CWD"/submitty_student_auto_feed.php "$DASH_T" "$DASH_A"
39+
else
40+
echo "${1}.php exited $?. Auto feed not run."
41+
fi

student_auto_feed/ssaf_remote.sh

-39
This file was deleted.

0 commit comments

Comments
 (0)