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 {
|
2024-04-15 14:22:21 +01:00
|
|
|
db db.DB
|
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.
|
2024-04-15 14:22:21 +01:00
|
|
|
func NewClientStore(db db.DB) 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) {
|
2024-04-15 14:22:21 +01:00
|
|
|
client, err := cs.db.GetClientByID(ctx, clientID)
|
|
|
|
if err != nil {
|
2021-04-01 19:46:45 +01:00
|
|
|
return nil, err
|
2021-03-15 17:59:38 +00:00
|
|
|
}
|
2024-04-15 14:22:21 +01:00
|
|
|
return models.New(
|
|
|
|
client.ID,
|
|
|
|
client.Secret,
|
|
|
|
client.Domain,
|
|
|
|
client.UserID,
|
|
|
|
), nil
|
2021-03-15 17:59:38 +00:00
|
|
|
}
|
|
|
|
|
2021-03-22 21:26:54 +00:00
|
|
|
func (cs *clientStore) Set(ctx context.Context, id string, cli oauth2.ClientInfo) error {
|
2024-04-15 14:22:21 +01:00
|
|
|
return cs.db.PutClient(ctx, >smodel.Client{
|
2021-03-15 17:59:38 +00:00
|
|
|
ID: cli.GetID(),
|
|
|
|
Secret: cli.GetSecret(),
|
|
|
|
Domain: cli.GetDomain(),
|
|
|
|
UserID: cli.GetUserID(),
|
2024-04-15 14:22:21 +01:00
|
|
|
})
|
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 {
|
2024-04-15 14:22:21 +01:00
|
|
|
return cs.db.DeleteClientByID(ctx, id)
|
2021-03-15 17:59:38 +00:00
|
|
|
}
|