2015-10-01 15:17:27 +02: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 repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/Unknwon/paginater"
|
|
|
|
|
|
|
|
"github.com/gogits/gogs/models"
|
|
|
|
"github.com/gogits/gogs/modules/base"
|
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
STARS base.TplName = "repo/stars"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Stars(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("repos.stars")
|
|
|
|
|
2015-10-02 10:04:11 +02:00
|
|
|
page := ctx.QueryInt("page")
|
2015-10-01 15:17:27 +02:00
|
|
|
if page <= 0 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Page"] = paginater.New(ctx.Repo.Repository.NumStars, models.ItemsPerPage, page, 5)
|
|
|
|
|
2015-10-02 10:04:11 +02:00
|
|
|
stars, err := ctx.Repo.Repository.GetStars(ctx.QueryInt("page"))
|
2015-10-01 15:17:27 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetStars", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-02 10:04:11 +02:00
|
|
|
if (ctx.QueryInt("page")-1)*models.ItemsPerPage > ctx.Repo.Repository.NumStars {
|
2015-10-01 15:17:27 +02:00
|
|
|
ctx.Handle(404, "ctx.Repo.Repository.NumStars", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Stars"] = stars
|
|
|
|
|
|
|
|
ctx.HTML(200, STARS)
|
|
|
|
}
|