| /* |
| 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 api |
| |
| import ( |
| "context" |
| "net/http" |
| |
| "github.com/apache/incubator-devlake/core/errors" |
| "github.com/apache/incubator-devlake/core/plugin" |
| "github.com/apache/incubator-devlake/helpers/pluginhelper/api" |
| "github.com/apache/incubator-devlake/plugins/ae/models" |
| _ "github.com/apache/incubator-devlake/server/api/shared" |
| ) |
| |
| type ApiMeResponse struct { |
| Name string `json:"name"` |
| } |
| |
| func testConnection(ctx context.Context, connection models.AeConn) (*plugin.ApiResourceOutput, errors.Error) { |
| // validate |
| if vld != nil { |
| if err := vld.Struct(connection); err != nil { |
| return nil, errors.Default.Wrap(err, "error validating target") |
| } |
| } |
| apiClient, err := api.NewApiClientFromConnection(ctx, basicRes, &connection) |
| if err != nil { |
| return nil, err |
| } |
| res, err := apiClient.Get("projects", nil, nil) |
| if err != nil { |
| return nil, err |
| } |
| switch res.StatusCode { |
| case 200: // right StatusCode |
| return &plugin.ApiResourceOutput{Body: true, Status: 200}, nil |
| case 401: // error secretKey or nonceStr |
| return &plugin.ApiResourceOutput{Body: false, Status: http.StatusBadRequest}, nil |
| default: // unknown what happen , back to user |
| return &plugin.ApiResourceOutput{Body: res.Body, Status: res.StatusCode}, nil |
| } |
| } |
| |
| // TestConnection test ae connection |
| // @Summary test ae connection |
| // @Description Test AE Connection |
| // @Tags plugins/ae |
| // @Param body body models.AeConn true "json body" |
| // @Success 200 {object} shared.ApiBody "Success" |
| // @Failure 400 {string} errcode.Error "Bad Request" |
| // @Failure 500 {string} errcode.Error "Internal Error" |
| // @Router /plugins/ae/test [POST] |
| func TestConnection(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| // decode |
| var err errors.Error |
| var connection models.AeConn |
| if err = api.Decode(input.Body, &connection, vld); err != nil { |
| return nil, errors.BadInput.Wrap(err, "could not decode request parameters") |
| } |
| result, err := testConnection(context.TODO(), connection) |
| if err != nil { |
| return nil, plugin.WrapTestConnectionErrResp(basicRes, err) |
| } |
| return &plugin.ApiResourceOutput{Body: result, Status: http.StatusOK}, nil |
| } |
| |
| // TestExistingConnection test ae connection |
| // @Summary test ae connection |
| // @Description Test AE Connection |
| // @Tags plugins/ae |
| // @Param connectionId path int true "connection ID" |
| // @Success 200 {object} shared.ApiBody "Success" |
| // @Failure 400 {string} errcode.Error "Bad Request" |
| // @Failure 500 {string} errcode.Error "Internal Error" |
| // @Router /plugins/ae/connections/{connectionId}/test [POST] |
| func TestExistingConnection(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| // decode |
| connection := &models.AeConnection{} |
| err := connectionHelper.First(connection, input.Params) |
| if err != nil { |
| return nil, errors.BadInput.Wrap(err, "find connection from db") |
| } |
| if err := api.DecodeMapStruct(input.Body, connection, false); err != nil { |
| return nil, err |
| } |
| result, err := testConnection(context.TODO(), connection.AeConn) |
| if err != nil { |
| return nil, plugin.WrapTestConnectionErrResp(basicRes, err) |
| } |
| return &plugin.ApiResourceOutput{Body: result, Status: http.StatusOK}, nil |
| } |
| |
| // @Summary create ae connection |
| // @Description Create AE connection |
| // @Tags plugins/ae |
| // @Param body body models.AeConnection true "json body" |
| // @Success 200 {object} models.AeConnection "Success" |
| // @Failure 400 {string} errcode.Error "Bad Request" |
| // @Failure 500 {string} errcode.Error "Internal Error" |
| // @Router /plugins/ae/connections [POST] |
| func PostConnections(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| connection := &models.AeConnection{} |
| err := connectionHelper.Create(connection, input) |
| if err != nil { |
| return nil, err |
| } |
| return &plugin.ApiResourceOutput{Body: connection.Sanitize(), Status: http.StatusOK}, nil |
| } |
| |
| // @Summary get all ae connections |
| // @Description Get all AE connections |
| // @Tags plugins/ae |
| // @Success 200 {object} []models.AeConnection "Success" |
| // @Failure 400 {string} errcode.Error "Bad Request" |
| // @Failure 500 {string} errcode.Error "Internal Error" |
| // @Router /plugins/ae/connections [GET] |
| func ListConnections(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| var connections []models.AeConnection |
| err := connectionHelper.List(&connections) |
| if err != nil { |
| return nil, err |
| } |
| for idx, c := range connections { |
| connections[idx] = c.Sanitize() |
| } |
| return &plugin.ApiResourceOutput{Body: connections, Status: http.StatusOK}, nil |
| } |
| |
| // @Summary get ae connection detail |
| // @Description Get AE connection detail |
| // @Tags plugins/ae |
| // @Success 200 {object} models.AeConnection "Success" |
| // @Failure 400 {string} errcode.Error "Bad Request" |
| // @Failure 500 {string} errcode.Error "Internal Error" |
| // @Router /plugins/ae/connections/{connectionId} [GET] |
| func GetConnection(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| connection := &models.AeConnection{} |
| err := connectionHelper.First(connection, input.Params) |
| return &plugin.ApiResourceOutput{Body: connection.Sanitize()}, err |
| } |
| |
| // @Summary patch ae connection |
| // @Description Patch AE connection |
| // @Tags plugins/ae |
| // @Param body body models.AeConnection true "json body" |
| // @Success 200 {object} models.AeConnection "Success" |
| // @Failure 400 {string} errcode.Error "Bad Request" |
| // @Failure 500 {string} errcode.Error "Internal Error" |
| // @Router /plugins/ae/connections/{connectionId} [PATCH] |
| func PatchConnection(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| connection := &models.AeConnection{} |
| if err := connectionHelper.First(&connection, input.Params); err != nil { |
| return nil, err |
| } |
| if err := (&models.AeConnection{}).MergeFromRequest(connection, input.Body); err != nil { |
| return nil, errors.Convert(err) |
| } |
| if err := connectionHelper.SaveWithCreateOrUpdate(connection); err != nil { |
| return nil, err |
| } |
| return &plugin.ApiResourceOutput{Body: connection.Sanitize(), Status: http.StatusOK}, nil |
| } |
| |
| // @Summary delete a ae connection |
| // @Description Delete a AE connection |
| // @Tags plugins/ae |
| // @Success 200 {object} models.AeConnection "Success" |
| // @Failure 400 {string} errcode.Error "Bad Request" |
| // @Failure 409 {object} services.BlueprintProjectPairs "References exist to this connection" |
| // @Failure 500 {string} errcode.Error "Internal Error" |
| // @Router /plugins/ae/connections/{connectionId} [DELETE] |
| func DeleteConnection(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| conn := &models.AeConnection{} |
| output, err := connectionHelper.Delete(conn, input) |
| if err != nil { |
| return output, err |
| } |
| output.Body = conn.Sanitize() |
| return output, nil |
| |
| } |