gogs/routers/dashboard.go

57 lines
1.3 KiB
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 (
2014-04-14 12:11:33 +04:00
"github.com/gogits/gogs/models"
2014-03-24 20:43:51 +04:00
"github.com/gogits/gogs/modules/base"
2014-03-15 17:17:16 +04:00
"github.com/gogits/gogs/modules/middleware"
"github.com/gogits/gogs/routers/user"
2014-02-12 23:54:09 +04:00
)
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.
userName := ctx.GetCookie(base.CookieUserName)
if len(userName) != 0 {
ctx.Redirect("/user/login")
return
}
2014-05-05 21:08:01 +04:00
// Show recent updated repositoires for new visiters.
repos, err := models.GetRecentUpdatedRepositories()
if err != nil {
ctx.Handle(500, "dashboard.Home(GetRecentUpdatedRepositories)", err)
return
}
2014-04-14 12:11:33 +04:00
for _, repo := range repos {
2014-05-05 21:08:01 +04:00
repo.Owner, err = models.GetUserById(repo.OwnerId)
if err != nil {
ctx.Handle(500, "dashboard.Home(GetUserById)", err)
return
}
2014-04-14 12:11:33 +04:00
}
ctx.Data["Repos"] = repos
2014-03-15 18:34:33 +04:00
ctx.Data["PageIsHome"] = true
2014-03-20 15:50:26 +04:00
ctx.HTML(200, "home")
2014-02-12 21:49:46 +04:00
}
2014-03-16 11:41:22 +04:00
2014-03-19 02:31:54 +04:00
func Help(ctx *middleware.Context) {
ctx.Data["PageIsHelp"] = true
2014-03-23 09:48:01 +04:00
ctx.Data["Title"] = "Help"
2014-03-20 15:50:26 +04:00
ctx.HTML(200, "help")
2014-03-16 11:41:22 +04:00
}
2014-03-23 09:48:01 +04:00
func NotFound(ctx *middleware.Context) {
ctx.Data["PageIsNotFound"] = true
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)
}