You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
forgejo/routers/dashboard.go

51 lines
1.1 KiB
Go

11 years ago
// 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
11 years ago
import (
10 years ago
"github.com/gogits/gogs/models"
10 years ago
"github.com/gogits/gogs/modules/middleware"
10 years ago
"github.com/gogits/gogs/modules/setting"
"github.com/gogits/gogs/routers/user"
11 years ago
)
10 years ago
func Home(ctx *middleware.Context) {
if ctx.IsSigned {
10 years ago
user.Dashboard(ctx)
return
}
10 years ago
// Check auto-login.
10 years ago
userName := ctx.GetCookie(setting.CookieUserName)
10 years ago
if len(userName) != 0 {
ctx.Redirect("/user/login")
return
}
10 years ago
ctx.Data["PageIsHome"] = true
10 years ago
// Show recent updated repositoires for new visiters.
repos, err := models.GetRecentUpdatedRepositories()
if err != nil {
ctx.Handle(500, "dashboard.Home(GetRecentUpdatedRepositories)", err)
return
}
10 years ago
for _, repo := range repos {
if err = repo.GetOwner(); err != nil {
ctx.Handle(500, "dashboard.Home(GetOwner)", err)
10 years ago
return
}
10 years ago
}
ctx.Data["Repos"] = repos
10 years ago
ctx.HTML(200, "home")
11 years ago
}
10 years ago
func NotFound(ctx *middleware.Context) {
ctx.Data["Title"] = "Page Not Found"
10 years ago
ctx.Data["PageIsNotFound"] = true
ctx.Handle(404, "home.NotFound", nil)
}