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-10-04 14:24:19 +01:00
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
package stream
|
2021-06-19 10:18:55 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2021-06-19 10:18:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
|
|
|
)
|
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
// Authorize returns an oauth2 token info in response to an access token query from the streaming API
|
|
|
|
func (p *Processor) Authorize(ctx context.Context, accessToken string) (*gtsmodel.Account, gtserror.WithCode) {
|
2021-10-04 14:24:19 +01:00
|
|
|
ti, err := p.oauthServer.LoadAccessToken(ctx, accessToken)
|
2021-06-19 10:18:55 +01:00
|
|
|
if err != nil {
|
2022-06-08 19:38:03 +01:00
|
|
|
err := fmt.Errorf("could not load access token: %s", err)
|
|
|
|
return nil, gtserror.NewErrorUnauthorized(err)
|
2021-06-19 10:18:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uid := ti.GetUserID()
|
|
|
|
if uid == "" {
|
2022-06-08 19:38:03 +01:00
|
|
|
err := fmt.Errorf("no userid in token")
|
|
|
|
return nil, gtserror.NewErrorUnauthorized(err)
|
2021-06-19 10:18:55 +01:00
|
|
|
}
|
|
|
|
|
2023-03-01 18:26:53 +00:00
|
|
|
user, err := p.state.DB.GetUserByID(ctx, uid)
|
2022-10-03 09:46:11 +01:00
|
|
|
if err != nil {
|
2022-06-08 19:38:03 +01:00
|
|
|
if err == db.ErrNoEntries {
|
|
|
|
err := fmt.Errorf("no user found for validated uid %s", uid)
|
|
|
|
return nil, gtserror.NewErrorUnauthorized(err)
|
|
|
|
}
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
2021-06-19 10:18:55 +01:00
|
|
|
}
|
|
|
|
|
2023-03-01 18:26:53 +00:00
|
|
|
acct, err := p.state.DB.GetAccountByID(ctx, user.AccountID)
|
2022-06-08 19:38:03 +01:00
|
|
|
if err != nil {
|
|
|
|
if err == db.ErrNoEntries {
|
|
|
|
err := fmt.Errorf("no account found for validated uid %s", uid)
|
|
|
|
return nil, gtserror.NewErrorUnauthorized(err)
|
|
|
|
}
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
2021-06-19 10:18:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return acct, nil
|
|
|
|
}
|