team info

This commit is contained in:
2025-09-17 21:51:17 +02:00
parent c9c717f1e3
commit 2cfd23cdb1
4 changed files with 55 additions and 4 deletions

View File

@@ -117,13 +117,35 @@ func isLoggedIn(w http.ResponseWriter, r *http.Request) (bool, int) {
func teamInfoHandler(w http.ResponseWriter, r *http.Request) { func teamInfoHandler(w http.ResponseWriter, r *http.Request) {
if loggedIn, teamID := isLoggedIn(w, r); loggedIn { if loggedIn, teamID := isLoggedIn(w, r); loggedIn {
var teamName, city, last_cipher, penalty string var teamName string
err := db.QueryRow("SELECT name, city, last_cipher, penalty FROM teams WHERE id = ?", teamID).Scan(&teamName, &city, &last_cipher, &penalty) var difficultyLevelID int
var difficultyLevel string
var lastCipher int
var penalty int
err := db.QueryRow("SELECT name, difficulty_level, last_cipher, penalty FROM teams WHERE id = ?", teamID).Scan(&teamName, &difficultyLevelID, &lastCipher, &penalty)
if err != nil { if err != nil {
http.Error(w, "Could not retrieve team information", http.StatusInternalServerError) http.Error(w, "Could not retrieve team info", http.StatusInternalServerError)
return
}
err = db.QueryRow("SELECT level_name FROM difficulty_levels WHERE id = ?", difficultyLevelID).Scan(&difficultyLevel)
if err != nil {
http.Error(w, "Could not retrieve difficulty level", http.StatusInternalServerError)
return
}
TeamTemplateData := TeamTemplateS{
TeamName: teamName,
Difficulty: difficultyLevel,
LastCipher: lastCipher,
Penalties: penalty,
}
err = TeamTemplate.Execute(w, TeamTemplateData)
if err != nil {
http.Error(w, "Could not render template", http.StatusInternalServerError)
return return
} }
fmt.Fprintf(w, "Team Name: %s, City: %s, Last Cipher: %s, Penalty: %s", teamName, city, last_cipher, penalty)
} }
} }

View File

@@ -15,4 +15,12 @@ type CipherTemplateS struct {
Wrong bool Wrong bool
} }
type TeamTemplateS struct {
TeamName string
Difficulty string
LastCipher int
Penalties int
}
var CipherTemplate = template.Must(template.ParseFiles("templates/assignment.html")) var CipherTemplate = template.Must(template.ParseFiles("templates/assignment.html"))
var TeamTemplate = template.Must(template.ParseFiles("templates/team.html"))

View File

@@ -2,6 +2,7 @@
<html lang="cs"> <html lang="cs">
<head> <head>
<meta charset="UTF-8">
<title>Zadání šifry {{.Order}}</title> <title>Zadání šifry {{.Order}}</title>
</head> </head>

20
templates/team.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<title>Tým: {{.TeamName}}</title>
</head>
<body>
<h1>Tým: {{.TeamName}}</h1>
Obtížnost: {{.Difficulty}}<br>
Poslední šifra : {{.LastCipher}}<br>
Penalizace: {{.Penalties}}<br>
<hr>
<form action="/logout" method="get">
<input type="submit" value="Odhlásit">
</form>
</body>
</html>