gitea/routers/home.go

78 lines
1.8 KiB
Go
Raw Normal View History

2014-02-13 04:49:46 +11: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 06:54:09 +11:00
import (
2014-09-06 07:28:09 +10:00
"fmt"
2015-09-01 21:04:35 +10:00
"github.com/Unknwon/paginater"
2014-09-06 07:28:09 +10:00
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
2016-03-12 03:56:52 +11:00
"github.com/gogits/gogs/modules/context"
2014-05-26 10:11:25 +10:00
"github.com/gogits/gogs/modules/setting"
"github.com/gogits/gogs/routers/user"
2014-02-13 06:54:09 +11:00
)
const (
2014-09-06 07:28:09 +10:00
HOME base.TplName = "home"
EXPLORE_REPOS base.TplName = "explore/repos"
)
2016-03-12 03:56:52 +11:00
func Home(ctx *context.Context) {
2014-03-16 01:34:33 +11:00
if ctx.IsSigned {
2014-08-10 14:02:00 +10:00
if !ctx.User.IsActive && setting.Service.RegisterEmailConfirm {
ctx.Data["Title"] = ctx.Tr("auth.active_your_account")
ctx.HTML(200, user.ACTIVATE)
} else {
user.Dashboard(ctx)
}
2014-03-07 00:33:17 +11:00
return
}
2014-03-25 03:43:51 +11:00
// Check auto-login.
2014-07-26 14:24:27 +10:00
uname := ctx.GetCookie(setting.CookieUserName)
if len(uname) != 0 {
2014-09-20 10:11:34 +10:00
ctx.Redirect(setting.AppSubUrl + "/user/login")
2014-03-25 03:43:51 +11:00
return
}
2014-05-25 05:28:31 +10:00
ctx.Data["PageIsHome"] = true
ctx.HTML(200, HOME)
2014-02-13 04:49:46 +11:00
}
2014-03-16 18:41:22 +11:00
2016-03-12 03:56:52 +11:00
func Explore(ctx *context.Context) {
2014-09-06 07:28:09 +10:00
ctx.Data["Title"] = ctx.Tr("explore")
2015-09-12 21:17:37 +10:00
ctx.Data["PageIsExplore"] = true
2014-09-06 07:28:09 +10:00
ctx.Data["PageIsExploreRepositories"] = true
2015-09-01 21:04:35 +10:00
page := ctx.QueryInt("page")
if page <= 1 {
page = 1
}
2015-09-04 19:54:22 +10:00
ctx.Data["Page"] = paginater.New(int(models.CountPublicRepositories()), setting.ExplorePagingNum, page, 5)
2015-09-01 21:04:35 +10:00
repos, err := models.GetRecentUpdatedRepositories(page)
2014-09-06 07:28:09 +10:00
if err != nil {
ctx.Handle(500, "GetRecentUpdatedRepositories", err)
return
}
for _, repo := range repos {
if err = repo.GetOwner(); err != nil {
2015-08-09 00:43:14 +10:00
ctx.Handle(500, "GetOwner", fmt.Errorf("%d: %v", repo.ID, err))
2014-09-06 07:28:09 +10:00
return
}
}
ctx.Data["Repos"] = repos
ctx.HTML(200, EXPLORE_REPOS)
}
2016-03-12 03:56:52 +11:00
func NotFound(ctx *context.Context) {
2014-03-23 23:40:40 +11:00
ctx.Data["Title"] = "Page Not Found"
2014-03-23 16:48:01 +11:00
ctx.Handle(404, "home.NotFound", nil)
}