You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
package mutations
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.aiterp.net/rpdata/api/graphql/resolver/types"
|
|
"git.aiterp.net/rpdata/api/internal/session"
|
|
"git.aiterp.net/rpdata/api/model/change"
|
|
"git.aiterp.net/rpdata/api/model/channel"
|
|
)
|
|
|
|
// ChannelEditArgs is input for the editChannel mutation
|
|
type ChannelEditArgs struct {
|
|
Input *struct {
|
|
Name string
|
|
Logged *bool
|
|
Hub *bool
|
|
EventName *string
|
|
LocationName *string
|
|
}
|
|
}
|
|
|
|
// EditChannel resolves the editChannel mutation
|
|
func (r *MutationResolver) EditChannel(ctx context.Context, args *ChannelEditArgs) (*types.ChannelResolver, error) {
|
|
input := args.Input
|
|
|
|
user := session.FromContext(ctx).User()
|
|
if user == nil || !user.Permitted("channel.edit") {
|
|
return nil, ErrUnauthorized
|
|
}
|
|
|
|
channel, err := channel.FindName(input.Name)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = channel.Edit(input.Logged, input.Hub, input.EventName, input.LocationName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
go change.Submit("Channel", "edit", user.ID, channel.Name, map[string]interface{}{
|
|
"logged": input.Logged,
|
|
"hub": input.Hub,
|
|
"location": input.LocationName,
|
|
"event": input.EventName,
|
|
})
|
|
|
|
return &types.ChannelResolver{C: channel}, nil
|
|
}
|