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