mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	Fix parts of issue https://codeberg.org/forgejo/forgejo/issues/8221 and PR https://codeberg.org/forgejo/forgejo/pulls/4767 - PostgreSQL - TestActivityPubPerson/SignedRequestValidation ``` --- FAIL: TestActivityPubPerson/SignedRequestValidation (5.01s) api_activitypub_person_test.go:51: Error Trace: /workspace/forgejo/forgejo/tests/integration/api_activitypub_person_test.go:51 Error: Received unexpected error: Get "http://127.0.0.1:3002/api/v1/activitypub/user-id/2": context deadline exceeded (Client.Timeout exceeded while awaiting headers) Test: TestActivityPubPerson/SignedRequestValidation testlogger.go:411: 2025/06/24 00:12:27 ...eb/routing/logger.go:102:func1() [I] router: completed GET /api/v1/activitypub/user-id/2 for 127.0.0.1:50456, 200 OK in 5032.2ms @ activitypub/person.go:21(activitypub.Person) ``` Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8274 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Co-authored-by: Michael Jerger <michael.jerger@meissa-gmbh.de> Co-committed-by: Michael Jerger <michael.jerger@meissa-gmbh.de>
		
			
				
	
	
		
			60 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2024 The Forgejo Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| package repo
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 
 | |
| 	"forgejo.org/models/db"
 | |
| 	"forgejo.org/modules/validation"
 | |
| )
 | |
| 
 | |
| func init() {
 | |
| 	db.RegisterModel(new(FollowingRepo))
 | |
| }
 | |
| 
 | |
| func FindFollowingReposByRepoID(ctx context.Context, repoID int64) ([]*FollowingRepo, error) {
 | |
| 	maxFollowingRepos := 10
 | |
| 	sess := db.GetEngine(ctx).Where("repo_id=?", repoID)
 | |
| 	sess = sess.Limit(maxFollowingRepos, 0)
 | |
| 	followingRepoList := make([]*FollowingRepo, 0, maxFollowingRepos)
 | |
| 	err := sess.Find(&followingRepoList)
 | |
| 	if err != nil {
 | |
| 		return make([]*FollowingRepo, 0, maxFollowingRepos), err
 | |
| 	}
 | |
| 	for _, followingRepo := range followingRepoList {
 | |
| 		if res, err := validation.IsValid(*followingRepo); !res {
 | |
| 			return make([]*FollowingRepo, 0, maxFollowingRepos), err
 | |
| 		}
 | |
| 	}
 | |
| 	return followingRepoList, nil
 | |
| }
 | |
| 
 | |
| func StoreFollowingRepos(ctx context.Context, localRepoID int64, followingRepoList []*FollowingRepo) error {
 | |
| 	for _, followingRepo := range followingRepoList {
 | |
| 		if res, err := validation.IsValid(*followingRepo); !res {
 | |
| 			return err
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	// Begin transaction
 | |
| 	dbCtx, committer, err := db.TxContext((ctx))
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	defer committer.Close()
 | |
| 
 | |
| 	_, err = db.GetEngine(dbCtx).Where("repo_id=?", localRepoID).Delete(FollowingRepo{})
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	for _, followingRepo := range followingRepoList {
 | |
| 		_, err = db.GetEngine(dbCtx).Insert(followingRepo)
 | |
| 		if err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	// Commit transaction
 | |
| 	return committer.Commit()
 | |
| }
 |