mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	Use GhostUser if needed for TrackedTimes (#22021)
When getting tracked times out of the db and loading their attributes handle not exist errors in a nicer way. (Also prevent an NPE.) Fix #22006 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
		@@ -5,6 +5,7 @@ package issues
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import (
 | 
					import (
 | 
				
			||||||
	"context"
 | 
						"context"
 | 
				
			||||||
 | 
						"errors"
 | 
				
			||||||
	"time"
 | 
						"time"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	"code.gitea.io/gitea/models/db"
 | 
						"code.gitea.io/gitea/models/db"
 | 
				
			||||||
@@ -46,33 +47,41 @@ func (t *TrackedTime) LoadAttributes() (err error) {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (t *TrackedTime) loadAttributes(ctx context.Context) (err error) {
 | 
					func (t *TrackedTime) loadAttributes(ctx context.Context) (err error) {
 | 
				
			||||||
 | 
						// Load the issue
 | 
				
			||||||
	if t.Issue == nil {
 | 
						if t.Issue == nil {
 | 
				
			||||||
		t.Issue, err = GetIssueByID(ctx, t.IssueID)
 | 
							t.Issue, err = GetIssueByID(ctx, t.IssueID)
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil && !errors.Is(err, util.ErrNotExist) {
 | 
				
			||||||
			return
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		err = t.Issue.LoadRepo(ctx)
 | 
					 | 
				
			||||||
		if err != nil {
 | 
					 | 
				
			||||||
			return
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	if t.User == nil {
 | 
					 | 
				
			||||||
		t.User, err = user_model.GetUserByID(ctx, t.UserID)
 | 
					 | 
				
			||||||
		if err != nil {
 | 
					 | 
				
			||||||
			return
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	return err
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// LoadAttributes load Issue, User
 | 
					 | 
				
			||||||
func (tl TrackedTimeList) LoadAttributes() (err error) {
 | 
					 | 
				
			||||||
	for _, t := range tl {
 | 
					 | 
				
			||||||
		if err = t.LoadAttributes(); err != nil {
 | 
					 | 
				
			||||||
			return err
 | 
								return err
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	return err
 | 
						// Now load the repo for the issue (which we may have just loaded)
 | 
				
			||||||
 | 
						if t.Issue != nil {
 | 
				
			||||||
 | 
							err = t.Issue.LoadRepo(ctx)
 | 
				
			||||||
 | 
							if err != nil && !errors.Is(err, util.ErrNotExist) {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						// Load the user
 | 
				
			||||||
 | 
						if t.User == nil {
 | 
				
			||||||
 | 
							t.User, err = user_model.GetUserByID(ctx, t.UserID)
 | 
				
			||||||
 | 
							if err != nil {
 | 
				
			||||||
 | 
								if !errors.Is(err, util.ErrNotExist) {
 | 
				
			||||||
 | 
									return err
 | 
				
			||||||
 | 
								}
 | 
				
			||||||
 | 
								t.User = user_model.NewGhostUser()
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						return nil
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// LoadAttributes load Issue, User
 | 
				
			||||||
 | 
					func (tl TrackedTimeList) LoadAttributes() error {
 | 
				
			||||||
 | 
						for _, t := range tl {
 | 
				
			||||||
 | 
							if err := t.LoadAttributes(); err != nil {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						return nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// FindTrackedTimesOptions represent the filters for tracked times. If an ID is 0 it will be ignored.
 | 
					// FindTrackedTimesOptions represent the filters for tracked times. If an ID is 0 it will be ignored.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -110,12 +110,11 @@ func ToAPIIssueList(ctx context.Context, il issues_model.IssueList) []*api.Issue
 | 
				
			|||||||
// ToTrackedTime converts TrackedTime to API format
 | 
					// ToTrackedTime converts TrackedTime to API format
 | 
				
			||||||
func ToTrackedTime(ctx context.Context, t *issues_model.TrackedTime) (apiT *api.TrackedTime) {
 | 
					func ToTrackedTime(ctx context.Context, t *issues_model.TrackedTime) (apiT *api.TrackedTime) {
 | 
				
			||||||
	apiT = &api.TrackedTime{
 | 
						apiT = &api.TrackedTime{
 | 
				
			||||||
		ID:       t.ID,
 | 
							ID:      t.ID,
 | 
				
			||||||
		IssueID:  t.IssueID,
 | 
							IssueID: t.IssueID,
 | 
				
			||||||
		UserID:   t.UserID,
 | 
							UserID:  t.UserID,
 | 
				
			||||||
		UserName: t.User.Name,
 | 
							Time:    t.Time,
 | 
				
			||||||
		Time:     t.Time,
 | 
							Created: t.Created,
 | 
				
			||||||
		Created:  t.Created,
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if t.Issue != nil {
 | 
						if t.Issue != nil {
 | 
				
			||||||
		apiT.Issue = ToAPIIssue(ctx, t.Issue)
 | 
							apiT.Issue = ToAPIIssue(ctx, t.Issue)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user