| /* |
| 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 ( |
| "reflect" |
| |
| "github.com/apache/incubator-devlake/models/domainlayer" |
| "github.com/apache/incubator-devlake/models/domainlayer/crossdomain" |
| "github.com/apache/incubator-devlake/models/domainlayer/didgen" |
| "github.com/apache/incubator-devlake/plugins/core" |
| "github.com/apache/incubator-devlake/plugins/core/dal" |
| gitlabModels "github.com/apache/incubator-devlake/plugins/gitlab/models" |
| "github.com/apache/incubator-devlake/plugins/helper" |
| ) |
| |
| var ConvertAccountsMeta = core.SubTaskMeta{ |
| Name: "convertAccounts", |
| EntryPoint: ConvertAccounts, |
| EnabledByDefault: true, |
| Description: "Convert tool layer table gitlab_users into domain layer table users", |
| DomainTypes: []string{core.DOMAIN_TYPE_CROSS}, |
| } |
| |
| func ConvertAccounts(taskCtx core.SubTaskContext) error { |
| db := taskCtx.GetDal() |
| data := taskCtx.GetData().(*GitlabTaskData) |
| |
| cursor, err := db.Cursor(dal.From(gitlabModels.GitlabAccount{})) |
| if err != nil { |
| return err |
| } |
| defer cursor.Close() |
| |
| accountIdGen := didgen.NewDomainIdGenerator(&gitlabModels.GitlabAccount{}) |
| converter, err := helper.NewDataConverter(helper.DataConverterArgs{ |
| InputRowType: reflect.TypeOf(gitlabModels.GitlabAccount{}), |
| Input: cursor, |
| RawDataSubTaskArgs: helper.RawDataSubTaskArgs{ |
| Ctx: taskCtx, |
| Params: GitlabApiParams{ |
| ConnectionId: data.Options.ConnectionId, |
| ProjectId: data.Options.ProjectId, |
| }, |
| Table: RAW_USER_TABLE, |
| }, |
| Convert: func(inputRow interface{}) ([]interface{}, error) { |
| GitlabAccount := inputRow.(*gitlabModels.GitlabAccount) |
| domainUser := &crossdomain.Account{ |
| DomainEntity: domainlayer.DomainEntity{Id: accountIdGen.Generate(data.Options.ConnectionId, GitlabAccount.GitlabId)}, |
| UserName: GitlabAccount.Username, |
| FullName: GitlabAccount.Name, |
| Email: GitlabAccount.Email, |
| AvatarUrl: GitlabAccount.AvatarUrl, |
| } |
| |
| return []interface{}{ |
| domainUser, |
| }, nil |
| }, |
| }) |
| |
| if err != nil { |
| return err |
| } |
| |
| return converter.Execute() |
| } |