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