2023-03-12 15:00:57 +00:00
|
|
|
// GoToSocial
|
|
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2021-05-17 18:06:58 +01:00
|
|
|
|
2021-05-30 12:12:00 +01:00
|
|
|
package processing
|
2021-05-09 13:06:06 +01:00
|
|
|
|
|
|
|
import (
|
2021-08-25 14:34:33 +01:00
|
|
|
"context"
|
2023-03-20 18:10:08 +00:00
|
|
|
"errors"
|
2021-12-20 17:42:19 +00:00
|
|
|
|
2021-05-09 13:06:06 +01:00
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
2023-03-20 18:10:08 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2021-06-13 17:42:28 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2022-07-19 09:47:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/log"
|
2021-05-30 12:12:00 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
2022-06-08 19:22:49 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/util"
|
2021-05-09 13:06:06 +01:00
|
|
|
)
|
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
func (p *Processor) NotificationsGet(ctx context.Context, authed *oauth.Auth, excludeTypes []string, limit int, maxID string, sinceID string) (*apimodel.PageableResponse, gtserror.WithCode) {
|
2023-03-01 18:26:53 +00:00
|
|
|
notifs, err := p.state.DB.GetNotifications(ctx, authed.Account.ID, excludeTypes, limit, maxID, sinceID)
|
2021-05-09 13:06:06 +01:00
|
|
|
if err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
2021-05-30 12:12:00 +01:00
|
|
|
}
|
|
|
|
|
2022-10-10 14:52:49 +01:00
|
|
|
count := len(notifs)
|
|
|
|
|
|
|
|
if count == 0 {
|
|
|
|
return util.EmptyPageableResponse(), nil
|
2022-06-08 19:22:49 +01:00
|
|
|
}
|
|
|
|
|
2023-03-20 18:10:08 +00:00
|
|
|
items := make([]interface{}, 0, count)
|
2022-10-10 14:52:49 +01:00
|
|
|
nextMaxIDValue := ""
|
|
|
|
prevMinIDValue := ""
|
|
|
|
for i, n := range notifs {
|
|
|
|
item, err := p.tc.NotificationToAPINotification(ctx, n)
|
2021-05-30 12:12:00 +01:00
|
|
|
if err != nil {
|
2023-02-17 11:02:29 +00:00
|
|
|
log.Debugf(ctx, "got an error converting a notification to api, will skip it: %s", err)
|
2021-05-30 12:12:00 +01:00
|
|
|
continue
|
|
|
|
}
|
2022-10-10 14:52:49 +01:00
|
|
|
|
|
|
|
if i == count-1 {
|
|
|
|
nextMaxIDValue = item.GetID()
|
|
|
|
}
|
|
|
|
|
|
|
|
if i == 0 {
|
|
|
|
prevMinIDValue = item.GetID()
|
|
|
|
}
|
|
|
|
|
|
|
|
items = append(items, item)
|
2021-05-09 13:06:06 +01:00
|
|
|
}
|
|
|
|
|
2022-10-10 14:52:49 +01:00
|
|
|
return util.PackagePageableResponse(util.PageableResponseParams{
|
|
|
|
Items: items,
|
2022-06-08 19:22:49 +01:00
|
|
|
Path: "api/v1/notifications",
|
2022-10-10 14:52:49 +01:00
|
|
|
NextMaxIDValue: nextMaxIDValue,
|
2022-06-08 19:22:49 +01:00
|
|
|
PrevMinIDKey: "since_id",
|
2022-10-10 14:52:49 +01:00
|
|
|
PrevMinIDValue: prevMinIDValue,
|
2022-06-08 19:22:49 +01:00
|
|
|
Limit: limit,
|
|
|
|
})
|
2021-05-09 13:06:06 +01:00
|
|
|
}
|
2022-08-01 10:13:49 +01:00
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
func (p *Processor) NotificationsClear(ctx context.Context, authed *oauth.Auth) gtserror.WithCode {
|
2023-03-20 18:10:08 +00:00
|
|
|
// Delete all notifications that target the authorized account.
|
|
|
|
if err := p.state.DB.DeleteNotifications(ctx, authed.Account.ID, ""); err != nil && !errors.Is(err, db.ErrNoEntries) {
|
2022-08-01 10:13:49 +01:00
|
|
|
return gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|