bench-forgejo/routers/home.go

49 lines
1.1 KiB
Go
Raw Normal View History

2014-02-12 23:19:46 +05:30
// 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-13 01:24:09 +05:30
import (
"github.com/gogits/gogs/modules/base"
2014-03-15 18:47:16 +05:30
"github.com/gogits/gogs/modules/middleware"
2014-05-26 05:41:25 +05:30
"github.com/gogits/gogs/modules/setting"
"github.com/gogits/gogs/routers/user"
2014-02-13 01:24:09 +05:30
)
const (
HOME base.TplName = "home"
)
2014-03-15 20:04:33 +05:30
func Home(ctx *middleware.Context) {
if ctx.IsSigned {
2014-08-10 09:32:00 +05:30
if !ctx.User.IsActive && setting.Service.RegisterEmailConfirm {
ctx.Data["Title"] = ctx.Tr("auth.active_your_account")
ctx.HTML(200, user.ACTIVATE)
} else {
user.Dashboard(ctx)
}
2014-03-06 19:03:17 +05:30
return
}
2014-03-24 22:13:51 +05:30
// Check auto-login.
2014-07-26 09:54:27 +05:30
uname := ctx.GetCookie(setting.CookieUserName)
if len(uname) != 0 {
2014-03-24 22:13:51 +05:30
ctx.Redirect("/user/login")
return
}
2014-08-07 16:10:05 +05:30
if setting.OauthService != nil {
ctx.Data["OauthEnabled"] = true
ctx.Data["OauthService"] = setting.OauthService
}
2014-05-25 00:58:31 +05:30
ctx.Data["PageIsHome"] = true
ctx.HTML(200, HOME)
2014-02-12 23:19:46 +05:30
}
2014-03-16 13:11:22 +05:30
2014-03-23 11:18:01 +05:30
func NotFound(ctx *middleware.Context) {
2014-03-23 18:10:40 +05:30
ctx.Data["Title"] = "Page Not Found"
2014-03-23 11:18:01 +05:30
ctx.Handle(404, "home.NotFound", nil)
}