// timetable.go package controllers import ( "bytes" "fmt" "html/template" "log" "officeHours/models" "officeHours/templating" ) // A function that takes a slice of office hours and // constructs a timetable t such that t[date][slot] is an // office hour that takes place at this time and no such cell has more than one // office hour and each officehour is in exactly one slot. // It also indicates how many slots exist per day. func (b *BaseHandler) GetTimetable(officeHours []models.OfficeHour) (map[models.Date]map[int]models.OfficeHour, []int) { var timetable = make(map[models.Date]map[int]models.OfficeHour) for _, officeHour := range officeHours { var slot int = 0 for minute := 0; minute < officeHour.Duration; minute += b.config.Date.MinuteGranularity { // find slot id _, exists := timetable[models.GetEndDate(officeHour.Date, minute, true)] if exists { _, exists := timetable[models.GetEndDate(officeHour.Date, minute, true)][slot] if exists { slot += 1 minute = 0 continue } } else { timetable[models.GetEndDate(officeHour.Date, minute, true)] = make(map[int]models.OfficeHour) } } for minute := 0; minute < officeHour.Duration; minute += b.config.Date.MinuteGranularity { // write officeHour id to timetable timetable[models.GetEndDate(officeHour.Date, minute, true)][slot] = officeHour } } slots := []int{1, 1, 1, 1, 1} for date := range timetable { if slots[date.Day] < len(timetable[date]) { slots[date.Day] = len(timetable[date]) } } return timetable, slots } // A function to generate the HTML code for the table of office hours from a timetable. func (b *BaseHandler) printTimetable(timetable map[models.Date]map[int]models.OfficeHour, slots []int, deleteIcons bool) template.HTML { if len(timetable) == 0 { // no office hours to display return template.HTML("
Aktuell sind keine passenden Sprechstunden eingetragen.
") } var tableBody string for hour := b.config.Date.EarliestStartTime.Hour; hour < b.config.Date.LatestStartTime.Hour+b.config.Date.MaxDuration/60; hour += 1 { for minute := 0; minute < 60; minute += b.config.Date.MinuteGranularity { tableBody += "