|
| 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 | +} |
0 commit comments