albiruni 1.2.1 albiruni: ^1.2.1 copied to clipboard
A wrapper to easily access IIUM's Course Schedule website data.
import 'package:albiruni/albiruni.dart';
void main() {
// initiate albiruni class with session & semester
var albiruni =
Albiruni(semester: 1, session: "2022/2023", studyGrade: StudyGrad.ug);
// comment/uncomment to test it
subjectsFirstPage(albiruni);
// searchSubject(albiruni);
// subjectSection(albiruni);
// allSubjects(albiruni);
// testPreflight();
}
/// Print all the subjects on first page
void subjectsFirstPage(Albiruni query) async {
var subjects = await query.fetch("ENGIN");
for (var subject in subjects) {
print(subject);
}
}
/// Subject can be search by their course code.
void searchSubject(Albiruni query) async {
var subjects =
await query.fetch("CFL", course: "tqtd2002".toAlbiruniFormat());
for (var subject in subjects) {
print(subject);
}
}
/// Get specific section
void subjectSection(Albiruni query) async {
String code = "tqtd2002";
int section = 501;
// some subject spans more than a page, so we can loop though each page
// and try to find the section we want
for (int i = 1;; i++) {
var subjects =
await query.fetch("CFL", course: code.toAlbiruniFormat(), page: i);
if (subjects.isEmpty) break;
try {
var subject = subjects.firstWhere((element) => element.sect == section);
print(subject);
} catch (e) {
print(e);
}
}
}
// Get all the subject's course code from a kuliyyah
void allSubjects(Albiruni query) async {
List<String> courseCodes = [];
int i = 1; // page number
// loop until it reached page with no data
while (true) {
try {
var res = await query.fetch("CCAC", page: i);
courseCodes.addAll(res.map((e) => e.code));
} catch (e) {
print('Error is thrown here. Mark the end of the subjects in a page.');
break;
}
i++;
}
courseCodes = courseCodes.toSet().toList(); //remove duplication
print(courseCodes.join(', ')); // all course codes
print('Total: ${courseCodes.length}'); // number of courses
}
/// Quick test to see of requested scope is available/valid
void testPreflight() async {
var anotherAlbiruniInstance = Albiruni(semester: 1, session: "2021/2022");
print(await anotherAlbiruniInstance.preflight("KICT"));
}