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-03-15 17:59:38 +00:00
|
|
|
|
|
|
|
package oauth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2021-04-01 19:46:45 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2021-09-01 10:45:01 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2021-04-01 19:46:45 +01:00
|
|
|
"github.com/superseriousbusiness/oauth2/v4"
|
|
|
|
"github.com/superseriousbusiness/oauth2/v4/models"
|
2021-03-15 17:59:38 +00:00
|
|
|
)
|
|
|
|
|
2021-03-22 21:26:54 +00:00
|
|
|
type clientStore struct {
|
2021-08-20 11:26:56 +01:00
|
|
|
db db.Basic
|
2021-03-15 17:59:38 +00:00
|
|
|
}
|
|
|
|
|
2021-05-08 13:25:55 +01:00
|
|
|
// NewClientStore returns an implementation of the oauth2 ClientStore interface, using the given db as a storage backend.
|
2021-08-20 11:26:56 +01:00
|
|
|
func NewClientStore(db db.Basic) oauth2.ClientStore {
|
2021-03-22 21:26:54 +00:00
|
|
|
pts := &clientStore{
|
|
|
|
db: db,
|
2021-03-15 17:59:38 +00:00
|
|
|
}
|
|
|
|
return pts
|
|
|
|
}
|
|
|
|
|
2021-03-22 21:26:54 +00:00
|
|
|
func (cs *clientStore) GetByID(ctx context.Context, clientID string) (oauth2.ClientInfo, error) {
|
2021-09-01 10:45:01 +01:00
|
|
|
poc := >smodel.Client{}
|
2021-08-25 14:34:33 +01:00
|
|
|
if err := cs.db.GetByID(ctx, clientID, poc); err != nil {
|
2021-04-01 19:46:45 +01:00
|
|
|
return nil, err
|
2021-03-15 17:59:38 +00:00
|
|
|
}
|
|
|
|
return models.New(poc.ID, poc.Secret, poc.Domain, poc.UserID), nil
|
|
|
|
}
|
|
|
|
|
2021-03-22 21:26:54 +00:00
|
|
|
func (cs *clientStore) Set(ctx context.Context, id string, cli oauth2.ClientInfo) error {
|
2021-09-01 10:45:01 +01:00
|
|
|
poc := >smodel.Client{
|
2021-03-15 17:59:38 +00:00
|
|
|
ID: cli.GetID(),
|
|
|
|
Secret: cli.GetSecret(),
|
|
|
|
Domain: cli.GetDomain(),
|
|
|
|
UserID: cli.GetUserID(),
|
|
|
|
}
|
2021-08-25 14:34:33 +01:00
|
|
|
return cs.db.Put(ctx, poc)
|
2021-03-15 17:59:38 +00:00
|
|
|
}
|
|
|
|
|
2021-03-22 21:26:54 +00:00
|
|
|
func (cs *clientStore) Delete(ctx context.Context, id string) error {
|
2021-09-01 10:45:01 +01:00
|
|
|
poc := >smodel.Client{
|
2021-03-15 17:59:38 +00:00
|
|
|
ID: id,
|
|
|
|
}
|
2021-08-25 14:34:33 +01:00
|
|
|
return cs.db.DeleteByID(ctx, id, poc)
|
2021-03-15 17:59:38 +00:00
|
|
|
}
|