Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion plugins/github/tasks/api_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@ package tasks

import (
"fmt"
"github.com/apache/incubator-devlake/errors"
"net/http"
"strconv"
"strings"
"time"

"github.com/apache/incubator-devlake/errors"

"github.com/apache/incubator-devlake/plugins/github/models"

"github.com/apache/incubator-devlake/plugins/core"
Expand Down
7 changes: 6 additions & 1 deletion plugins/helper/api_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import (
"crypto/tls"
"encoding/json"
"fmt"
"github.com/apache/incubator-devlake/errors"
"io"
"net/http"
"net/url"
Expand All @@ -32,6 +31,8 @@ import (
"time"
"unicode/utf8"

"github.com/apache/incubator-devlake/errors"

"github.com/apache/incubator-devlake/plugins/core"
"github.com/apache/incubator-devlake/plugins/helper/common"
"github.com/apache/incubator-devlake/utils"
Expand Down Expand Up @@ -119,6 +120,10 @@ func (apiClient *ApiClient) Setup(
apiClient.SetHeaders(headers)
}

func (apiClient *ApiClient) GetHttpClient() *http.Client {
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm exposing the inner http client because I need one for
graphql.NewClient(connection.Endpoint+graphql, apiClient.GetHttpClient()) in plugins/linear/tasks/graphql_client.go

Not sure how should I construct the graphql client if not

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you'll need to add a doc comment on top of this function to make the linter happy (since it's an exported function)

return apiClient.client
}

// SetEndpoint FIXME ...
func (apiClient *ApiClient) SetEndpoint(endpoint string) {
apiClient.endpoint = endpoint
Expand Down
70 changes: 70 additions & 0 deletions plugins/linear/api/blueprint.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

generated by the plugin template

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, this is for asf

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 (
"encoding/json"

"github.com/apache/incubator-devlake/errors"
"github.com/apache/incubator-devlake/plugins/core"
"github.com/apache/incubator-devlake/plugins/helper"
"github.com/apache/incubator-devlake/plugins/linear/tasks"
)

func MakePipelinePlan(subtaskMetas []core.SubTaskMeta, connectionId uint64, scope []*core.BlueprintScopeV100) (core.PipelinePlan, errors.Error) {
var err error
plan := make(core.PipelinePlan, len(scope))
for i, scopeElem := range scope {
taskOptions := make(map[string]interface{})
err = json.Unmarshal(scopeElem.Options, &taskOptions)
if err != nil {
return nil, errors.Default.Wrap(err, "error unmarshalling task options")
}
taskOptions["connectionId"] = connectionId

//TODO Add transformation rules to task options

/*
var transformationRules tasks.TransformationRules
if len(scopeElem.Transformation) > 0 {
err = json.Unmarshal(scopeElem.Transformation, &transformationRules)
if err != nil {
return nil, err
}
}
*/
//taskOptions["transformationRules"] = transformationRules
_, err := tasks.DecodeAndValidateTaskOptions(taskOptions)
if err != nil {
return nil, err
}
// subtasks
subtasks, err := helper.MakePipelinePlanSubtasks(subtaskMetas, scopeElem.Entities)
if err != nil {
return nil, err
}
plan[i] = core.PipelineStage{
{
Plugin: "linear",
Subtasks: subtasks,
Options: taskOptions,
},
}
}
return plan, nil
}
149 changes: 149 additions & 0 deletions plugins/linear/api/connection.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
/*
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

generated by the plugin template

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"
"fmt"
"net/http"
"time"

"github.com/apache/incubator-devlake/errors"
"github.com/apache/incubator-devlake/plugins/core"
"github.com/apache/incubator-devlake/plugins/helper"
"github.com/apache/incubator-devlake/plugins/linear/models"
)

// TODO Please modify the following code to fit your needs
func TestConnection(input *core.ApiResourceInput) (*core.ApiResourceOutput, errors.Error) {
// decode
var err errors.Error
var connection models.TestConnectionRequest
if err = helper.Decode(input.Body, &connection, vld); err != nil {
return nil, err
}
// test connection
apiClient, err := helper.NewApiClient(
context.TODO(),
connection.Endpoint,
map[string]string{
"Authorization": fmt.Sprintf("Bearer %v", connection.Token),
},
3*time.Second,
connection.Proxy,
basicRes,
)
if err != nil {
return nil, err
}

res, err := apiClient.Get("user", nil, nil)
if err != nil {
return nil, err
}
resBody := &models.ApiUserResponse{}
err = helper.UnmarshalResponse(res, resBody)
if err != nil {
return nil, err
}

if res.StatusCode != http.StatusOK {
return nil, errors.HttpStatus(res.StatusCode).New(fmt.Sprintf("unexpected status code: %d", res.StatusCode))
}
return nil, nil
}

//TODO Please modify the folowing code to adapt to your plugin
/*
POST /plugins/linear/connections
{
"name": "Linear data connection name",
"endpoint": "Linear api endpoint, i.e. https://example.com",
"username": "username, usually should be email address",
"password": "Linear api access token"
}
*/
func PostConnections(input *core.ApiResourceInput) (*core.ApiResourceOutput, errors.Error) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the API you need to hit to create a connection object for Linear. You will need to pass in a JSON struct as part of the body of the http call, and this JSON struct should take the structure of your models.LinearConnection struct as key-value pairs.

// update from request and save to database
connection := &models.LinearConnection{}
err := connectionHelper.Create(connection, input)
if err != nil {
return nil, err
}
return &core.ApiResourceOutput{Body: connection, Status: http.StatusOK}, nil
}

//TODO Please modify the folowing code to adapt to your plugin
/*
PATCH /plugins/Linear/connections/:connectionId
{
"name": "Linear data connection name",
"endpoint": "Linear api endpoint, i.e. https://example.com",
"username": "username, usually should be email address",
"password": "Linear api access token"
}
*/
func PatchConnection(input *core.ApiResourceInput) (*core.ApiResourceOutput, errors.Error) {
connection := &models.LinearConnection{}
err := connectionHelper.Patch(connection, input)
if err != nil {
return nil, err
}
return &core.ApiResourceOutput{Body: connection}, nil
}

/*
DELETE /plugins/Linear/connections/:connectionId
*/
func DeleteConnection(input *core.ApiResourceInput) (*core.ApiResourceOutput, errors.Error) {
connection := &models.LinearConnection{}
err := connectionHelper.First(connection, input.Params)
if err != nil {
return nil, err
}
err = connectionHelper.Delete(connection)
return &core.ApiResourceOutput{Body: connection}, err
}

/*
GET /plugins/Linear/connections
*/
func ListConnections(input *core.ApiResourceInput) (*core.ApiResourceOutput, errors.Error) {
var connections []models.LinearConnection
err := connectionHelper.List(&connections)
if err != nil {
return nil, err
}
return &core.ApiResourceOutput{Body: connections, Status: http.StatusOK}, nil
}

//TODO Please modify the folowing code to adapt to your plugin
/*
GET /plugins/Linear/connections/:connectionId
{
"name": "Linear data connection name",
"endpoint": "Linear api endpoint, i.e. https://merico.atlassian.net/rest",
"username": "username, usually should be email address",
"password": "Linear api access token"
}
*/
func GetConnection(input *core.ApiResourceInput) (*core.ApiResourceOutput, errors.Error) {
connection := &models.LinearConnection{}
err := connectionHelper.First(connection, input.Params)
return &core.ApiResourceOutput{Body: connection}, err
}
39 changes: 39 additions & 0 deletions plugins/linear/api/init.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

generated by the plugin template

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 (
"github.com/apache/incubator-devlake/plugins/core"
"github.com/apache/incubator-devlake/plugins/helper"
"github.com/go-playground/validator/v10"
"github.com/spf13/viper"
"gorm.io/gorm"
)

var vld *validator.Validate
var connectionHelper *helper.ConnectionApiHelper
var basicRes core.BasicRes

func Init(config *viper.Viper, logger core.Logger, database *gorm.DB) {
basicRes = helper.NewDefaultBasicRes(config, logger, database)
vld = validator.New()
connectionHelper = helper.NewConnectionHelper(
basicRes,
vld,
)
}
Loading