backend/plugins/opsgenie/impl/impl.go (155 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 impl import ( "fmt" "github.com/apache/incubator-devlake/core/context" "github.com/apache/incubator-devlake/core/dal" "github.com/apache/incubator-devlake/core/errors" coreModels "github.com/apache/incubator-devlake/core/models" "github.com/apache/incubator-devlake/core/plugin" helper "github.com/apache/incubator-devlake/helpers/pluginhelper/api" "github.com/apache/incubator-devlake/plugins/opsgenie/api" "github.com/apache/incubator-devlake/plugins/opsgenie/models" "github.com/apache/incubator-devlake/plugins/opsgenie/models/migrationscripts" "github.com/apache/incubator-devlake/plugins/opsgenie/tasks" ) // make sure interface is implemented var _ interface { plugin.PluginMeta plugin.PluginInit plugin.PluginModel plugin.PluginMigration plugin.PluginTask plugin.PluginApi plugin.DataSourcePluginBlueprintV200 plugin.CloseablePluginTask plugin.PluginSource } = (*Opsgenie)(nil) type Opsgenie struct{} func (p Opsgenie) Init(basicRes context.BasicRes) errors.Error { api.Init(basicRes, p) return nil } func (p Opsgenie) Description() string { return "collect some Opsgenie data" } // PkgPath information lost when compiled as plugin(.so) func (p Opsgenie) RootPkgPath() string { return "github.com/apache/incubator-devlake/plugins/opsgenie" } func (p Opsgenie) Name() string { return "opsgenie" } func (p Opsgenie) Scope() plugin.ToolLayerScope { return &models.Service{} } func (p Opsgenie) ScopeConfig() dal.Tabler { return nil } func (p Opsgenie) Connection() dal.Tabler { return &models.OpsgenieConnection{} } func (p Opsgenie) GetTablesInfo() []dal.Tabler { return []dal.Tabler{ &models.OpsgenieConnection{}, &models.Service{}, &models.Incident{}, &models.Responder{}, &models.Assignment{}, &models.User{}, &models.Team{}, &models.OpsenieScopeConfig{}, } } func (p Opsgenie) SubTaskMetas() []plugin.SubTaskMeta { return []plugin.SubTaskMeta{ tasks.CollectUsersMeta, tasks.ExtractUsersMeta, tasks.ConvertUsersMeta, tasks.CollectTeamsMeta, tasks.ExtractTeamsMeta, tasks.ConvertTeamsMeta, tasks.CollectIncidentsMeta, tasks.ExtractIncidentsMeta, tasks.ConvertIncidentsMeta, tasks.ConvertServicesMeta, } } func (p Opsgenie) PrepareTaskData(taskCtx plugin.TaskContext, options map[string]interface{}) (interface{}, errors.Error) { op, err := tasks.DecodeAndValidateTaskOptions(options) if err != nil { return nil, err } connectionHelper := helper.NewConnectionHelper( taskCtx, nil, p.Name(), ) connection := &models.OpsgenieConnection{} err = connectionHelper.FirstById(connection, op.ConnectionId) if err != nil { return nil, errors.Default.Wrap(err, "unable to get Opsgenie connection by the given connection ID") } client, err := helper.NewApiClientFromConnection(taskCtx.GetContext(), taskCtx, connection) if err != nil { return nil, err } asyncClient, err := helper.CreateAsyncApiClient(taskCtx, client, nil) if err != nil { return nil, err } return &tasks.OpsgenieTaskData{ Options: op, Client: asyncClient, }, nil } func (p Opsgenie) MigrationScripts() []plugin.MigrationScript { return migrationscripts.All() } func (p Opsgenie) Close(taskCtx plugin.TaskContext) errors.Error { _, ok := taskCtx.GetData().(*tasks.OpsgenieTaskData) if !ok { return errors.Default.New(fmt.Sprintf("GetData failed when try to close %+v", taskCtx)) } return nil } func (p Opsgenie) ApiResources() map[string]map[string]plugin.ApiResourceHandler { return map[string]map[string]plugin.ApiResourceHandler{ "test": { "POST": api.TestConnection, }, "connections": { "POST": api.PostConnections, "GET": api.ListConnections, }, "connections/:connectionId": { "GET": api.GetConnection, "PATCH": api.PatchConnection, "DELETE": api.DeleteConnection, }, "connections/:connectionId/test": { "POST": api.TestExistingConnection, }, "connections/:connectionId/remote-scopes": { "GET": api.RemoteScopes, }, "connections/:connectionId/search-remote-scopes": { "GET": api.SearchRemoteScopes, }, "connections/:connectionId/scopes": { "GET": api.GetScopeList, "PUT": api.PutScope, }, "connections/:connectionId/scopes/:scopeId/latest-sync-state": { "GET": api.GetScopeLatestSyncState, }, "connections/:connectionId/scopes/:scopeId": { "GET": api.GetScope, "PATCH": api.UpdateScope, "DELETE": api.DeleteScope, }, } } func (p Opsgenie) MakeDataSourcePipelinePlanV200( connectionId uint64, scopes []*coreModels.BlueprintScope, ) (coreModels.PipelinePlan, []plugin.Scope, errors.Error) { return api.MakeDataSourcePipelinePlanV200(p.SubTaskMetas(), connectionId, scopes) }