use of me.vertretungsplan.objects.Substitution in project substitution-schedule-parser by vertretungsplanme.
the class UntisCommonParser method parseWithExtraLine.
private void parseWithExtraLine(JSONObject data, SubstitutionScheduleDay day, List<String> columns, Element element, String className, String teacherName) {
Element zeile = null;
try {
zeile = element.parent().nextElementSibling();
if (zeile.select("td") == null) {
zeile = zeile.nextElementSibling();
}
int skipLines = 0;
while (zeile != null && !zeile.select("td").attr("class").equals("list inline_header")) {
if (skipLines > 0) {
skipLines--;
zeile = zeile.nextElementSibling();
continue;
}
Substitution v = new Substitution();
String klassen = null;
String course = null;
int i = 0;
for (Element spalte : zeile.select("td")) {
String text = spalte.text();
String type = columns.get(i);
if (isEmpty(text) && !type.equals("teacher")) {
i++;
continue;
}
int skipLinesForThisColumn = 0;
Element nextLine = zeile.nextElementSibling();
boolean continueSkippingLines = true;
while (continueSkippingLines) {
if (nextLine != null && nextLine.children().size() == zeile.children().size()) {
Element columnInNextLine = nextLine.child(spalte.elementSiblingIndex());
if (columnInNextLine.text().replaceAll("\u00A0", "").trim().equals(nextLine.text().replaceAll("\u00A0", "").trim())) {
// Continued in the next line
text += " " + columnInNextLine.text();
skipLinesForThisColumn++;
nextLine = nextLine.nextElementSibling();
} else {
continueSkippingLines = false;
}
} else {
continueSkippingLines = false;
}
}
if (skipLinesForThisColumn > skipLines)
skipLines = skipLinesForThisColumn;
switch(type) {
case "lesson":
v.setLesson(text);
break;
case "subject":
handleSubject(v, spalte);
if (course != null) {
v.setSubject((v.getSubject() != null ? v.getSubject() + " " : "") + course);
course = null;
}
break;
case "course":
if (v.getSubject() != null) {
v.setSubject(v.getSubject() + " " + text);
} else {
course = text;
}
break;
case "previousSubject":
v.setPreviousSubject(text);
break;
case "type":
v.setType(text);
v.setColor(colorProvider.getColor(text));
break;
case "type-entfall":
if (text.equals("x")) {
v.setType("Entfall");
v.setColor(colorProvider.getColor("Entfall"));
} else if (v.getType() == null) {
v.setType("Vertretung");
v.setColor(colorProvider.getColor("Vertretung"));
}
break;
case "room":
handleRoom(v, spalte);
break;
case "teacher":
if (text.equals("+")) {
v.setType("Eigenverantw. Arbeiten");
v.setColor(colorProvider.getColor(v.getType()));
} else if (!isEmpty(text) && teacherName == null) {
handleTeacher(v, spalte, data);
}
// otherwise ignore - teacher is in extra line
break;
case "previousTeacher":
v.setPreviousTeachers(splitTeachers(text, data));
break;
case "desc":
v.setDesc(text);
break;
case "desc-type":
v.setDesc(text);
String recognizedType = recognizeType(text);
v.setType(recognizedType);
v.setColor(colorProvider.getColor(recognizedType));
break;
case "previousRoom":
v.setPreviousRoom(text);
break;
case "substitutionFrom":
v.setSubstitutionFrom(text);
break;
case "teacherTo":
v.setTeacherTo(text);
break;
case "ignore":
break;
case // used by UntisSubstitutionParser
"date":
break;
case "class":
if (className == null) {
klassen = getClassName(text, data);
}
// otherwise ignore - class is in extra line
break;
default:
throw new IllegalArgumentException("Unknown column type: " + type);
}
i++;
}
if (course != null) {
v.setSubject(course);
}
autoDetectType(data, zeile, v);
if (className != null) {
v.getClasses().add(className);
} else {
handleClasses(data, v, klassen, getAllClasses());
}
if (teacherName != null) {
v.setTeacher(teacherName);
}
if (v.getLesson() != null && !v.getLesson().equals("")) {
day.addSubstitution(v);
}
zeile = zeile.nextElementSibling();
}
} catch (Throwable e) {
e.printStackTrace();
}
}
use of me.vertretungsplan.objects.Substitution in project substitution-schedule-parser by vertretungsplanme.
the class UntisCommonParserTest method testHandleRoomBoth.
@Test
public void testHandleRoomBoth() throws Exception {
Substitution subst = new Substitution();
Element cell = Jsoup.parse("<table><td><s>248</s>?236</td></table>").select("td").first();
UntisCommonParser.handleRoom(subst, cell);
assertEquals("248", subst.getPreviousRoom());
assertEquals("236", subst.getRoom());
}
use of me.vertretungsplan.objects.Substitution in project substitution-schedule-parser by vertretungsplanme.
the class UntisCommonParserTest method testHandleClasses.
@Test
public void testHandleClasses() throws JSONException, CredentialInvalidException {
JSONObject data = new JSONObject("{\"classesSeparated\": false}");
Substitution subst = new Substitution();
UntisCommonParser.handleClasses(data, subst, "1112", Arrays.asList("11", "12"));
assertEquals(new HashSet<>(Arrays.asList("11", "12")), subst.getClasses());
subst = new Substitution();
UntisCommonParser.handleClasses(data, subst, "11abc12b", Arrays.asList("11a", "11b", "11c", "12a", "12b", "12c"));
assertEquals(new HashSet<>(Arrays.asList("11a", "11b", "11c", "12b")), subst.getClasses());
}
use of me.vertretungsplan.objects.Substitution in project substitution-schedule-parser by vertretungsplanme.
the class SubstitutionTextUtilsTest2 method testGetTeachers2.
@Test
public void testGetTeachers2() {
Substitution s = new Substitution();
s.setTeacher("B");
s.setPreviousTeacher(null);
assertEquals("B", SubstitutionTextUtils.getTeachers(s));
SubstitutionTextUtils.getText(s);
}
use of me.vertretungsplan.objects.Substitution in project substitution-schedule-parser by vertretungsplanme.
the class ESchoolDemoTest method demoTest.
@Test
public void demoTest() throws IOException, JSONException {
SubstitutionSchedule schedule = parser.parseESchoolSchedule(Jsoup.parse(html));
assertEquals(new LocalDateTime(2016, 9, 4, 14, 53), schedule.getLastChange());
assertEquals(1, schedule.getDays().size());
SubstitutionScheduleDay day = schedule.getDays().get(0);
assertEquals(new LocalDate(2016, 9, 5), day.getDate());
assertEquals(6, day.getSubstitutions().size());
assertEquals(0, day.getMessages().size());
for (Substitution subst : day.getSubstitutions()) {
assertTrue(subst.getClasses().size() == 1);
assertNotEmpty(subst.getLesson());
assertNullOrNotEmpty(subst.getPreviousSubject());
assertNotEmpty(subst.getSubject());
assertNullOrNotEmpty(subst.getRoom());
assertNullOrNotEmpty(subst.getTeacher());
assertNullOrNotEmpty(subst.getPreviousTeacher());
assertNullOrNotEmpty(subst.getDesc());
assertNotEmpty(subst.getType());
}
}
Aggregations