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