2014-02-13 01:49:46 +08: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 03:54:09 +08:00
|
|
|
import (
|
2014-09-06 05:28:09 +08:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/gogits/gogs/models"
|
2014-06-23 01:14:03 +08:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-15 21:17:16 +08:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-05-26 08:11:25 +08:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-03-08 05:05:18 +08:00
|
|
|
"github.com/gogits/gogs/routers/user"
|
2014-02-13 03:54:09 +08:00
|
|
|
)
|
|
|
|
|
2014-06-23 01:14:03 +08:00
|
|
|
const (
|
2014-09-06 05:28:09 +08:00
|
|
|
HOME base.TplName = "home"
|
|
|
|
EXPLORE_REPOS base.TplName = "explore/repos"
|
2014-06-23 01:14:03 +08:00
|
|
|
)
|
|
|
|
|
2014-03-15 22:34:33 +08:00
|
|
|
func Home(ctx *middleware.Context) {
|
|
|
|
if ctx.IsSigned {
|
2014-08-10 12:02:00 +08: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-06 21:33:17 +08:00
|
|
|
return
|
|
|
|
}
|
2014-03-25 00:43:51 +08:00
|
|
|
|
|
|
|
// Check auto-login.
|
2014-07-26 12:24:27 +08:00
|
|
|
uname := ctx.GetCookie(setting.CookieUserName)
|
|
|
|
if len(uname) != 0 {
|
2014-09-20 08:11:34 +08:00
|
|
|
ctx.Redirect(setting.AppSubUrl + "/user/login")
|
2014-03-25 00:43:51 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-08-07 18:40:05 +08:00
|
|
|
if setting.OauthService != nil {
|
|
|
|
ctx.Data["OauthEnabled"] = true
|
|
|
|
ctx.Data["OauthService"] = setting.OauthService
|
|
|
|
}
|
|
|
|
|
2014-05-25 03:28:31 +08:00
|
|
|
ctx.Data["PageIsHome"] = true
|
2014-06-23 01:14:03 +08:00
|
|
|
ctx.HTML(200, HOME)
|
2014-02-13 01:49:46 +08:00
|
|
|
}
|
2014-03-16 15:41:22 +08:00
|
|
|
|
2014-09-06 05:28:09 +08:00
|
|
|
func Explore(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("explore")
|
|
|
|
ctx.Data["PageIsExploreRepositories"] = true
|
|
|
|
|
|
|
|
repos, err := models.GetRecentUpdatedRepositories(20)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetRecentUpdatedRepositories", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for _, repo := range repos {
|
|
|
|
if err = repo.GetOwner(); err != nil {
|
2015-08-08 22:43:14 +08:00
|
|
|
ctx.Handle(500, "GetOwner", fmt.Errorf("%d: %v", repo.ID, err))
|
2014-09-06 05:28:09 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["Repos"] = repos
|
|
|
|
|
|
|
|
ctx.HTML(200, EXPLORE_REPOS)
|
|
|
|
}
|
|
|
|
|
2014-03-23 13:48:01 +08:00
|
|
|
func NotFound(ctx *middleware.Context) {
|
2014-03-23 20:40:40 +08:00
|
|
|
ctx.Data["Title"] = "Page Not Found"
|
2014-03-23 13:48:01 +08:00
|
|
|
ctx.Handle(404, "home.NotFound", nil)
|
|
|
|
}
|