blob: 8a84beda179ad7057d2fb580343122eb3754b45c [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"
"strconv"
"github.com/apache/incubator-devlake/core/dal"
"github.com/apache/incubator-devlake/core/errors"
"github.com/apache/incubator-devlake/core/plugin"
"github.com/apache/incubator-devlake/helpers/pluginhelper/api"
)
func (pa *pluginAPI) PostTransformationRules(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) {
connectionId, _ := strconv.ParseUint(input.Params["connectionId"], 10, 64)
if connectionId == 0 {
return nil, errors.BadInput.New("invalid connectionId")
}
txRule := pa.txRuleType.New()
input.Body[`connectionId`] = connectionId
err := api.Decode(input.Body, txRule, vld)
if err != nil {
return nil, errors.BadInput.Wrap(err, "error in decoding transformation rule")
}
db := basicRes.GetDal()
err = api.CallDB(db.Create, txRule)
if err != nil {
return nil, err
}
return &plugin.ApiResourceOutput{Body: txRule.Unwrap(), Status: http.StatusOK}, nil
}
func (pa *pluginAPI) PatchTransformationRule(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) {
connectionId, trId, err := extractTrParam(input.Params)
if err != nil {
return nil, err
}
txRule := pa.txRuleType.New()
db := basicRes.GetDal()
err = api.CallDB(db.First, txRule, dal.Where("connection_id = ? AND id = ?", connectionId, trId))
if err != nil {
return nil, errors.Default.Wrap(err, "no transformation rule with given id")
}
input.Body[`connectionId`] = connectionId
err = api.Decode(input.Body, txRule, vld)
if err != nil {
return nil, errors.Default.Wrap(err, "decoding error")
}
return &plugin.ApiResourceOutput{Body: txRule.Unwrap(), Status: http.StatusOK}, nil
}
func (pa *pluginAPI) GetTransformationRule(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) {
txRule := pa.txRuleType.New()
db := basicRes.GetDal()
connectionId, trId, err := extractTrParam(input.Params)
if err != nil {
return nil, err
}
err = api.CallDB(db.First, txRule, dal.Where("connection_id = ? AND id = ?", connectionId, trId))
if err != nil {
return nil, errors.Default.Wrap(err, "no transformation rule with given id")
}
return &plugin.ApiResourceOutput{Body: txRule.Unwrap()}, nil
}
func (pa *pluginAPI) ListTransformationRules(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) {
txRules := pa.txRuleType.NewSlice()
limit, offset := api.GetLimitOffset(input.Query, "pageSize", "page")
if limit > 100 {
return nil, errors.BadInput.New("pageSize cannot exceed 100")
}
db := basicRes.GetDal()
err := api.CallDB(db.All, txRules, dal.Limit(limit), dal.Offset(offset))
if err != nil {
return nil, err
}
return &plugin.ApiResourceOutput{Body: txRules.Unwrap()}, nil
}
func extractTrParam(params map[string]string) (connectionId uint64, transformationId uint64, err errors.Error) {
connectionId, _ = strconv.ParseUint(params["connectionId"], 10, 64)
transformationId, _ = strconv.ParseUint(params["id"], 10, 64)
if connectionId == 0 {
return 0, 0, errors.BadInput.New("invalid connectionId")
}
if transformationId == 0 {
return 0, 0, errors.BadInput.New("invalid transformationId")
}
return connectionId, transformationId, nil
}