backend/plugins/zentao/tasks/account_collector.go (56 lines of code) (raw):

/* 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" "fmt" "net/http" "net/url" "github.com/apache/incubator-devlake/core/errors" "github.com/apache/incubator-devlake/core/plugin" "github.com/apache/incubator-devlake/helpers/pluginhelper/api" ) const RAW_ACCOUNT_TABLE = "zentao_api_accounts" var _ plugin.SubTaskEntryPoint = CollectAccount func CollectAccount(taskCtx plugin.SubTaskContext) errors.Error { data := taskCtx.GetData().(*ZentaoTaskData) collector, err := api.NewApiCollector(api.ApiCollectorArgs{ RawDataSubTaskArgs: api.RawDataSubTaskArgs{ Ctx: taskCtx, Table: RAW_ACCOUNT_TABLE, Options: data.Options, }, ApiClient: data.ApiClient, PageSize: 100, UrlTemplate: "/users", Query: func(reqData *api.RequestData) (url.Values, errors.Error) { query := url.Values{} query.Set("page", fmt.Sprintf("%v", reqData.Pager.Page)) query.Set("limit", fmt.Sprintf("%v", reqData.Pager.Size)) return query, nil }, GetTotalPages: GetTotalPagesFromResponse, ResponseParser: func(res *http.Response) ([]json.RawMessage, errors.Error) { var data struct { Users []json.RawMessage `json:"users"` } err := api.UnmarshalResponse(res, &data) if errors.Is(err, api.ErrEmptyResponse) { return nil, nil } if err != nil { return nil, errors.Default.Wrap(err, "error reading endpoint response by Zentao bug collector") } return data.Users, nil }, }) if err != nil { return err } return collector.Execute() } var CollectAccountMeta = plugin.SubTaskMeta{ Name: "collectAccount", EntryPoint: CollectAccount, EnabledByDefault: true, Description: "Collect Account data from Zentao api", DomainTypes: []string{plugin.DOMAIN_TYPE_TICKET}, }