-
Notifications
You must be signed in to change notification settings - Fork 62
/
mysql_repository.go
74 lines (63 loc) · 2.17 KB
/
mysql_repository.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// SPDX-License-Identifier: AGPL-3.0-only
//
// 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, version 3.
//
// 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 <https://www.gnu.org/licenses/>
package oauth
import (
"context"
"go.uber.org/zap"
"github.com/bangumi/server/internal/dal/dao"
"github.com/bangumi/server/internal/dal/query"
"github.com/bangumi/server/internal/model"
"github.com/bangumi/server/internal/pkg/errgo"
"github.com/bangumi/server/internal/pkg/logger"
"github.com/bangumi/server/internal/pkg/strparse"
)
func NewMysqlRepo(q *query.Query, log *zap.Logger) (Manager, error) {
return mysqlRepo{q: q, log: log.Named("episode.mysqlRepo")}, nil
}
type mysqlRepo struct {
q *query.Query
log *zap.Logger
}
func (m mysqlRepo) GetClientByID(ctx context.Context, clientIDs ...string) (map[string]Client, error) {
clients, err := m.q.OAuthClient.WithContext(ctx).Joins(m.q.OAuthClient.App).
Where(m.q.OAuthClient.ClientID.In(clientIDs...)).Find()
if err != nil {
return nil, errgo.Wrap(err, "dal")
}
var data = make(map[string]Client, len(clients))
for _, record := range clients {
data[record.ClientID] = convertFromDao(record)
}
return data, nil
}
func convertFromDao(record *dao.OAuthClient) Client {
var userID model.UserID
var err error
if record.UserID != "" {
userID, err = strparse.UserID(record.UserID)
if err != nil {
logger.Fatal("unexpected error when parsing userID", zap.Error(err), zap.String("raw", record.UserID))
}
}
return Client{
ID: record.ClientID,
Secret: record.ClientSecret,
RedirectURI: record.RedirectURI,
GrantTypes: record.GrantTypes,
Scope: record.Scope,
UserID: userID,
AppID: record.AppID,
AppName: record.App.Name,
}
}