c572fcfe04
Rename the Go module path from code.gitea.io/gitea to git.mokoconsulting.tech/MokoConsulting/MokoGitea across the entire codebase. Scope: - go.mod module declaration - 2,235 Go source files (import paths) - Dockerfile WORKDIR and COPY paths - Swagger API templates - golangci.yml linter config External dependencies (code.gitea.io/gitea-vet, code.gitea.io/sdk/gitea, gitea.com/gitea/act, etc.) are intentionally NOT renamed — they are separate upstream modules. Closes #132 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
62 lines
1.7 KiB
Go
62 lines
1.7 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package feed
|
|
|
|
import (
|
|
"time"
|
|
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/models/repo"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/git"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/util"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/services/context"
|
|
|
|
"github.com/gorilla/feeds"
|
|
)
|
|
|
|
// ShowFileFeed shows tags and/or releases on the repo as RSS / Atom feed
|
|
func ShowFileFeed(ctx *context.Context, repo *repo.Repository, formatType string) {
|
|
fileName := ctx.Repo.TreePath
|
|
if len(fileName) == 0 {
|
|
return
|
|
}
|
|
commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange(
|
|
git.CommitsByFileAndRangeOptions{
|
|
Revision: ctx.Repo.RefFullName.ShortName(), // FIXME: legacy code used ShortName
|
|
File: fileName,
|
|
Page: 1,
|
|
})
|
|
if err != nil {
|
|
ctx.ServerError("ShowBranchFeed", err)
|
|
return
|
|
}
|
|
|
|
title := "Latest commits for file " + ctx.Repo.TreePath
|
|
|
|
link := &feeds.Link{Href: repo.HTMLURL() + "/" + ctx.Repo.RefTypeNameSubURL() + "/" + util.PathEscapeSegments(ctx.Repo.TreePath)}
|
|
|
|
feed := &feeds.Feed{
|
|
Title: title,
|
|
Link: link,
|
|
Description: repo.Description,
|
|
Created: time.Now(),
|
|
}
|
|
|
|
for _, commit := range commits {
|
|
feed.Items = append(feed.Items, &feeds.Item{
|
|
Id: commit.ID.String(),
|
|
Title: commit.MessageTitle(),
|
|
Link: &feeds.Link{Href: repo.HTMLURL() + "/commit/" + commit.ID.String()},
|
|
Author: &feeds.Author{
|
|
Name: commit.Author.Name,
|
|
Email: commit.Author.Email,
|
|
},
|
|
Description: commit.MessageUTF8(), // TODO: description can be shorten content
|
|
Content: commit.MessageUTF8(),
|
|
Created: commit.Committer.When,
|
|
})
|
|
}
|
|
|
|
writeFeed(ctx, feed, formatType)
|
|
}
|