mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
33aee1b1e9
* reformat GetAccount() functionality, and add UpdateAccount() function.
* use fetched_at instead of last_webfingered_at
* catch local "not found" errors. small formatting / error string changes
* remove now unused error type
* return nil when wrapping nil error
* update expected error messages
* return correct url for foss satan webfinger
* add AP model for Some_User
* normalize local domain
* return notretrievable where appropriate
* expose NewErrNotRetrievable
* ensure webfinger for new accounts searched by uri
* update local account short circuit
* allow enrich to fail for already-known accounts
* remove unused LastWebfingeredAt
* expose test maps on mock http client
* update Update test
* reformat GetAccount() functionality, and add UpdateAccount() function.
* use fetched_at instead of last_webfingered_at
* catch local "not found" errors. small formatting / error string changes
* remove nil error checks (we shouldn't be passing nil errors to newError() initializers)
* remove mutex unlock on transport init fail (it hasn't yet been locked!)
* woops add back the error wrapping to use ErrNotRetrievable
* caches were never being started... 🙈
---------
Signed-off-by: kim <grufwub@gmail.com>
Co-authored-by: tsmethurst <tobi.smethurst@protonmail.com>
115 lines
4 KiB
Go
115 lines
4 KiB
Go
/*
|
|
GoToSocial
|
|
Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
|
|
|
|
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 (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"net/url"
|
|
|
|
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"
|
|
"github.com/superseriousbusiness/gotosocial/internal/transport"
|
|
)
|
|
|
|
func (p *processor) Get(ctx context.Context, requestingAccount *gtsmodel.Account, targetAccountID string) (*apimodel.Account, gtserror.WithCode) {
|
|
targetAccount, err := p.db.GetAccountByID(ctx, targetAccountID)
|
|
if err != nil {
|
|
if err == db.ErrNoEntries {
|
|
return nil, gtserror.NewErrorNotFound(errors.New("account not found"))
|
|
}
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("db error: %s", err))
|
|
}
|
|
|
|
return p.getAccountFor(ctx, requestingAccount, targetAccount)
|
|
}
|
|
|
|
func (p *processor) GetLocalByUsername(ctx context.Context, requestingAccount *gtsmodel.Account, username string) (*apimodel.Account, gtserror.WithCode) {
|
|
targetAccount, err := p.db.GetAccountByUsernameDomain(ctx, username, "")
|
|
if err != nil {
|
|
if err == db.ErrNoEntries {
|
|
return nil, gtserror.NewErrorNotFound(errors.New("account not found"))
|
|
}
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("db error: %s", err))
|
|
}
|
|
|
|
return p.getAccountFor(ctx, requestingAccount, targetAccount)
|
|
}
|
|
|
|
func (p *processor) GetCustomCSSForUsername(ctx context.Context, username string) (string, gtserror.WithCode) {
|
|
customCSS, err := p.db.GetAccountCustomCSSByUsername(ctx, username)
|
|
if err != nil {
|
|
if err == db.ErrNoEntries {
|
|
return "", gtserror.NewErrorNotFound(errors.New("account not found"))
|
|
}
|
|
return "", gtserror.NewErrorInternalError(fmt.Errorf("db error: %s", err))
|
|
}
|
|
|
|
return customCSS, nil
|
|
}
|
|
|
|
func (p *processor) getAccountFor(ctx context.Context, requestingAccount *gtsmodel.Account, targetAccount *gtsmodel.Account) (*apimodel.Account, gtserror.WithCode) {
|
|
var blocked bool
|
|
var err error
|
|
if requestingAccount != nil {
|
|
blocked, err = p.db.IsBlocked(ctx, requestingAccount.ID, targetAccount.ID, true)
|
|
if err != nil {
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("error checking account block: %s", err))
|
|
}
|
|
}
|
|
|
|
var apiAccount *apimodel.Account
|
|
if blocked {
|
|
apiAccount, err = p.tc.AccountToAPIAccountBlocked(ctx, targetAccount)
|
|
if err != nil {
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("error converting account: %s", err))
|
|
}
|
|
return apiAccount, nil
|
|
}
|
|
|
|
// last-minute check to make sure we have remote account header/avi cached
|
|
if targetAccount.Domain != "" {
|
|
targetAccountURI, err := url.Parse(targetAccount.URI)
|
|
if err != nil {
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("error parsing url %s: %s", targetAccount.URI, err))
|
|
}
|
|
|
|
a, err := p.federator.GetAccountByURI(
|
|
transport.WithFastfail(ctx), requestingAccount.Username, targetAccountURI, true,
|
|
)
|
|
if err == nil {
|
|
targetAccount = a
|
|
}
|
|
}
|
|
|
|
if requestingAccount != nil && targetAccount.ID == requestingAccount.ID {
|
|
apiAccount, err = p.tc.AccountToAPIAccountSensitive(ctx, targetAccount)
|
|
} else {
|
|
apiAccount, err = p.tc.AccountToAPIAccountPublic(ctx, targetAccount)
|
|
}
|
|
if err != nil {
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("error converting account: %s", err))
|
|
}
|
|
|
|
return apiAccount, nil
|
|
}
|