| /* |
| 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/server/api/shared" |
| |
| "github.com/apache/incubator-devlake/core/errors" |
| "github.com/apache/incubator-devlake/core/plugin" |
| helper "github.com/apache/incubator-devlake/helpers/pluginhelper/api" |
| "github.com/apache/incubator-devlake/plugins/trello/models" |
| ) |
| |
| type TrelloTestConnResponse struct { |
| shared.ApiBody |
| Connection *models.TrelloConn |
| } |
| |
| func testConnection(ctx context.Context, connection models.TrelloConn) (*TrelloTestConnResponse, errors.Error) { |
| // process input |
| if vld != nil { |
| if err := vld.Struct(connection); err != nil { |
| return nil, errors.Default.Wrap(err, "error validating target") |
| } |
| } |
| apiClient, err := helper.NewApiClientFromConnection(ctx, basicRes, &connection) |
| if err != nil { |
| return nil, err |
| } |
| res, err := apiClient.Get("1/members/me", nil, nil) |
| if err != nil { |
| return nil, errors.BadInput.Wrap(err, "verify token failed") |
| } |
| |
| if res.StatusCode == http.StatusUnauthorized { |
| return nil, errors.HttpStatus(http.StatusBadRequest).New("StatusUnauthorized error while testing connection") |
| } |
| |
| if res.StatusCode != http.StatusOK { |
| return nil, errors.HttpStatus(res.StatusCode).New("unexpected status code while testing connection") |
| } |
| connection = connection.Sanitize() |
| body := TrelloTestConnResponse{} |
| body.Success = true |
| body.Message = "success" |
| body.Connection = &connection |
| // output |
| return &body, nil |
| } |
| |
| // TestConnection test trello connection |
| // @Summary test trello connection |
| // @Description Test trello Connection |
| // @Tags plugins/trello |
| // @Param body body models.TrelloConn true "json body" |
| // @Success 200 {object} TrelloTestConnResponse "Success" |
| // @Failure 400 {string} errcode.Error "Bad Request" |
| // @Failure 500 {string} errcode.Error "Internal Error" |
| // @Router /plugins/trello/test [POST] |
| func TestConnection(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| // process input |
| var connection models.TrelloConn |
| err := helper.Decode(input.Body, &connection, vld) |
| if err != nil { |
| return nil, err |
| } |
| // test connection |
| 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 trello connection options |
| // @Summary test trello connection |
| // @Description Test trello Connection |
| // @Tags plugins/trello |
| // @Param connectionId path int true "connection ID" |
| // @Success 200 {object} TrelloTestConnResponse "Success" |
| // @Failure 400 {string} errcode.Error "Bad Request" |
| // @Failure 500 {string} errcode.Error "Internal Error" |
| // @Router /plugins/trello/connections/{connectionId}/test [POST] |
| func TestExistingConnection(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| connection := &models.TrelloConnection{} |
| err := connectionHelper.First(connection, input.Params) |
| if err != nil { |
| return nil, errors.BadInput.Wrap(err, "find connection from db") |
| } |
| if err := helper.DecodeMapStruct(input.Body, connection, false); err != nil { |
| return nil, err |
| } |
| testConnectionResult, testConnectionErr := testConnection(context.TODO(), connection.TrelloConn) |
| if testConnectionErr != nil { |
| return nil, plugin.WrapTestConnectionErrResp(basicRes, testConnectionErr) |
| } |
| return &plugin.ApiResourceOutput{Body: testConnectionResult, Status: http.StatusOK}, nil |
| } |
| |
| // @Summary create trello connection |
| // @Description Create trello connection |
| // @Tags plugins/trello |
| // @Param body body models.TrelloConnection true "json body" |
| // @Success 200 {object} models.TrelloConnection |
| // @Failure 400 {string} errcode.Error "Bad Request" |
| // @Failure 500 {string} errcode.Error "Internal Error" |
| // @Router /plugins/trello/connections [POST] |
| func PostConnections(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| // update from request and save to database |
| connection := &models.TrelloConnection{} |
| err := connectionHelper.Create(connection, input) |
| if err != nil { |
| return nil, err |
| } |
| return &plugin.ApiResourceOutput{Body: connection.Sanitize(), Status: http.StatusOK}, nil |
| } |
| |
| // @Summary patch trello connection |
| // @Description Patch trello connection |
| // @Tags plugins/trello |
| // @Param body body models.TrelloConnection true "json body" |
| // @Success 200 {object} models.TrelloConnection |
| // @Failure 400 {string} errcode.Error "Bad Request" |
| // @Failure 500 {string} errcode.Error "Internal Error" |
| // @Router /plugins/trello/connections/{connectionId} [PATCH] |
| func PatchConnection(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| connection := &models.TrelloConnection{} |
| if err := connectionHelper.First(&connection, input.Params); err != nil { |
| return nil, err |
| } |
| if err := (&models.TrelloConnection{}).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()}, nil |
| } |
| |
| // @Summary delete a trello connection |
| // @Description Delete a trello connection |
| // @Tags plugins/trello |
| // @Success 200 {object} models.TrelloConnection |
| // @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/trello/connections/{connectionId} [DELETE] |
| func DeleteConnection(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| conn := &models.TrelloConnection{} |
| output, err := connectionHelper.Delete(conn, input) |
| if err != nil { |
| return output, err |
| } |
| output.Body = conn.Sanitize() |
| return output, nil |
| |
| } |
| |
| // @Summary get all trello connections |
| // @Description Get all trello connections |
| // @Tags plugins/trello |
| // @Success 200 {object} []models.TrelloConnection |
| // @Failure 400 {string} errcode.Error "Bad Request" |
| // @Failure 500 {string} errcode.Error "Internal Error" |
| // @Router /plugins/trello/connections [GET] |
| func ListConnections(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| var connections []models.TrelloConnection |
| 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 trello connection detail |
| // @Description Get trello connection detail |
| // @Tags plugins/trello |
| // @Success 200 {object} models.TrelloConnection |
| // @Failure 400 {string} errcode.Error "Bad Request" |
| // @Failure 500 {string} errcode.Error "Internal Error" |
| // @Router /plugins/trello/connections/{connectionId} [GET] |
| func GetConnection(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| connection := &models.TrelloConnection{} |
| err := connectionHelper.First(connection, input.Params) |
| return &plugin.ApiResourceOutput{Body: connection.Sanitize()}, err |
| } |