Files
@ f5b8a6f32c9a
Branch filter:
Location: SlatePermutate/school.d/cedarville.inc
f5b8a6f32c9a
7.8 KiB
text/x-povray
Actually reject bad input for the feedback form instead of detecting it but still allowing it through.
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 | <?php
function cedarville_info()
{
return array('name' => 'Cedarville University',
'url' => 'http://cedarville.edu/',
'domains' => array(
'cedarville.edu',
),
'student_address' => 'Cedarville Student',
);
}
function cedarville_instructions_html()
{
return <<<EOF
<h2>Cedarville-specific Instructions</h2>
<p>
SlatePermutate can be a useful tool for scheduling your next semester at <a href="http://cedarville.edu/" target="_blank">Cedarville University</a>.
</p>
<ol>
<li> <strong>Talk to your advisor</strong> and figure out which courses you need to take. Use the <a href="http://www.cedarville.edu/courses/schedule/">course list</a> to see what's available.</li>
<li>Enter the course ID, such as PHYS-1020, in the Class ID blank. You will see a list of auto-suggestions.</li>
<li><strong>You must click on the auto-suggested item</strong> to automatically add all sections of the class.</li>
<li>Submit your schedule and view all of the different permutations of your schedule.</li>
<li>Wait until it's your turn to register and grab your preferred sections before they fill up!</li>
</ol> <!--'-->
EOF;
}
/**
* \brief
* Get a list of default classes (with sections (with meeting
* times)) for Cedarville students.
*
* \return
* An array of Classes objects.
*/
function cedarville_default_classes()
{
$chapel = new Classes('Chapel');
$chapel->section_add(new Section('_', array(new SectionMeeting('mtwhf', '1000', '1045', '', 'chapel')),
'', '_'));
return array($chapel);
}
/**
* \brief
* Parse given html into an array, first row is row headers
*
* \param $html
* HTML that PHP's DOM would willingly would eat.
*/
function table_parse($html)
{
$arr = array();
$dom = new DOMDocument;
if(!$html)
return NULL;
$dom->loadHTML($html);
$dom->preserveWhiteSpace = FALSE;
$tables = $dom->getElementsByTagName('table');
$rows = $tables->item(0)->getElementsByTagName('tr'); // Get first table on page
foreach ($rows as $rownum => $row) {
$cols = $row->getElementsByTagName('td');
foreach($cols as $colnum => $col){
$arr[$rownum][$colnum] = $col->nodeValue;
}
}
return $arr;
}
/** Crawls Cedarville course listings. $season is "fa" or "sp", year is 4-digit year */
function cedarville_crawl($semester, $verbosity = 1)
{
$season = strtolower(substr($semester->season_get(), 0, 2));
$year = $semester->year_get();
/* Current academic departments. Update as needed. */
$departments = array('be','ba','ca','ed','eg','es','hg','id','ll','ms','mu','ns','ph','py','sm','sw');
$basepath = "http://cedarville.edu/courses/schedule/";
$season = strtolower($season);
$tables = array();
foreach($departments as $department)
{
$html = file_get_contents($basepath . $year . $season . '_' . $department . '_' . 'all.htm');
if (!$html)
continue;
$tables[$department] = table_parse(cedarville_html_fix($html));
}
$meeting_type_maps = array('LAB' => 'lab', 'LECT' => 'lecture');
foreach ($tables as $dept_table)
{
/*
* Discard the first row, which has the contents of the <th />
* elements.
*/
unset($dept_table[0]);
foreach($dept_table as $course_table)
{
/*
* format:
* 0: course synonym, an unsigned integer.
* 1: section spec, parsable by Section::parse().
* 2: friendly course title.
* 3: Instructor name.
* 4: Number of credit hours in decimal notation.
* 5: Fee.
* 6: Meeting time, explained below.
* 7: Cap.
* 8-10: Textbook link. Most rows only have column 8, not
* all the way through 10. This information seems
* quite useless.
*
* Section meeting time/place format:
*
* Confusing example: ' ILB WI219 TR 08:30A-09:45A'
* Complete example plus lab: ' LEC TYL203 MWF 08:00A-08:50A LAB ENS118 TR 03:00P-04:30P'
*
* Appears to have format:
* <meeting_info>: <type> <room> <days> <time_start>-<time_end> <meeting_info>
*
* It appears tht <type> may be:
* LEC: normal lecture meeting.
* ONL: online course.
* ILB: ethan says a partially online course...?
* HYB: hybrid of...?
* FLD: field...?
* FE2: ?
* CLN: ?
* LAB: Lab
* LES: something for some PFMU/PLMU class?
*/
$synonym = $course_table[0];
$section_parts = Section::parse($course_table[1]);
if (count($section_parts) < 3)
{
error_log('Error parsing section_id. Given `' . $course_table[1] . '\', interpreted as `'
. implode('-', $section_parts) . '\'. Skipping.');
continue;
}
$instructor = $course_table[3];
/*
* Each course may have multiple meeting times associated
* with it at Cedarville. We are not sure how to handle this
* quite, because different class sections may be tied with
* different lab meetings and stuff...
*/
$meetings_str = $course_table[6];
if (strpos($meetings_str, 'TBA') !== FALSE)
{
if ($verbosity > 1)
error_log('Skipping ' . implode('-', $section_parts) . ' because its meeting time info has `TBA\' in it.');
continue;
}
$meetings = array();
$meeting_multiple_types = array();
while (strlen($meetings_str) > 5)
{
if (!preg_match(';^ ([A-Z]+) +([A-Z]+[A-Z0-9]*) +([MTWRF]{1,5}) +([0-9:AP]+)-([0-9:AP]+);',
$meetings_str, $meeting_matches))
{
if (preg_match(';^Dates:[^0-9]+([/0-9]{8})-([/0-9]{8});',
$meetings_str, $meeting_matches))
{
if ($verbosity > 4)
error_log('Skipping some meeting data for '
. implode('-', $section_parts) . ' because it is a date range: `'
. $meeting_matches[0] . '\'');
$meetings_str = substr($meetings_str, strlen($meeting_matches[0]));
continue;
}
if ($verbosity > 0)
error_log('Error parsing meeting time. Given `' . $meetings_str . '\'. Skipping '
. implode('-', $section_parts));
break;
}
/* prepare for parsing the next meeting time */
$meetings_str = substr($meetings_str, strlen($meeting_matches[0]));
if (isset($meetings[$meeting_matches[1]]))
{
if ($verbosity > 0 && !isset($meeting_multiple_types[$meeting_matches[1]]))
{
error_log('Section ' . implode('-', $section_parts)
. ' has multiple meeting times for meeting_type of '
. $meeting_matches[1] . ' which my unflexible code which'
. ' could be made more flexible doesn\'t yet support.'
. ' Skipping the extra meeting times for this type of meeting.');
/* only give the above error once per type. */
$meeting_multiple_types[$meeting_matches[1]] = TRUE;
}
continue;
}
$meetings[$meeting_matches[1]]
= array('room' => $meeting_matches[2],
'days' => school_crawl_days_str_format($meeting_matches[3]),
'time_start' => school_crawl_time_format(strptime($meeting_matches[4] . 'M', '%I:%M%p')),
'time_end' => school_crawl_time_format(strptime($meeting_matches[5] . 'M', '%I:%M%p')),
'type' => $meeting_matches[1],
);
}
$section_meetings = array();
foreach ($meetings as $meeting)
{
$meeting_type = $meeting['type'];
if (isset($meeting_type_maps[$meeting_type]))
$meeting_type = $meeting_type_maps[$meeting_type];
$section_meetings[] = new SectionMeeting($meeting['days'], $meeting['time_start'],
$meeting['time_end'], $meeting['room'],
$meeting_type);
}
$semester->section_add($section_parts['department'], $section_parts['course'],
new Section($section_parts['section'], $section_meetings,
$synonym, $instructor));
}
}
return 0;
}
/**
* \brief
* Fix some incorrect usage of the HTML entity delimiter, the ampersand.
*/
function cedarville_html_fix($html)
{
$html = preg_replace('/&&/', '&&', $html);
return preg_replace('/&([^;]{5})/', '&$1', $html);
}
|