blob: 5129db2f63ca38aaa7319f0a578bfc9a6f4aee64 [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 tasks
import (
"encoding/json"
goerror "errors"
"fmt"
"github.com/apache/incubator-devlake/errors"
"gorm.io/gorm"
"net/http"
"net/url"
"reflect"
"time"
"github.com/apache/incubator-devlake/plugins/core"
"github.com/apache/incubator-devlake/plugins/core/dal"
"github.com/apache/incubator-devlake/plugins/helper"
"github.com/apache/incubator-devlake/plugins/tapd/models"
)
const RAW_BUG_COMMIT_TABLE = "tapd_api_bug_commits"
var _ core.SubTaskEntryPoint = CollectBugCommits
type SimpleBug struct {
Id uint64
}
func CollectBugCommits(taskCtx core.SubTaskContext) errors.Error {
rawDataSubTaskArgs, data := CreateRawDataSubTaskArgs(taskCtx, RAW_BUG_COMMIT_TABLE, false)
db := taskCtx.GetDal()
logger := taskCtx.GetLogger()
logger.Info("collect issueCommits")
since := data.Since
incremental := false
if since == nil {
// user didn't specify a time range to sync, try load from database
var latestUpdated models.TapdBugCommit
clauses := []dal.Clause{
dal.Where("connection_id = ? and workspace_id = ?", data.Options.ConnectionId, data.Options.WorkspaceId),
dal.Orderby("created DESC"),
}
err := db.First(&latestUpdated, clauses...)
if err != nil && !goerror.Is(err, gorm.ErrRecordNotFound) {
return errors.NotFound.Wrap(err, "failed to get latest tapd changelog record")
}
if latestUpdated.Id > 0 {
since = (*time.Time)(latestUpdated.Created)
incremental = true
}
}
clauses := []dal.Clause{
dal.Select("id"),
dal.From(&models.TapdBug{}),
dal.Where("connection_id = ? and workspace_id = ?", data.Options.ConnectionId, data.Options.WorkspaceId),
}
if since != nil {
clauses = append(clauses, dal.Where("modified > ?", since))
}
cursor, err := db.Cursor(clauses...)
if err != nil {
return err
}
iterator, err := helper.NewDalCursorIterator(db, cursor, reflect.TypeOf(SimpleBug{}))
if err != nil {
return err
}
collector, err := helper.NewApiCollector(helper.ApiCollectorArgs{
RawDataSubTaskArgs: *rawDataSubTaskArgs,
Incremental: incremental,
ApiClient: data.ApiClient,
//PageSize: 100,
Input: iterator,
UrlTemplate: "code_commit_infos",
Query: func(reqData *helper.RequestData) (url.Values, errors.Error) {
input := reqData.Input.(*SimpleBug)
query := url.Values{}
query.Set("workspace_id", fmt.Sprintf("%v", data.Options.WorkspaceId))
query.Set("type", "bug")
query.Set("object_id", fmt.Sprintf("%v", input.Id))
query.Set("order", "created asc")
return query, nil
},
ResponseParser: func(res *http.Response) ([]json.RawMessage, errors.Error) {
var data struct {
Stories []json.RawMessage `json:"data"`
}
err := helper.UnmarshalResponse(res, &data)
return data.Stories, err
},
})
if err != nil {
logger.Error(err, "collect issueCommit error")
return err
}
return collector.Execute()
}
var CollectBugCommitMeta = core.SubTaskMeta{
Name: "collectBugCommits",
EntryPoint: CollectBugCommits,
EnabledByDefault: true,
Description: "collect Tapd issueCommits",
DomainTypes: []string{core.DOMAIN_TYPE_CROSS},
}