2021-07-05 12:23:03 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-07-05 12:23:03 +01:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package account
|
|
|
|
|
|
|
|
import (
|
2021-08-25 14:34:33 +01:00
|
|
|
"context"
|
2021-07-05 12:23:03 +01:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
|
|
|
)
|
|
|
|
|
2021-10-24 10:57:39 +01:00
|
|
|
func (p *processor) StatusesGet(ctx context.Context, requestingAccount *gtsmodel.Account, targetAccountID string, limit int, excludeReplies bool, maxID string, minID string, pinnedOnly bool, mediaOnly bool, publicOnly bool) ([]apimodel.Status, gtserror.WithCode) {
|
2021-08-25 14:34:33 +01:00
|
|
|
if blocked, err := p.db.IsBlocked(ctx, requestingAccount.ID, targetAccountID, true); err != nil {
|
2021-07-05 12:23:03 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
2021-08-20 11:26:56 +01:00
|
|
|
} else if blocked {
|
|
|
|
return nil, gtserror.NewErrorNotFound(fmt.Errorf("block exists between accounts"))
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
apiStatuses := []apimodel.Status{}
|
2021-08-20 11:26:56 +01:00
|
|
|
|
2021-10-24 10:57:39 +01:00
|
|
|
statuses, err := p.db.GetAccountStatuses(ctx, targetAccountID, limit, excludeReplies, maxID, minID, pinnedOnly, mediaOnly, publicOnly)
|
2021-07-05 12:23:03 +01:00
|
|
|
if err != nil {
|
2021-08-20 11:26:56 +01:00
|
|
|
if err == db.ErrNoEntries {
|
2021-07-05 12:23:03 +01:00
|
|
|
return apiStatuses, nil
|
|
|
|
}
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, s := range statuses {
|
2021-08-25 14:34:33 +01:00
|
|
|
visible, err := p.filter.StatusVisible(ctx, s, requestingAccount)
|
2021-07-05 12:23:03 +01:00
|
|
|
if err != nil || !visible {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-10-04 14:24:19 +01:00
|
|
|
apiStatus, err := p.tc.StatusToAPIStatus(ctx, s, requestingAccount)
|
2021-07-05 12:23:03 +01:00
|
|
|
if err != nil {
|
2021-10-04 14:24:19 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("error converting status to api: %s", err))
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
apiStatuses = append(apiStatuses, *apiStatus)
|
|
|
|
}
|
|
|
|
|
|
|
|
return apiStatuses, nil
|
|
|
|
}
|