This repository has been archived on 2023-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
ib-clearance/ib-clearance.py

155 lines
4.4 KiB
Python
Raw Normal View History

2018-10-09 10:01:01 +02:00
#!/usr/bin/env python3
2018-10-23 17:10:40 +02:00
# Copyright 2018 Abdulkadir Furkan Şanlı
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2018-10-09 10:01:01 +02:00
import sqlite3
import time
def connect_database(file):
"""
2018-11-04 11:33:43 +01:00
Creates and returns Connection object.
2018-10-09 10:01:01 +02:00
:param file: database file
"""
conn = sqlite3.connect(file)
return conn
def get_data(conn):
2018-10-09 10:01:01 +02:00
"""
Requests student ID and returns integer tuple (id, class) with valid
student id, corresponding class no. (1 or 2) and extra subject IDs.
2018-10-09 10:01:01 +02:00
:param conn: Connection object
"""
2018-12-30 09:28:16 +01:00
try:
2019-01-11 12:00:44 +01:00
id = int(input("\nPlease enter student ID: "))
2018-10-09 10:01:01 +02:00
2018-12-30 09:28:16 +01:00
cur = conn.cursor()
cur.execute("SELECT id, student_class, other FROM students")
2018-12-30 09:28:16 +01:00
ids = cur.fetchall()
for tup in ids:
# ids is list of tuples
if id == tup[0]:
# return tuple x with valid id, class and extra class IDs
lis = list(tup)
lis[2] = lis[2].split()
return lis
2018-12-30 09:28:16 +01:00
else:
raise ValueError
except ValueError:
2019-01-11 12:00:44 +01:00
print("\nInvalid ID, try again.")
return get_data(conn)
2018-10-09 10:01:01 +02:00
def select_final_time(conn, day, stuple):
2018-10-09 10:01:01 +02:00
"""
2018-11-04 11:33:43 +01:00
Returns ending time of final lesson student must attend, or None.
2018-10-09 10:01:01 +02:00
:param conn: Connection object
:param day: current weekday, lowercase str
:param stuple: tuple with student ID no. and class no., int
2018-10-09 10:01:01 +02:00
"""
cur = conn.cursor()
cur.execute("""
SELECT end_time
FROM timetable
INNER JOIN students ON g1 = lesson_id
OR g2 = lesson_id
OR g3 = lesson_id
OR g4 = lesson_id
OR g5 = lesson_id
OR g6 = lesson_id
WHERE id = ?
AND day = ?
AND lesson_class = ?
2018-10-09 10:01:01 +02:00
ORDER BY end_time DESC
LIMIT 1
""", (stuple[0], day, stuple[1]))
ib_finish = cur.fetchone()
2019-01-11 11:54:57 +01:00
if ib_finish is not None:
ib_finish = parse_time_string(ib_finish[0])
others = []
for sub in stuple[2]:
cur.execute("""
SELECT end_time
FROM timetable
INNER JOIN students ON ? = lesson_id
WHERE id = ?
AND day = ?
AND lesson_class = ?
ORDER BY end_time DESC
LIMIT 1
""", (sub, stuple[0], day, stuple[1]))
2019-01-11 11:54:57 +01:00
other_finish = cur.fetchone()
if other_finish is not None:
others.append(parse_time_string(other_finish[0]))
if not others:
2019-01-11 11:54:57 +01:00
others_finish = None
2018-10-09 10:01:01 +02:00
else:
2019-01-11 11:54:57 +01:00
others_finish = max(others)
2019-01-11 11:54:57 +01:00
if ib_finish is not None and others_finish is not None:
if ib_finish > others_finish:
finish = ib_finish
else:
2019-01-11 11:54:57 +01:00
finish = others_finish
elif ib_finish is not None:
finish = ib_finish
elif others_finish is not None:
finish = others_finish
else:
finish = None
return finish
2018-10-09 10:01:01 +02:00
def parse_time_string(timestring):
"""
2018-12-30 09:28:16 +01:00
Parses given 24h time string of format "HH:MM" into struct_time.
:param timestring: time string "HH:MM"
2018-10-09 10:01:01 +02:00
"""
structtime = time.strptime(timestring, "%H:%M")
return structtime
2018-10-09 10:01:01 +02:00
def main():
print("ib-clearance")
print("============")
2018-12-30 09:28:16 +01:00
conn = connect_database("database.db")
while True:
student_data = get_data(conn)
2018-12-30 09:28:16 +01:00
day = time.strftime("%A").lower()
finish_time = select_final_time(conn, day, student_data)
current_time = parse_time_string(time.strftime("%H:%M"))
2018-12-30 09:28:16 +01:00
if finish_time == None:
2019-01-11 12:00:44 +01:00
print("\nStudent has no lessons today, clear to leave.")
elif finish_time < current_time:
2019-01-11 12:00:44 +01:00
print("\nStudent has finished for today, clear to leave.")
2018-12-30 09:28:16 +01:00
else:
2019-01-11 11:54:57 +01:00
print("\nStudent still has lessons, clearance not granted.")
2018-12-30 09:28:16 +01:00
if input("Enter y to run again.") not in ["y", "Y"]:
2018-12-30 09:28:16 +01:00
break
2018-10-09 10:01:01 +02:00
2018-12-30 09:28:16 +01:00
# Run main() if script is run standalone.
2018-10-09 10:01:01 +02:00
if __name__ == "__main__":
main()