mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-20 08:21:09 -05:00
* plugin sandboxing * remove unused type * better symlink handling, better remounting, better test, whitespace fixes, and comment on the remounting * fix test compile error * big simplification for getting mount flags * mask statfs flags to the ones we're interested in
50 lines
1.6 KiB
Go
50 lines
1.6 KiB
Go
// 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)
|
|
}
|