2021-10-04 14:24:19 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2023-01-05 11:43:00 +00:00
|
|
|
Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
|
2021-10-04 14:24:19 +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/>.
|
|
|
|
*/
|
|
|
|
|
2021-06-19 10:18:55 +01:00
|
|
|
package streaming
|
|
|
|
|
|
|
|
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"
|
|
|
|
)
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
func (p *processor) AuthorizeStreamingRequest(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
|
|
|
}
|
|
|
|
|
2022-10-03 09:46:11 +01:00
|
|
|
user, err := p.db.GetUserByID(ctx, uid)
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
acct, err := p.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
|
|
|
|
}
|