9a5720e8ad
Branch Policy Check / Verify merge target (pull_request) Has been cancelled
Universal: PR Check / Branch Policy (pull_request) Has been cancelled
PR RC Release / Build RC Release (pull_request) Has been cancelled
Universal: PR Check / Validate PR (pull_request) Has been cancelled
Branch Cleanup / Delete merged branch (pull_request) Has been cancelled
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Full namespace migration: update the Go module path and all import statements from git.mokoconsulting.tech to code.mokoconsulting.tech. Also updates all URL references in templates, workflows, configs, tests, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
42 lines
1.2 KiB
Go
42 lines
1.2 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repo
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/templates"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/services/context"
|
|
contributors_service "code.mokoconsulting.tech/MokoConsulting/MokoGitea/services/repository"
|
|
)
|
|
|
|
const (
|
|
tplCodeFrequency templates.TplName = "repo/activity"
|
|
)
|
|
|
|
// CodeFrequency renders the page to show repository code frequency
|
|
func CodeFrequency(ctx *context.Context) {
|
|
ctx.Data["Title"] = ctx.Tr("repo.activity.navbar.code_frequency")
|
|
|
|
ctx.Data["PageIsActivity"] = true
|
|
ctx.Data["PageIsCodeFrequency"] = true
|
|
ctx.PageData["repoLink"] = ctx.Repo.RepoLink
|
|
|
|
ctx.HTML(http.StatusOK, tplCodeFrequency)
|
|
}
|
|
|
|
// CodeFrequencyData returns JSON of code frequency data
|
|
func CodeFrequencyData(ctx *context.Context) {
|
|
if contributorStats, err := contributors_service.GetContributorStats(ctx, ctx.Cache, ctx.Repo.Repository, ctx.Repo.Repository.DefaultBranch); err != nil {
|
|
if errors.Is(err, contributors_service.ErrAwaitGeneration) {
|
|
ctx.Status(http.StatusAccepted)
|
|
return
|
|
}
|
|
ctx.ServerError("GetContributorStats", err)
|
|
} else {
|
|
ctx.JSON(http.StatusOK, contributorStats["total"].Weeks)
|
|
}
|
|
}
|