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