woodpecker/server/pages.go

39 lines
782 B
Go
Raw Normal View History

2016-05-02 19:21:25 +00:00
package server
2015-09-30 01:21:17 +00:00
import (
"github.com/gin-gonic/gin"
"github.com/drone/drone/router/middleware/session"
"github.com/drone/drone/shared/token"
)
// ShowIndex serves the main Drone application page.
2015-09-30 01:21:17 +00:00
func ShowIndex(c *gin.Context) {
user := session.User(c)
var csrf string
if user != nil {
csrf, _ = token.New(
token.CsrfToken,
user.Login,
).Sign(user.Hash)
}
c.HTML(200, "index.html", gin.H{
"user": user,
"csrf": csrf,
2015-09-30 01:21:17 +00:00
})
}
// ShowLogin is a legacy endpoint that now redirects to
// initiliaze the oauth flow
2015-09-30 01:21:17 +00:00
func ShowLogin(c *gin.Context) {
c.Redirect(303, "/authorize")
2015-09-30 01:21:17 +00:00
}
// ShowLoginForm displays a login form for systems like Gogs that do not
// yet support oauth workflows.
func ShowLoginForm(c *gin.Context) {
c.HTML(200, "login.html", gin.H{})
2015-09-30 01:21:17 +00:00
}