Files
@ 8e9e5035f025
Branch filter:
Location: SlatePermutate/school.d/umich.crawl.inc
8e9e5035f025
9.8 KiB
text/x-povray
Update some of the school crawler API documentation.
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 | <?php /* -*- mode: php; -*- */
/*
* Copyright 2011 Nathan Gelderloos, Ethan Zonca, Nathan Phillip Brink
*
* This file is part of SlatePermutate.
*
* SlatePermutate is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* SlatePermutate 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. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with SlatePermutate. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \brief
* Crawls University of Michigan's schedule.
*
* Potential startpoints:
* - http://lsa.umich.edu/cg/cg_advsearch.aspx (HTML/curl-based)
* - http://ro.umich.edu/schedule/ (harder HTML for semester guessing, one CSV download for entire semester -- <=4MB)
*
* \param $semesters
* An array to be filled with semesters.
* \param $school_crawl_log
* The school_crawl_log handle.
* \return
* 1 on failure, 0 on success.
*/
function umich_crawl(array &$semesters, $school_crawl_log)
{
$url = 'http://ro.umich.edu/schedule/';
$cookies = array();
/* determine list of semesters: */
$semesters_dom = new DOMDocument();
$semesters_dom->loadHTML(school_crawl_geturi($url, $cookies, $school_crawl_log));
$semesters_xpath = new DOMXPath($semesters_dom);
$tables_nodelist = $semesters_dom->getElementsByTagName('table');
foreach ($tables_nodelist as $table)
{
$table_tr = NULL;
foreach ($semesters_xpath->query('tr', $table) as $table_tr)
break;
if (empty($table_tr))
{
school_crawl_logf($school_crawl_log, 5, "Unable to find first row in table which I suspect to be a table holding all of the semesters I'm interested in.");
continue;
}
$semester_columns = array(
'name' => school_crawl_table_resolve_column($table_tr, 'Term'),
'csv' => school_crawl_table_resolve_column($table_tr, '/[cC][sS][vV]/', 'school_crawl_table_resolve_column_regexcmp'),
);
foreach ($semester_columns as $semester_column_name => $semester_column)
if ($semester_column === FALSE)
{
school_crawl_logf($school_crawl_log, 4, "Unable to resolve column %s onto a column in a semester listing table. Skipping this table.",
$semester_column_name);
$semester_columns = NULL;
}
if (empty($semester_columns))
continue;
$first = TRUE;
foreach ($semesters_xpath->query('tr', $table) as $table_tr)
if ($first)
{
$first = FALSE;
continue;
}
else
{
$rownodes = school_crawl_table_rownodes($table_tr);
$semester_name = $rownodes->item($semester_columns['name']);
$semester_csv = $rownodes->item($semester_columns['csv']);
if (!preg_match('/^(.+) ([0-9]+)$/', $semester_name->textContent, $matches))
{
school_crawl_logf($school_crawl_log, 4, "Unable to parse semester name `%s'. Skipping this semester.",
$semester_name->textContent);
continue;
}
$semester = new Semester($matches[2], $matches[1]);
$a = NULL;
foreach ($semesters_xpath->query('descendant::a', $semester_csv) as $a)
break;
if (empty($a) || !$a->hasAttribute('href'))
{
school_crawl_logf($school_crawl_log, 4, "Unable to find <a /> element with an href attribute for a CSV link for the %s semester. Skipping this semester. (textContent of csv column: %s)",
$semester, $semester_csv->textContent);
continue;
}
if (!umich_crawl_csv($school_crawl_log, $semester, $a->getAttribute('href')))
{
$semesters[] = $semester;
/**
* \todo
* If we try to crawl more than one umich semester,
* PHP runs out of memory. We need to bump our API
* and rehash script to support incremental crawling
* or early data committing if we want umich
* crawling to work for more than one semester.
*/
return 0;
}
else
school_crawl_logf($school_crawl_log, 2, "Unable to interpret CSV information for %s. Skipping semester.",
$semester);
}
}
return 0;
}
/**
* \brief
* Handle the crawling of one semester of umich.
*
* \param $school_crawl_log
* The school_crawl_log handle.
* \param $semester
* A Semester object to populate with courses from this semester.
* \param $csv_href
* A link to a CSV file which will be downloaded and parsed.
*/
function umich_crawl_csv($school_crawl_log, &$semester, $csv_href)
{
school_crawl_logf($school_crawl_log, 3, "Crawling %s.",
$semester);
$cookies = array();
$uri = $csv_href;
/* parse into lines and then each row needs to be individually parsed */
$csv = str_getcsv(school_crawl_geturi($uri, $cookies, $school_crawl_log), PHP_EOL);
$fields = array(
'Term' => FALSE /* $semester->season_get() . ' ' . $semester->year_get() */,
'Session' => FALSE /* "Regular Academic Session", "First 7 Week Session", "Second 7 Week Session" <-- half-semester support? */,
'Acad Group' => FALSE /* long version of the department sorta, more general than the subject field */,
'Class Nbr' => FALSE /* section synonym */,
'Subject' => FALSE /* "Mathematics (MATH)" */,
'Catalog Nbr' => FALSE /* "201", unqualified course_id */,
'Section' => FALSE /* You still reading these comments? */,
'Course Title' => FALSE /* for your sake, I hope you aren't */,
'Component' => FALSE /* "LAB", "LEC", "REC" -- i.e., meeting_type(?) */,
'Codes' => FALSE /* "P W", "P ", "P R ", "PI ", "A ", "P RW" ??????? (reminds me of ``svn status''). If flag[3] = 'W', then the class has a meeting times */,
'M' => FALSE /* if a day is enabled, it is set to itself. I.e., $row['M'] = 'M' or $row['M'] = '' */,
'T' => FALSE,
'W' => FALSE,
'TH' => FALSE,
'F' => FALSE,
'S' => FALSE,
'SU' => FALSE /* OK, we'll have to add Sunday support someday ;-) */,
'Start Date' => FALSE /* yea! */,
'End Date' => FALSE /* "12/13/2011" */,
'Time' => FALSE /* "1230-130PM", "9-1030AM", "1130-1PM" */,
'Location' => FALSE,
'Instructor' => FALSE,
'Units' => FALSE /* As in credit hours */,
);
$ignored_fields = array(
'Term' => TRUE,
'Session' => TRUE,
'Acad Group' => TRUE,
'Codes' => TRUE,
'SU' => TRUE,
'Units' => TRUE,
);
foreach (str_getcsv($csv[0]) as $col_num => $col_name)
if (isset($fields[$col_name]))
$fields[$col_name] = $col_num;
else
school_crawl_logf($school_crawl_log, 6, "We do not recognize the %s column in the CSV file for %s.",
$col_name, $semester);
foreach ($fields as $field => $col_num)
if ($col_num === FALSE
&& empty($ignored_field[$field]))
{
school_crawl_logf($school_crawl_log, 2, "Unable to find column %s in CSV for %s. Skipping this semester.",
$field, $semester);
return 1;
}
/* remove the row with heading from the CSV dataset */
unset($csv[0]);
/* Now actually parse some data :-). */
foreach ($csv as $row)
{
$row = str_getcsv($row);
$synonym = trim($row[$fields['Class Nbr']]);
$course_id = trim($row[$fields['Catalog Nbr']]);
if (!preg_match(';\(([A-Z]+)\)$;', $row[$fields['Subject']], $matches))
{
school_crawl_logf($school_crawl_log, 5, "Unable to parse department string `%s'. Skipping section/course (synonym=%s).",
$row[$fields['Subject']], $synonym);
continue;
}
$dept = $matches[1];
$days = '';
foreach (array('M' => 'm', 'T' => 't', 'W' => 'w', 'TH' => 'h', 'F' => 'f', 'S' => 's')
as $field => $day)
if (strlen(trim($row[$fields[$field]])))
$days .= $day;
if (!preg_match(';^([0-9]+)-([0-9]+)([AP])M$;', $row[$fields['Time']], $matches))
{
school_crawl_logf($school_crawl_log, 4, "Unable to parse meeting time: `%s'. Skipping section/meeting (synonym=%s).",
$row[$fields['Time']], $synonym);
/* ensure that the class is added nonetheless */
if ($semester->class_get($dept, $course_id) === NULL)
$semester->class_add(new Course($dept . '-' . $course_id, $row[$fields['Course Title']]));
continue;
}
$time_end = umich_crawl_time($matches[2], $matches[3]);
$time_start = umich_crawl_time($matches[1], FALSE, $time_end);
/* umich defines course_slots by meeting_type. */
$meeting_type = school_crawl_meeting_type(trim($row[$fields['Component']]));
$semester->section_meeting_add($dept, $course_id, trim($row[$fields['Course Title']]),
trim($row[$fields['Section']]), $synonym,
new SectionMeeting($days, $time_start, $time_end,
trim($row[$fields['Location']]),
$meeting_type,
trim($row[$fields['Instructor']])),
$meeting_type);
}
}
/**
* \brief
* Try to turn a umich-formatted time into something usable.
*
* \param $raw
* The raw input.
* \param $xm
* FALSE or, if PM or AM was specified, 'P' for PM and 'A' for AM.
* \param $before
* A time of day before which this time must be. Used generally for
* the start time of a class. The end time of a class must be parsed
* first so that the result of that calculation may be passed as the
* $before value.
*/
function umich_crawl_time($raw, $xm = FALSE, $before = '2400')
{
$h = $raw;
$m = '00';
if (strlen($raw) > 2)
{
$h = substr($raw, 0, strlen($raw) - 2);
$m = substr($raw, strlen($raw) - 2);
}
$before_h = substr($before, 0, 2);
$before_m = substr($before, 2);
if ($xm === FALSE)
{
/* if the time could feasibly be in the afternoon, assume it is: */
if (($h + 12) * 60 + $m < $before_h * 60 + $before_m)
$xm = 'P';
else
$xm = 'A';
}
if (!strcmp($xm, 'P') && $h < 12)
$h += 12;
return sprintf('%02d%02d', $h, $m);
}
|