Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions vitty-backend-api/cli/commands/timetableCommands.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ var TimetableCommands = []*cli.Command{
Usage: "Fix slot times",
Action: fixSlotTimes,
},
{

Name: "seed-course-table",
Aliases: []string{"sct"},
Usage: "populate course table",
Action: seedCourseTable,
},
}

func parseTimetable(c *cli.Context) error {
Expand Down Expand Up @@ -73,3 +80,31 @@ func fixSlotTimes(c *cli.Context) error {
}
return nil
}

func seedCourseTable(c *cli.Context) error {
reset := "\033[0m"
red := "\033[31m"
green := "\033[32m"
cyan := "\033[36m "

fmt.Print(cyan, "Seeding.. ", reset)
err := database.DB.Exec(`
INSERT INTO courses (course_id, course_name)
SELECT
DISTINCT ON(elems.data->>'code')
elems.data->>'code' AS CourseCode,
elems.data->>'name' AS CourseName
FROM
timetables,
jsonb_array_elements(timetables.slots::jsonb) AS elems(data)
`).Error

if err != nil {
fmt.Println(red, "Failed")
fmt.Println("Error: ", err, reset)
}

fmt.Println(green, "Done", reset)

return nil
}
6 changes: 6 additions & 0 deletions vitty-backend-api/internal/models/courses.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package models

type Courses struct {
CourseId string `gorm:"primaryKey"`
CourseName string
}
1 change: 1 addition & 0 deletions vitty-backend-api/internal/models/initialize.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ func InitializeModels() {
"User": &User{},
"Timetable": &Timetable{},
"Friend Requests": &FriendRequest{},
"Courses": &Courses{},
}

for name, model := range MODELS {
Expand Down
63 changes: 42 additions & 21 deletions vitty-backend-api/internal/models/timetable.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,12 @@ func (t Timetable) GetDaySlots(day time.Weekday) map[string][]Slot {
resp := make(map[string][]Slot)
var data []Slot
daySlots := DailySlots[day.String()]
labSlot := ""

var err error
// Theory slots
for _, slot := range t.Slots {

if slot.Type == "Theory" && slices.Contains(daySlots["Theory"], slot.Slot) {
index := slices.Index(daySlots["Theory"], slot.Slot)
slot.StartTime, err = time.ParseInLocation(STD_REF_TIME, TheoryTimings[index].StartTime, time.Local)
Expand All @@ -51,19 +53,27 @@ func (t Timetable) GetDaySlots(day time.Weekday) map[string][]Slot {
data = append(data, slot)
} else if slot.Type == "Lab" && slices.Contains(daySlots["Lab"], slot.Slot) {
index := slices.Index(daySlots["Lab"], slot.Slot)
slot.StartTime, err = time.ParseInLocation(STD_REF_TIME, LabTimings[index].StartTime, time.Local)
if err != nil {
log.Println("Error parsing time: ", err)
return nil
}

slot.EndTime, err = time.ParseInLocation(STD_REF_TIME, LabTimings[index].EndTime, time.Local)
if labSlot == "" {
labSlot += slot.Slot + "+"
continue
} else {
slot.StartTime, err = time.ParseInLocation(STD_REF_TIME, LabTimings[index-1].StartTime, time.Local)
if err != nil {
log.Println("Error parsing time: ", err)
return nil
}

if err != nil {
log.Println("Error parsing time: ", err)
return nil
slot.EndTime, err = time.ParseInLocation(STD_REF_TIME, LabTimings[index].EndTime, time.Local)
if err != nil {
log.Println("Error parsing time: ", err)
return nil
}
slot.Slot = labSlot + slot.Slot
labSlot = ""
data = append(data, slot)
}
data = append(data, slot)

}
}
resp[day.String()] = data
Expand All @@ -72,9 +82,11 @@ func (t Timetable) GetDaySlots(day time.Weekday) map[string][]Slot {

func (t Timetable) GetDaywiseTimetable() map[string][]Slot {
resp := make(map[string][]Slot)
labSlot := ""

for _, slot := range t.Slots {
for day, value := range DailySlots {

if slices.Contains(value["Theory"], slot.Slot) {
index := slices.Index(value["Theory"], slot.Slot)
var err error
Expand All @@ -91,18 +103,27 @@ func (t Timetable) GetDaywiseTimetable() map[string][]Slot {
resp[day] = append(resp[day], slot)
} else if slices.Contains(value["Lab"], slot.Slot) {
index := slices.Index(value["Lab"], slot.Slot)
var err error
slot.StartTime, err = time.ParseInLocation(STD_REF_TIME, LabTimings[index].StartTime, time.Local)
if err != nil {
log.Println("Error parsing time: ", err)
return nil
}
slot.EndTime, err = time.ParseInLocation(STD_REF_TIME, LabTimings[index].EndTime, time.Local)
if err != nil {
log.Println("Error parsing time: ", err)
return nil

if labSlot == "" {
labSlot += slot.Slot + "+"
continue
} else {
var err error
slot.StartTime, err = time.ParseInLocation(STD_REF_TIME, LabTimings[index-1].StartTime, time.Local)
if err != nil {
log.Println("Error parsing time: ", err)
return nil
}
slot.EndTime, err = time.ParseInLocation(STD_REF_TIME, LabTimings[index].EndTime, time.Local)
if err != nil {
log.Println("Error parsing time: ", err)
return nil
}

slot.Slot = labSlot + slot.Slot
labSlot = ""
resp[day] = append(resp[day], slot)
}
resp[day] = append(resp[day], slot)
}
}
}
Expand Down
6 changes: 0 additions & 6 deletions vitty-backend-api/internal/utils/timetableDetection.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,6 @@ func DetectTimetable(text string) ([]TimetableSlotV1, error) {
}

if len(Slots) == 0 {
return Slots, nil
}

var err error

if err != nil {
return Slots, errors.New("error in detecting timetable")
}

Expand Down
Loading