mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-15 02:45:22 +00:00
Merge pull request '[v7.0/forgejo] Teach activities.GetFeeds() how to avoid returning duplicates' (#3687) from bp-v7.0/forgejo-9cb2aa9 into v7.0/forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3687 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
This commit is contained in:
commit
7afee47817
|
@ -437,6 +437,7 @@ type GetFeedsOptions struct {
|
||||||
Actor *user_model.User // the user viewing the activity
|
Actor *user_model.User // the user viewing the activity
|
||||||
IncludePrivate bool // include private actions
|
IncludePrivate bool // include private actions
|
||||||
OnlyPerformedBy bool // only actions performed by requested user
|
OnlyPerformedBy bool // only actions performed by requested user
|
||||||
|
OnlyPerformedByActor bool // only actions performed by the original actor
|
||||||
IncludeDeleted bool // include deleted actions
|
IncludeDeleted bool // include deleted actions
|
||||||
Date string // the day we want activity for: YYYY-MM-DD
|
Date string // the day we want activity for: YYYY-MM-DD
|
||||||
}
|
}
|
||||||
|
@ -481,6 +482,10 @@ func ActivityReadable(user, doer *user_model.User) bool {
|
||||||
func activityQueryCondition(ctx context.Context, opts GetFeedsOptions) (builder.Cond, error) {
|
func activityQueryCondition(ctx context.Context, opts GetFeedsOptions) (builder.Cond, error) {
|
||||||
cond := builder.NewCond()
|
cond := builder.NewCond()
|
||||||
|
|
||||||
|
if opts.OnlyPerformedByActor {
|
||||||
|
cond = cond.And(builder.Expr("`action`.user_id = `action`.act_user_id"))
|
||||||
|
}
|
||||||
|
|
||||||
if opts.RequestedTeam != nil && opts.RequestedUser == nil {
|
if opts.RequestedTeam != nil && opts.RequestedUser == nil {
|
||||||
org, err := user_model.GetUserByID(ctx, opts.RequestedTeam.OrgID)
|
org, err := user_model.GetUserByID(ctx, opts.RequestedTeam.OrgID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
1
release-notes/8.0.0/fix/3598.md
Normal file
1
release-notes/8.0.0/fix/3598.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Fixed an issue that resulted in repository activity feeds (including RSS and Atom feeds) containing repeated activities.
|
|
@ -1291,6 +1291,7 @@ func ListRepoActivityFeeds(ctx *context.APIContext) {
|
||||||
|
|
||||||
opts := activities_model.GetFeedsOptions{
|
opts := activities_model.GetFeedsOptions{
|
||||||
RequestedRepo: ctx.Repo.Repository,
|
RequestedRepo: ctx.Repo.Repository,
|
||||||
|
OnlyPerformedByActor: true,
|
||||||
Actor: ctx.Doer,
|
Actor: ctx.Doer,
|
||||||
IncludePrivate: true,
|
IncludePrivate: true,
|
||||||
Date: ctx.FormString("date"),
|
Date: ctx.FormString("date"),
|
||||||
|
|
|
@ -16,6 +16,7 @@ import (
|
||||||
// ShowRepoFeed shows user activity on the repo as RSS / Atom feed
|
// ShowRepoFeed shows user activity on the repo as RSS / Atom feed
|
||||||
func ShowRepoFeed(ctx *context.Context, repo *repo_model.Repository, formatType string) {
|
func ShowRepoFeed(ctx *context.Context, repo *repo_model.Repository, formatType string) {
|
||||||
actions, _, err := activities_model.GetFeeds(ctx, activities_model.GetFeedsOptions{
|
actions, _, err := activities_model.GetFeeds(ctx, activities_model.GetFeedsOptions{
|
||||||
|
OnlyPerformedByActor: true,
|
||||||
RequestedRepo: repo,
|
RequestedRepo: repo,
|
||||||
Actor: ctx.Doer,
|
Actor: ctx.Doer,
|
||||||
IncludePrivate: true,
|
IncludePrivate: true,
|
||||||
|
|
88
tests/integration/api_repo_activities_test.go
Normal file
88
tests/integration/api_repo_activities_test.go
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
// Copyright 2024 The Forgejo Authors c/o Codeberg e.V.. All rights reserved.
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
package integration
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"net/http"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
auth_model "code.gitea.io/gitea/models/auth"
|
||||||
|
"code.gitea.io/gitea/models/unittest"
|
||||||
|
user_model "code.gitea.io/gitea/models/user"
|
||||||
|
api "code.gitea.io/gitea/modules/structs"
|
||||||
|
"code.gitea.io/gitea/tests"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestAPIRepoActivitiyFeeds(t *testing.T) {
|
||||||
|
defer tests.PrepareTestEnv(t)()
|
||||||
|
|
||||||
|
owner := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1})
|
||||||
|
repo, _, f := CreateDeclarativeRepoWithOptions(t, owner, DeclarativeRepoOptions{})
|
||||||
|
defer f()
|
||||||
|
|
||||||
|
feedURL := fmt.Sprintf("/api/v1/repos/%s/activities/feeds", repo.FullName())
|
||||||
|
assertAndReturnActivities := func(t *testing.T, length int) []api.Activity {
|
||||||
|
t.Helper()
|
||||||
|
|
||||||
|
req := NewRequest(t, "GET", feedURL)
|
||||||
|
resp := MakeRequest(t, req, http.StatusOK)
|
||||||
|
var activities []api.Activity
|
||||||
|
DecodeJSON(t, resp, &activities)
|
||||||
|
|
||||||
|
assert.Len(t, activities, length)
|
||||||
|
|
||||||
|
return activities
|
||||||
|
}
|
||||||
|
createIssue := func(t *testing.T) {
|
||||||
|
session := loginUser(t, owner.Name)
|
||||||
|
token := getTokenForLoggedInUser(t, session, auth_model.AccessTokenScopeWriteIssue)
|
||||||
|
urlStr := fmt.Sprintf("/api/v1/repos/%s/issues?state=all", repo.FullName())
|
||||||
|
req := NewRequestWithJSON(t, "POST", urlStr, &api.CreateIssueOption{
|
||||||
|
Title: "ActivityFeed test",
|
||||||
|
Body: "Nothing to see here!",
|
||||||
|
}).AddTokenAuth(token)
|
||||||
|
MakeRequest(t, req, http.StatusCreated)
|
||||||
|
}
|
||||||
|
|
||||||
|
t.Run("repo creation", func(t *testing.T) {
|
||||||
|
defer tests.PrintCurrentTest(t)()
|
||||||
|
|
||||||
|
// Upon repo creation, there's a single activity.
|
||||||
|
assertAndReturnActivities(t, 1)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("single watcher, single issue", func(t *testing.T) {
|
||||||
|
defer tests.PrintCurrentTest(t)()
|
||||||
|
|
||||||
|
// After creating an issue, we'll have two activities.
|
||||||
|
createIssue(t)
|
||||||
|
assertAndReturnActivities(t, 2)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("a new watcher, no new activities", func(t *testing.T) {
|
||||||
|
defer tests.PrintCurrentTest(t)()
|
||||||
|
|
||||||
|
watcher := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
||||||
|
watcherSession := loginUser(t, watcher.Name)
|
||||||
|
watcherToken := getTokenForLoggedInUser(t, watcherSession, auth_model.AccessTokenScopeWriteRepository, auth_model.AccessTokenScopeReadUser)
|
||||||
|
|
||||||
|
req := NewRequest(t, "PUT", fmt.Sprintf("/api/v1/repos/%s/subscription", repo.FullName())).
|
||||||
|
AddTokenAuth(watcherToken)
|
||||||
|
MakeRequest(t, req, http.StatusOK)
|
||||||
|
|
||||||
|
assertAndReturnActivities(t, 2)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("multiple watchers, new issue", func(t *testing.T) {
|
||||||
|
defer tests.PrintCurrentTest(t)()
|
||||||
|
|
||||||
|
// After creating a second issue, we'll have three activities, even
|
||||||
|
// though we have multiple watchers.
|
||||||
|
createIssue(t)
|
||||||
|
assertAndReturnActivities(t, 3)
|
||||||
|
})
|
||||||
|
}
|
Loading…
Reference in a new issue