From 1e5c432e1029601a664454388ae366ef69618d62 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Mon, 25 Jun 2018 12:33:13 -0700 Subject: MM-10702 Moving plugins to use hashicorp go-plugin. (#8978) * Moving plugins to use hashicorp go-plugin. * Tweaks from feedback. --- plugin/pluginenv/options.go | 50 --------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 plugin/pluginenv/options.go (limited to 'plugin/pluginenv/options.go') diff --git a/plugin/pluginenv/options.go b/plugin/pluginenv/options.go deleted file mode 100644 index 43cbdac68..000000000 --- a/plugin/pluginenv/options.go +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -package pluginenv - -import ( - "github.com/mattermost/mattermost-server/model" - "github.com/mattermost/mattermost-server/plugin" - "github.com/mattermost/mattermost-server/plugin/rpcplugin" - "github.com/mattermost/mattermost-server/plugin/rpcplugin/sandbox" -) - -// APIProvider specifies a function that provides an API implementation to each plugin. -func APIProvider(provider APIProviderFunc) Option { - return func(env *Environment) { - env.apiProvider = provider - } -} - -// SupervisorProvider specifies a function that provides a Supervisor implementation to each plugin. -// If unspecified, DefaultSupervisorProvider is used. -func SupervisorProvider(provider SupervisorProviderFunc) Option { - return func(env *Environment) { - env.supervisorProvider = provider - } -} - -// SearchPath specifies a directory that contains the plugins to launch. -func SearchPath(path string) Option { - return func(env *Environment) { - env.searchPath = path - } -} - -// WebappPath specifies the static directory serving the webapp. -func WebappPath(path string) Option { - return func(env *Environment) { - env.webappPath = path - } -} - -// DefaultSupervisorProvider chooses a supervisor based on the system and the plugin's manifest -// contents. E.g. if the manifest specifies a backend executable, it will be given an -// rpcplugin.Supervisor. -func DefaultSupervisorProvider(bundle *model.BundleInfo) (plugin.Supervisor, error) { - if err := sandbox.CheckSupport(); err == nil { - return sandbox.SupervisorProvider(bundle) - } - return rpcplugin.SupervisorProvider(bundle) -} -- cgit v1.2.3-1-g7c22