Add button to go to the student's repository

This commit is contained in:
nemunaire 2023-03-06 13:08:22 +01:00
commit cd500afbd5
2 changed files with 29 additions and 2 deletions

View file

@ -275,6 +275,25 @@ func declareAPIAdminWorksRoutes(router *gin.RouterGroup) {
c.Redirect(http.StatusFound, fmt.Sprintf("%s/%s", droneEndpoint, repo.TestsRef))
})
gradesRoutes.GET("/forge", func(c *gin.Context) {
g := c.MustGet("grade").(*WorkGrade)
var u *User
if user, ok := c.Get("user"); ok {
u = user.(*User)
} else {
u = c.MustGet("LoggedUser").(*User)
}
repo, err := u.getRepositoryByWork(g.IdWork)
if err != nil {
log.Printf("Unable to getRepositoryByWork(uid=%d, wid=%d): %s", u.Id, g.IdWork, err.Error())
c.AbortWithStatusJSON(http.StatusNotFound, gin.H{"errmsg": "Unable to find a corresponding repository."})
return
}
c.Redirect(http.StatusFound, strings.Replace(strings.Replace(repo.URI, ":", "/", 1), "git@", "https://", 1))
})
}
func declareAPIAuthWorksRoutes(router *gin.RouterGroup) {