35 lines
1.1 KiB
Go
35 lines
1.1 KiB
Go
|
package handlers
|
||
|
|
||
|
import (
|
||
|
"ttime/internal/types"
|
||
|
|
||
|
"github.com/gofiber/fiber/v2"
|
||
|
"github.com/golang-jwt/jwt/v5"
|
||
|
)
|
||
|
|
||
|
func (gs *GState) SubmitWeeklyReport(c *fiber.Ctx) error {
|
||
|
// Extract the necessary parameters from the token
|
||
|
user := c.Locals("user").(*jwt.Token)
|
||
|
claims := user.Claims.(jwt.MapClaims)
|
||
|
username := claims["name"].(string)
|
||
|
|
||
|
report := new(types.NewWeeklyReport)
|
||
|
if err := c.BodyParser(report); err != nil {
|
||
|
return c.Status(400).SendString(err.Error())
|
||
|
}
|
||
|
|
||
|
// Make sure all the fields of the report are valid
|
||
|
if report.Week < 1 || report.Week > 52 {
|
||
|
return c.Status(400).SendString("Invalid week number")
|
||
|
}
|
||
|
if report.DevelopmentTime < 0 || report.MeetingTime < 0 || report.AdminTime < 0 || report.OwnWorkTime < 0 || report.StudyTime < 0 || report.TestingTime < 0 {
|
||
|
return c.Status(400).SendString("Invalid time report")
|
||
|
}
|
||
|
|
||
|
if err := gs.Db.AddWeeklyReport(report.ProjectName, username, report.Week, report.DevelopmentTime, report.MeetingTime, report.AdminTime, report.OwnWorkTime, report.StudyTime, report.TestingTime); err != nil {
|
||
|
return c.Status(500).SendString(err.Error())
|
||
|
}
|
||
|
|
||
|
return c.Status(200).SendString("Time report added")
|
||
|
}
|