98 lines
3.3 KiB
Go
98 lines
3.3 KiB
Go
package graph
|
|
|
|
// This file will be automatically regenerated based on the schema, any resolver implementations
|
|
// will be copied through when generating and any unknown code will be moved to the end.
|
|
// Code generated by github.com/99designs/gqlgen version v0.17.49
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/litmuschaos/litmus/chaoscenter/graphql/server/graph/model"
|
|
"github.com/litmuschaos/litmus/chaoscenter/graphql/server/pkg/authorization"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// CreateImageRegistry is the resolver for the createImageRegistry field.
|
|
func (r *mutationResolver) CreateImageRegistry(ctx context.Context, projectID string, imageRegistryInfo model.ImageRegistryInput) (*model.ImageRegistryResponse, error) {
|
|
err := authorization.ValidateRole(ctx, projectID,
|
|
authorization.MutationRbacRules[authorization.CreateImageRegistry],
|
|
model.InvitationAccepted.String())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ciResponse, err := r.imageRegistryService.CreateImageRegistry(ctx, projectID, imageRegistryInfo)
|
|
if err != nil {
|
|
logrus.Error(err)
|
|
}
|
|
return ciResponse, err
|
|
}
|
|
|
|
// UpdateImageRegistry is the resolver for the updateImageRegistry field.
|
|
func (r *mutationResolver) UpdateImageRegistry(ctx context.Context, imageRegistryID string, projectID string, imageRegistryInfo model.ImageRegistryInput) (*model.ImageRegistryResponse, error) {
|
|
err := authorization.ValidateRole(ctx, projectID,
|
|
authorization.MutationRbacRules[authorization.UpdateImageRegistry],
|
|
model.InvitationAccepted.String())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
uiRegistry, err := r.imageRegistryService.UpdateImageRegistry(ctx, imageRegistryID, projectID, imageRegistryInfo)
|
|
if err != nil {
|
|
logrus.Error(err)
|
|
}
|
|
|
|
return uiRegistry, err
|
|
}
|
|
|
|
// DeleteImageRegistry is the resolver for the deleteImageRegistry field.
|
|
func (r *mutationResolver) DeleteImageRegistry(ctx context.Context, imageRegistryID string, projectID string) (string, error) {
|
|
err := authorization.ValidateRole(ctx, projectID,
|
|
authorization.MutationRbacRules[authorization.DeleteImageRegistry],
|
|
model.InvitationAccepted.String())
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
diRegistry, err := r.imageRegistryService.DeleteImageRegistry(ctx, imageRegistryID, projectID)
|
|
if err != nil {
|
|
logrus.Error(err)
|
|
}
|
|
|
|
return diRegistry, err
|
|
}
|
|
|
|
// ListImageRegistry is the resolver for the listImageRegistry field.
|
|
func (r *queryResolver) ListImageRegistry(ctx context.Context, projectID string) ([]*model.ImageRegistryResponse, error) {
|
|
err := authorization.ValidateRole(ctx, projectID,
|
|
authorization.MutationRbacRules[authorization.ListImageRegistry],
|
|
model.InvitationAccepted.String())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
imageRegistries, err := r.imageRegistryService.ListImageRegistries(ctx, projectID)
|
|
if err != nil {
|
|
logrus.Error(err)
|
|
}
|
|
|
|
return imageRegistries, err
|
|
}
|
|
|
|
// GetImageRegistry is the resolver for the getImageRegistry field.
|
|
func (r *queryResolver) GetImageRegistry(ctx context.Context, projectID string) (*model.ImageRegistryResponse, error) {
|
|
err := authorization.ValidateRole(ctx, projectID,
|
|
authorization.MutationRbacRules[authorization.GetImageRegistry],
|
|
model.InvitationAccepted.String())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
imageRegistry, err := r.imageRegistryService.GetImageRegistry(ctx, projectID)
|
|
if err != nil {
|
|
logrus.Error(err)
|
|
}
|
|
|
|
return imageRegistry, err
|
|
}
|