Viel Code erstmal auskommentiert, um der Logik besser folgen zu können + ein paar Änderungen
This commit is contained in:
@ -41,9 +41,9 @@ func DisplaySearchResults(db *data.DB) http.HandlerFunc {
|
||||
}
|
||||
}
|
||||
|
||||
func DisplayForm(i *int64) http.HandlerFunc {
|
||||
func DisplayInstructorForm() http.HandlerFunc {
|
||||
return func(w http.ResponseWriter, r *http.Request) {
|
||||
template.Must(template.ParseFiles("templates/briefing.html")).ExecuteTemplate(w, "content", i)
|
||||
template.Must(template.ParseFiles("templates/briefing.html")).ExecuteTemplate(w, "content", nil)
|
||||
}
|
||||
}
|
||||
|
||||
@ -57,15 +57,13 @@ func generateUUID() (string, error) {
|
||||
return hex.EncodeToString(bs), nil
|
||||
}
|
||||
|
||||
func AddParticipant(i *int64, sl *[]string) http.HandlerFunc {
|
||||
func AddParticipant(sl *[]string) http.HandlerFunc {
|
||||
return func(w http.ResponseWriter, r *http.Request) {
|
||||
uuid, err := generateUUID()
|
||||
login, err := generateUUID()
|
||||
if err != nil {
|
||||
http.Error(w, "AddParticipant: generateUUID(): "+fmt.Sprint(err), http.StatusInternalServerError)
|
||||
}
|
||||
|
||||
*i++
|
||||
login := fmt.Sprintf("%d", *i) + "-" + uuid
|
||||
(*sl) = append(*sl, login)
|
||||
template.Must(template.ParseFiles("templates/briefing.html")).ExecuteTemplate(w, "new", login)
|
||||
}
|
||||
@ -73,7 +71,7 @@ func AddParticipant(i *int64, sl *[]string) http.HandlerFunc {
|
||||
|
||||
// TODO: Hier weiter machen, irgendwie die b.ID herausgeben,
|
||||
// am besten hier auch die p.IDs rausgeben, damit diese später verknüpft werden können
|
||||
func SubmitBriefingForm(sb *[]types.Briefing) http.HandlerFunc {
|
||||
func SubmitBriefingForm(sb *[]*types.Briefing) http.HandlerFunc {
|
||||
return func(w http.ResponseWriter, r *http.Request) {
|
||||
now := time.Now()
|
||||
briefing := new(types.Briefing)
|
||||
@ -88,7 +86,7 @@ func SubmitBriefingForm(sb *[]types.Briefing) http.HandlerFunc {
|
||||
briefing.DocumentName = r.PostFormValue("document") // TODO: in HTML einfügen
|
||||
briefing.AsOf = r.PostFormValue("state") // TODO: Umbenennen
|
||||
// briefing.InstructorID = r.PostFormValue("instructor-id") // TODO: aus Dropdown holen
|
||||
(*sb) = append(*sb, *briefing)
|
||||
(*sb) = append(*sb, briefing)
|
||||
}
|
||||
}
|
||||
|
||||
@ -130,66 +128,66 @@ func DisplayParticipantForm(sl *[]string) http.HandlerFunc {
|
||||
}
|
||||
}
|
||||
|
||||
func readAnswer(r *http.Request, p *types.Participant, i int) error {
|
||||
v, err := strconv.Atoi(r.PostFormValue("answer"))
|
||||
if err != nil {
|
||||
return fmt.Errorf("readAnswer: strconv.Atoi(): %v\n", err)
|
||||
}
|
||||
|
||||
p.Questions[i].Chosen = v
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func DisplayQuestion(i int, p *types.Participant) http.HandlerFunc {
|
||||
return func(w http.ResponseWriter, r *http.Request) {
|
||||
if i == 0 {
|
||||
p.FirstName = r.PostFormValue("participant-first-" + fmt.Sprintf("%d", p.ID))
|
||||
p.LastName = r.PostFormValue("participant-last-" + fmt.Sprintf("%d", p.ID))
|
||||
p.Company = r.PostFormValue("participant-company-" + fmt.Sprintf("%d", p.ID))
|
||||
} else {
|
||||
if err := readAnswer(r, p, i-1); err != nil {
|
||||
http.Error(w, "DisplayQuestion: readAnswer(r, p, i): "+fmt.Sprint(err), http.StatusInternalServerError)
|
||||
}
|
||||
}
|
||||
|
||||
data := new(questionData)
|
||||
data.ID = p.ID
|
||||
data.Q = p.Questions[i]
|
||||
data.I = i
|
||||
data.J = i + 1
|
||||
|
||||
template.Must(template.ParseFiles("templates/question.html")).ExecuteTemplate(w, "content", data)
|
||||
}
|
||||
}
|
||||
|
||||
func DisplayTestResults(b *types.Briefing, p *types.Participant) http.HandlerFunc {
|
||||
return func(w http.ResponseWriter, r *http.Request) {
|
||||
numQuestions := len(p.Questions)
|
||||
wrongAnswers := make([]int, 0)
|
||||
fmt.Println(wrongAnswers)
|
||||
|
||||
if err := readAnswer(r, p, numQuestions-1); err != nil {
|
||||
http.Error(w, "DisplayTestResults: readAnswer(r, p, i): "+fmt.Sprint(err), http.StatusInternalServerError)
|
||||
}
|
||||
|
||||
for i, q := range p.Questions {
|
||||
if q.Chosen != q.Correct {
|
||||
wrongAnswers = append(wrongAnswers, i)
|
||||
}
|
||||
}
|
||||
|
||||
if wrongAnswers == nil {
|
||||
b.Participants = append(b.Participants, p)
|
||||
} else {
|
||||
data := new(questionData)
|
||||
data.ID = p.ID
|
||||
data.Q = p.Questions[0]
|
||||
data.I = 0
|
||||
data.J = data.I + 1
|
||||
template.Must(template.ParseFiles("templates/question.html")).ExecuteTemplate(w, "content", data)
|
||||
}
|
||||
|
||||
template.Must(template.ParseFiles("templates/results.html")).ExecuteTemplate(w, "content", nil)
|
||||
}
|
||||
}
|
||||
// func readAnswer(r *http.Request, p *types.Participant, i int) error {
|
||||
// v, err := strconv.Atoi(r.PostFormValue("answer"))
|
||||
// if err != nil {
|
||||
// return fmt.Errorf("readAnswer: strconv.Atoi(): %v\n", err)
|
||||
// }
|
||||
//
|
||||
// p.Questions[i].Chosen = v
|
||||
//
|
||||
// return nil
|
||||
// }
|
||||
//
|
||||
// func DisplayQuestion(i int, p *types.Participant) http.HandlerFunc {
|
||||
// return func(w http.ResponseWriter, r *http.Request) {
|
||||
// if i == 0 {
|
||||
// p.FirstName = r.PostFormValue("participant-first-" + fmt.Sprintf("%d", p.ID))
|
||||
// p.LastName = r.PostFormValue("participant-last-" + fmt.Sprintf("%d", p.ID))
|
||||
// p.Company = r.PostFormValue("participant-company-" + fmt.Sprintf("%d", p.ID))
|
||||
// } else {
|
||||
// if err := readAnswer(r, p, i-1); err != nil {
|
||||
// http.Error(w, "DisplayQuestion: readAnswer(r, p, i): "+fmt.Sprint(err), http.StatusInternalServerError)
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// data := new(questionData)
|
||||
// data.ID = p.ID
|
||||
// data.Q = p.Questions[i]
|
||||
// data.I = i
|
||||
// data.J = i + 1
|
||||
//
|
||||
// template.Must(template.ParseFiles("templates/question.html")).ExecuteTemplate(w, "content", data)
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// func DisplayTestResults(b *types.Briefing, p *types.Participant) http.HandlerFunc {
|
||||
// return func(w http.ResponseWriter, r *http.Request) {
|
||||
// numQuestions := len(p.Questions)
|
||||
// wrongAnswers := make([]int, 0)
|
||||
// fmt.Println(wrongAnswers)
|
||||
//
|
||||
// if err := readAnswer(r, p, numQuestions-1); err != nil {
|
||||
// http.Error(w, "DisplayTestResults: readAnswer(r, p, i): "+fmt.Sprint(err), http.StatusInternalServerError)
|
||||
// }
|
||||
//
|
||||
// for i, q := range p.Questions {
|
||||
// if q.Chosen != q.Correct {
|
||||
// wrongAnswers = append(wrongAnswers, i)
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// if wrongAnswers == nil {
|
||||
// b.Participants = append(b.Participants, p)
|
||||
// } else {
|
||||
// data := new(questionData)
|
||||
// data.ID = p.ID
|
||||
// data.Q = p.Questions[0]
|
||||
// data.I = 0
|
||||
// data.J = data.I + 1
|
||||
// template.Must(template.ParseFiles("templates/question.html")).ExecuteTemplate(w, "content", data)
|
||||
// }
|
||||
//
|
||||
// template.Must(template.ParseFiles("templates/results.html")).ExecuteTemplate(w, "content", nil)
|
||||
// }
|
||||
// }
|
||||
|
Reference in New Issue
Block a user