-
Notifications
You must be signed in to change notification settings - Fork 62
/
get_subject_related_characters.go
59 lines (50 loc) · 1.8 KB
/
get_subject_related_characters.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
// 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 ctrl
import (
"context"
"github.com/bangumi/server/internal/domain"
"github.com/bangumi/server/internal/model"
"github.com/bangumi/server/internal/pkg/errgo"
"github.com/bangumi/server/internal/pkg/generic/slice"
)
func (ctl Ctrl) GetSubjectRelatedCharacters(
ctx context.Context,
user domain.Auth,
subjectID model.SubjectID,
) (model.Subject, []model.SubjectCharacterRelation, error) {
s, err := ctl.GetSubjectNoRedirect(ctx, user, subjectID)
if err != nil {
return s, nil, err
}
relations, err := ctl.character.GetSubjectRelated(ctx, subjectID)
if err != nil {
return s, nil, errgo.Wrap(err, "CharacterRepo.GetSubjectRelated")
}
var characterIDs = slice.Map(relations, func(item domain.SubjectCharacterRelation) model.CharacterID {
return item.CharacterID
})
characters, err := ctl.character.GetByIDs(ctx, characterIDs)
if err != nil {
return s, nil, errgo.Wrap(err, "CharacterRepo.GetByIDs")
}
var results = make([]model.SubjectCharacterRelation, len(relations))
for i, rel := range relations {
results[i] = model.SubjectCharacterRelation{
Character: characters[rel.CharacterID],
TypeID: rel.TypeID,
}
}
return s, results, nil
}