58 lines
2 KiB
Go
58 lines
2 KiB
Go
/*
|
|
GoSkola24API
|
|
Copyright (C) 2024, Zervó Zadachin
|
|
|
|
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License version 3
|
|
as published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License version 3 for more details.
|
|
|
|
This program incorporates external libraries for certain functionalities.
|
|
These libraries are covered by their respective licenses, and their usage
|
|
agreements are as outlined in their respective documentation or source
|
|
code.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package GoSkola24API
|
|
|
|
import (
|
|
"git.zervo.org/zervo/GoSkola24API/internal/requests"
|
|
pubtypes "git.zervo.org/zervo/GoSkola24API/types"
|
|
)
|
|
|
|
type Skola24API struct {
|
|
Host string
|
|
}
|
|
|
|
func (api Skola24API) GetTerms() (_result pubtypes.Terms, _error error) {
|
|
return requests.GetTerms(api.Host)
|
|
}
|
|
|
|
func (api Skola24API) GetSchools() (_result []pubtypes.School, _error error) {
|
|
return requests.GetSchools(api.Host)
|
|
}
|
|
|
|
func (api Skola24API) GetRooms(school pubtypes.School, checkAvailability bool) (_result []pubtypes.Room, _error error) {
|
|
return requests.GetRooms(school, checkAvailability)
|
|
}
|
|
|
|
func (api Skola24API) GetTeachers(school pubtypes.School, checkAvailability bool) (_result []pubtypes.Teacher, _error error) {
|
|
return requests.GetTeachers(school, checkAvailability)
|
|
}
|
|
|
|
func (api Skola24API) GetStudents(school pubtypes.School, checkAvailability bool) (_result any, _error error) {
|
|
return requests.GetStudents(school, checkAvailability)
|
|
}
|
|
|
|
func (api Skola24API) GetClasses(school pubtypes.School, checkAvailability bool) (_result []pubtypes.Class, _error error) {
|
|
return requests.GetClasses(school, checkAvailability)
|
|
}
|