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 (
|
2014-04-14 13:41:33 +05:30
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-24 22:13:51 +05:30
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-15 18:47:16 +05:30
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-03-08 02:35:18 +05:30
|
|
|
"github.com/gogits/gogs/routers/user"
|
2014-02-13 01:24:09 +05:30
|
|
|
)
|
|
|
|
|
2014-03-15 20:04:33 +05:30
|
|
|
func Home(ctx *middleware.Context) {
|
|
|
|
if ctx.IsSigned {
|
2014-03-15 18:47:16 +05:30
|
|
|
user.Dashboard(ctx)
|
2014-03-06 19:03:17 +05:30
|
|
|
return
|
|
|
|
}
|
2014-03-24 22:13:51 +05:30
|
|
|
|
|
|
|
// Check auto-login.
|
|
|
|
userName := ctx.GetCookie(base.CookieUserName)
|
|
|
|
if len(userName) != 0 {
|
|
|
|
ctx.Redirect("/user/login")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-05 22:38:01 +05:30
|
|
|
// 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 13:41:33 +05:30
|
|
|
for _, repo := range repos {
|
2014-05-05 22:38:01 +05:30
|
|
|
repo.Owner, err = models.GetUserById(repo.OwnerId)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "dashboard.Home(GetUserById)", err)
|
|
|
|
return
|
|
|
|
}
|
2014-04-14 13:41:33 +05:30
|
|
|
}
|
|
|
|
ctx.Data["Repos"] = repos
|
2014-03-15 20:04:33 +05:30
|
|
|
ctx.Data["PageIsHome"] = true
|
2014-03-20 17:20:26 +05:30
|
|
|
ctx.HTML(200, "home")
|
2014-02-12 23:19:46 +05:30
|
|
|
}
|
2014-03-16 13:11:22 +05:30
|
|
|
|
2014-03-19 04:01:54 +05:30
|
|
|
func Help(ctx *middleware.Context) {
|
|
|
|
ctx.Data["PageIsHelp"] = true
|
2014-03-23 11:18:01 +05:30
|
|
|
ctx.Data["Title"] = "Help"
|
2014-03-20 17:20:26 +05:30
|
|
|
ctx.HTML(200, "help")
|
2014-03-16 13:11:22 +05:30
|
|
|
}
|
2014-03-23 11:18:01 +05:30
|
|
|
|
|
|
|
func NotFound(ctx *middleware.Context) {
|
|
|
|
ctx.Data["PageIsNotFound"] = true
|
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)
|
|
|
|
}
|