main aufgeräumt, indem mux nach session ausgelagert wurde
This commit is contained in:
parent
e3fb756bb1
commit
34ef95ad76
39
main.go
39
main.go
@ -1,7 +1,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"html/template"
|
"html/template"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
@ -10,47 +9,13 @@ import (
|
|||||||
"streifling.com/jason/sicherheitsunterweisung/packages/session"
|
"streifling.com/jason/sicherheitsunterweisung/packages/session"
|
||||||
)
|
)
|
||||||
|
|
||||||
func handleParticipants(mux *http.ServeMux, db *data.DB, cp <-chan *data.Participant, s *session.Session) {
|
|
||||||
for participant := range cp {
|
|
||||||
mux.HandleFunc("/submit-participant/"+fmt.Sprint(s.ID)+"/"+fmt.Sprint(participant.Login)+"/", s.HandleParticipant(db, participant, &s.Questions))
|
|
||||||
for i := range s.Questions {
|
|
||||||
mux.HandleFunc("/submit-answer/"+fmt.Sprint(s.ID)+"/"+fmt.Sprint(participant.Login)+"/"+fmt.Sprint(i+1)+"/", s.HandleAnswer(db, participant, &s.Questions, int64(i+1)))
|
|
||||||
}
|
|
||||||
mux.HandleFunc("/retry/"+fmt.Sprint(s.ID)+"/"+fmt.Sprint(participant.Login)+"/", s.HandleRetry(participant, &s.Questions))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleSessions(mux *http.ServeMux, db *data.DB, cs <-chan *session.Session, ss *[]*session.Session) {
|
|
||||||
for s := range cs {
|
|
||||||
(*ss) = append(*ss, s)
|
|
||||||
participantChan := make(chan *data.Participant)
|
|
||||||
questionIDs := make([]string, 4)
|
|
||||||
|
|
||||||
for i := 0; i < len(questionIDs); i++ {
|
|
||||||
questionIDs[i] = fmt.Sprint(i + 1)
|
|
||||||
}
|
|
||||||
|
|
||||||
var err error
|
|
||||||
s.Questions, err = db.GetQuestions(questionIDs)
|
|
||||||
if err != nil {
|
|
||||||
log.Fatalln(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
mux.HandleFunc("/new-briefing/", s.HandleNewBriefing())
|
|
||||||
mux.HandleFunc("/new-participant/"+fmt.Sprint(s.ID)+"/", s.HandleNewParticipant(participantChan))
|
|
||||||
mux.HandleFunc("/submit-form/"+fmt.Sprint(s.ID)+"/", s.HandleBriefingForm(db))
|
|
||||||
|
|
||||||
go handleParticipants(mux, db, participantChan, s)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
db, err := data.OpenDB("sicherheitsunterweisung")
|
db, err := data.OpenDB("sicherheitsunterweisung")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalln(err)
|
log.Fatalln(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
mux := http.NewServeMux()
|
mux := session.NewMux()
|
||||||
sessions := make([]*session.Session, 0)
|
sessions := make([]*session.Session, 0)
|
||||||
sessionChan := make(chan *session.Session)
|
sessionChan := make(chan *session.Session)
|
||||||
|
|
||||||
@ -62,7 +27,7 @@ func main() {
|
|||||||
mux.HandleFunc("/external-login/", session.HandleExternalLogin(&sessions))
|
mux.HandleFunc("/external-login/", session.HandleExternalLogin(&sessions))
|
||||||
mux.HandleFunc("/search/", session.HandleSearch(db))
|
mux.HandleFunc("/search/", session.HandleSearch(db))
|
||||||
|
|
||||||
go handleSessions(mux, db, sessionChan, &sessions)
|
go mux.HandleSessions(db, sessionChan, &sessions)
|
||||||
|
|
||||||
log.Fatalln(http.ListenAndServe(":8080", mux))
|
log.Fatalln(http.ListenAndServe(":8080", mux))
|
||||||
}
|
}
|
||||||
|
53
packages/session/mux.go
Normal file
53
packages/session/mux.go
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
package session
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"streifling.com/jason/sicherheitsunterweisung/packages/data"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Mux struct {
|
||||||
|
*http.ServeMux
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewMux() *Mux {
|
||||||
|
mux := new(Mux)
|
||||||
|
mux.ServeMux = http.NewServeMux()
|
||||||
|
return mux
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mux *Mux) handleParticipants(db *data.DB, cp <-chan *data.Participant, s *Session) {
|
||||||
|
for participant := range cp {
|
||||||
|
mux.HandleFunc("/submit-participant/"+fmt.Sprint(s.ID)+"/"+fmt.Sprint(participant.Login)+"/", s.HandleParticipant(db, participant, &s.Questions))
|
||||||
|
for i := range s.Questions {
|
||||||
|
mux.HandleFunc("/submit-answer/"+fmt.Sprint(s.ID)+"/"+fmt.Sprint(participant.Login)+"/"+fmt.Sprint(i+1)+"/", s.HandleAnswer(db, participant, &s.Questions, int64(i+1)))
|
||||||
|
}
|
||||||
|
mux.HandleFunc("/retry/"+fmt.Sprint(s.ID)+"/"+fmt.Sprint(participant.Login)+"/", s.HandleRetry(participant, &s.Questions))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mux *Mux) HandleSessions(db *data.DB, cs <-chan *Session, ss *[]*Session) {
|
||||||
|
for s := range cs {
|
||||||
|
(*ss) = append(*ss, s)
|
||||||
|
participantChan := make(chan *data.Participant)
|
||||||
|
questionIDs := make([]string, 4)
|
||||||
|
|
||||||
|
for i := 0; i < len(questionIDs); i++ {
|
||||||
|
questionIDs[i] = fmt.Sprint(i + 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
var err error
|
||||||
|
s.Questions, err = db.GetQuestions(questionIDs)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalln(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
mux.HandleFunc("/new-briefing/", s.HandleNewBriefing())
|
||||||
|
mux.HandleFunc("/new-participant/"+fmt.Sprint(s.ID)+"/", s.HandleNewParticipant(participantChan))
|
||||||
|
mux.HandleFunc("/submit-form/"+fmt.Sprint(s.ID)+"/", s.HandleBriefingForm(db))
|
||||||
|
|
||||||
|
go mux.handleParticipants(db, participantChan, s)
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user