blob: bc768fa689629e43356f76801ff424dc7ba43d0d [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package plugin
import (
"net/http"
"github.com/apache/incubator-devlake/server/services/remote/models"
"github.com/mitchellh/mapstructure"
"github.com/apache/incubator-devlake/core/errors"
"github.com/apache/incubator-devlake/core/plugin"
"github.com/apache/incubator-devlake/helpers/pluginhelper/api"
)
type request struct {
Data []map[string]any `json:"data"`
}
func (pa *pluginAPI) PutScope(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) {
var scopes request
err := errors.Convert(mapstructure.Decode(input.Body, &scopes))
if err != nil {
return nil, errors.BadInput.Wrap(err, "decoding scope error")
}
var slice []*models.RemoteScope
for _, scope := range scopes.Data {
obj := pa.scopeType.NewValue().(models.RemoteScope)
err = models.MapTo(scope, obj)
if err != nil {
return nil, err
}
slice = append(slice, &obj)
}
apiScopes, err := scopeHelper.PutScopes(input, slice)
if err != nil {
return nil, err
}
response, err := convertScopeResponse(apiScopes...)
if err != nil {
return nil, err
}
return &plugin.ApiResourceOutput{Body: response, Status: http.StatusOK}, nil
}
func (pa *pluginAPI) UpdateScope(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) {
apiScopes, err := scopeHelper.UpdateScope(input)
if err != nil {
return nil, err
}
response, err := convertScopeResponse(apiScopes)
if err != nil {
return nil, err
}
return &plugin.ApiResourceOutput{Body: response[0], Status: http.StatusOK}, nil
}
func (pa *pluginAPI) ListScopes(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) {
scopes, err := scopeHelper.GetScopes(input)
if err != nil {
return nil, err
}
response, err := convertScopeResponse(scopes...)
if err != nil {
return nil, err
}
return &plugin.ApiResourceOutput{Body: response, Status: http.StatusOK}, nil
}
func (pa *pluginAPI) GetScope(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) {
scope, err := scopeHelper.GetScope(input)
if err != nil {
return nil, err
}
response, err := convertScopeResponse(scope)
if err != nil {
return nil, err
}
return &plugin.ApiResourceOutput{Body: response[0], Status: http.StatusOK}, nil
}
func (pa *pluginAPI) DeleteScope(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) {
err := scopeHelper.DeleteScope(input)
if err != nil {
return nil, err
}
return &plugin.ApiResourceOutput{Body: nil, Status: http.StatusOK}, nil
}
// convertScopeResponse adapt the "remote" scopes to a serializable api.ScopeRes
func convertScopeResponse(scopes ...*api.ScopeRes[models.RemoteScope]) ([]map[string]any, errors.Error) {
responses := make([]map[string]any, len(scopes))
for i, scope := range scopes {
resMap := map[string]any{}
err := models.MapTo(api.ScopeRes[map[string]any]{
Scope: nil, //ignore intentionally
TransformationRuleName: scope.TransformationRuleName,
Blueprints: scope.Blueprints,
}, &resMap)
if err != nil {
return nil, err
}
scopeMap := map[string]any{}
err = models.MapTo(scope.Scope, &scopeMap)
if err != nil {
return nil, err
}
delete(resMap, "Scope")
for k, v := range scopeMap {
resMap[k] = v
}
responses[i] = resMap
}
return responses, nil
}