2020-12-02 10:24:35 +01:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-12-02 10:24:35 +01:00
|
|
|
|
|
|
|
package convert
|
|
|
|
|
|
|
|
import (
|
2023-09-29 14:12:54 +02:00
|
|
|
"context"
|
2021-11-16 19:18:25 +01:00
|
|
|
"net/url"
|
|
|
|
|
2022-08-25 04:31:57 +02:00
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2021-11-28 12:58:28 +01:00
|
|
|
"code.gitea.io/gitea/models/perm"
|
2023-06-22 15:08:08 +02:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2020-12-02 10:24:35 +01:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ToNotificationThread convert a Notification to api.NotificationThread
|
2023-09-29 14:12:54 +02:00
|
|
|
func ToNotificationThread(ctx context.Context, n *activities_model.Notification) *api.NotificationThread {
|
2020-12-02 10:24:35 +01:00
|
|
|
result := &api.NotificationThread{
|
|
|
|
ID: n.ID,
|
2022-08-25 04:31:57 +02:00
|
|
|
Unread: !(n.Status == activities_model.NotificationStatusRead || n.Status == activities_model.NotificationStatusPinned),
|
|
|
|
Pinned: n.Status == activities_model.NotificationStatusPinned,
|
2020-12-02 10:24:35 +01:00
|
|
|
UpdatedAt: n.UpdatedUnix.AsTime(),
|
|
|
|
URL: n.APIURL(),
|
|
|
|
}
|
|
|
|
|
2022-01-20 18:46:10 +01:00
|
|
|
// since user only get notifications when he has access to use minimal access mode
|
2020-12-02 10:24:35 +01:00
|
|
|
if n.Repository != nil {
|
2023-09-29 14:12:54 +02:00
|
|
|
result.Repository = ToRepo(ctx, n.Repository, access_model.Permission{AccessMode: perm.AccessModeRead})
|
2022-05-20 18:57:49 +02:00
|
|
|
|
|
|
|
// This permission is not correct and we should not be reporting it
|
|
|
|
for repository := result.Repository; repository != nil; repository = repository.Parent {
|
|
|
|
repository.Permissions = nil
|
|
|
|
}
|
2020-12-02 10:24:35 +01:00
|
|
|
}
|
|
|
|
|
2022-01-20 18:46:10 +01:00
|
|
|
// handle Subject
|
2020-12-02 10:24:35 +01:00
|
|
|
switch n.Source {
|
2022-08-25 04:31:57 +02:00
|
|
|
case activities_model.NotificationSourceIssue:
|
2021-07-01 12:51:24 +02:00
|
|
|
result.Subject = &api.NotificationSubject{Type: api.NotifySubjectIssue}
|
2020-12-02 10:24:35 +01:00
|
|
|
if n.Issue != nil {
|
|
|
|
result.Subject.Title = n.Issue.Title
|
2023-10-03 12:30:41 +02:00
|
|
|
result.Subject.URL = n.Issue.APIURL(ctx)
|
2021-09-30 06:17:39 +02:00
|
|
|
result.Subject.HTMLURL = n.Issue.HTMLURL()
|
2020-12-02 10:24:35 +01:00
|
|
|
result.Subject.State = n.Issue.State()
|
2023-10-03 12:30:41 +02:00
|
|
|
comment, err := n.Issue.GetLastComment(ctx)
|
2020-12-02 10:24:35 +01:00
|
|
|
if err == nil && comment != nil {
|
2023-09-29 14:12:54 +02:00
|
|
|
result.Subject.LatestCommentURL = comment.APIURL(ctx)
|
|
|
|
result.Subject.LatestCommentHTMLURL = comment.HTMLURL(ctx)
|
2020-12-02 10:24:35 +01:00
|
|
|
}
|
|
|
|
}
|
2022-08-25 04:31:57 +02:00
|
|
|
case activities_model.NotificationSourcePullRequest:
|
2021-07-01 12:51:24 +02:00
|
|
|
result.Subject = &api.NotificationSubject{Type: api.NotifySubjectPull}
|
2020-12-02 10:24:35 +01:00
|
|
|
if n.Issue != nil {
|
|
|
|
result.Subject.Title = n.Issue.Title
|
2023-10-03 12:30:41 +02:00
|
|
|
result.Subject.URL = n.Issue.APIURL(ctx)
|
2021-09-30 06:17:39 +02:00
|
|
|
result.Subject.HTMLURL = n.Issue.HTMLURL()
|
2020-12-02 10:24:35 +01:00
|
|
|
result.Subject.State = n.Issue.State()
|
2023-10-03 12:30:41 +02:00
|
|
|
comment, err := n.Issue.GetLastComment(ctx)
|
2020-12-02 10:24:35 +01:00
|
|
|
if err == nil && comment != nil {
|
2023-09-29 14:12:54 +02:00
|
|
|
result.Subject.LatestCommentURL = comment.APIURL(ctx)
|
|
|
|
result.Subject.LatestCommentHTMLURL = comment.HTMLURL(ctx)
|
2020-12-02 10:24:35 +01:00
|
|
|
}
|
2021-04-09 03:36:23 +02:00
|
|
|
|
2024-03-21 14:13:08 +01:00
|
|
|
if err := n.Issue.LoadPullRequest(ctx); err == nil &&
|
|
|
|
n.Issue.PullRequest != nil &&
|
|
|
|
n.Issue.PullRequest.HasMerged {
|
2021-04-09 03:36:23 +02:00
|
|
|
result.Subject.State = "merged"
|
|
|
|
}
|
2020-12-02 10:24:35 +01:00
|
|
|
}
|
2022-08-25 04:31:57 +02:00
|
|
|
case activities_model.NotificationSourceCommit:
|
2021-11-16 19:18:25 +01:00
|
|
|
url := n.Repository.HTMLURL() + "/commit/" + url.PathEscape(n.CommitID)
|
2020-12-02 10:24:35 +01:00
|
|
|
result.Subject = &api.NotificationSubject{
|
2021-09-30 06:17:39 +02:00
|
|
|
Type: api.NotifySubjectCommit,
|
|
|
|
Title: n.CommitID,
|
|
|
|
URL: url,
|
|
|
|
HTMLURL: url,
|
2021-03-01 01:47:30 +01:00
|
|
|
}
|
2022-08-25 04:31:57 +02:00
|
|
|
case activities_model.NotificationSourceRepository:
|
2021-03-01 01:47:30 +01:00
|
|
|
result.Subject = &api.NotificationSubject{
|
2021-07-01 12:51:24 +02:00
|
|
|
Type: api.NotifySubjectRepository,
|
2021-03-01 01:47:30 +01:00
|
|
|
Title: n.Repository.FullName(),
|
2021-09-30 06:17:39 +02:00
|
|
|
// FIXME: this is a relative URL, rather useless and inconsistent, but keeping for backwards compat
|
|
|
|
URL: n.Repository.Link(),
|
|
|
|
HTMLURL: n.Repository.HTMLURL(),
|
2020-12-02 10:24:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToNotifications convert list of Notification to api.NotificationThread list
|
2023-09-29 14:12:54 +02:00
|
|
|
func ToNotifications(ctx context.Context, nl activities_model.NotificationList) []*api.NotificationThread {
|
2022-01-20 18:46:10 +01:00
|
|
|
result := make([]*api.NotificationThread, 0, len(nl))
|
2020-12-02 10:24:35 +01:00
|
|
|
for _, n := range nl {
|
2023-09-29 14:12:54 +02:00
|
|
|
result = append(result, ToNotificationThread(ctx, n))
|
2020-12-02 10:24:35 +01:00
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|