gogs/routers/home.go

44 lines
918 B
Go
Raw Normal View History

2014-02-12 21:49:46 +04:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package routers
2014-02-12 23:54:09 +04:00
import (
"github.com/gogits/gogs/modules/base"
2014-03-15 17:17:16 +04:00
"github.com/gogits/gogs/modules/middleware"
2014-05-26 04:11:25 +04:00
"github.com/gogits/gogs/modules/setting"
"github.com/gogits/gogs/routers/user"
2014-02-12 23:54:09 +04:00
)
const (
HOME base.TplName = "home"
)
2014-03-15 18:34:33 +04:00
func Home(ctx *middleware.Context) {
if ctx.IsSigned {
2014-03-15 17:17:16 +04:00
user.Dashboard(ctx)
2014-03-06 17:33:17 +04:00
return
}
2014-03-24 20:43:51 +04:00
// Check auto-login.
2014-07-26 08:24:27 +04:00
uname := ctx.GetCookie(setting.CookieUserName)
if len(uname) != 0 {
2014-03-24 20:43:51 +04:00
ctx.Redirect("/user/login")
return
}
2014-08-07 14:40:05 +04:00
if setting.OauthService != nil {
ctx.Data["OauthEnabled"] = true
ctx.Data["OauthService"] = setting.OauthService
}
2014-05-24 23:28:31 +04:00
ctx.Data["PageIsHome"] = true
ctx.HTML(200, HOME)
2014-02-12 21:49:46 +04:00
}
2014-03-16 11:41:22 +04:00
2014-03-23 09:48:01 +04:00
func NotFound(ctx *middleware.Context) {
2014-03-23 16:40:40 +04:00
ctx.Data["Title"] = "Page Not Found"
2014-03-23 09:48:01 +04:00
ctx.Handle(404, "home.NotFound", nil)
}