2020-05-13 12:07:44 +00:00
|
|
|
package alps
|
2019-12-09 15:02:12 +00:00
|
|
|
|
|
|
|
import (
|
2019-12-09 16:54:24 +00:00
|
|
|
"html/template"
|
2019-12-09 15:02:12 +00:00
|
|
|
|
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
)
|
|
|
|
|
2020-01-20 21:04:50 +00:00
|
|
|
// PluginDir is the path to the plugins directory.
|
|
|
|
const PluginDir = "plugins"
|
2019-12-11 14:08:31 +00:00
|
|
|
|
2020-05-13 12:07:44 +00:00
|
|
|
// Plugin extends alps with additional functionality.
|
2019-12-09 15:02:12 +00:00
|
|
|
type Plugin interface {
|
2019-12-11 14:24:39 +00:00
|
|
|
// Name should return the plugin name.
|
2019-12-09 15:02:12 +00:00
|
|
|
Name() string
|
2019-12-11 14:24:39 +00:00
|
|
|
// LoadTemplate populates t with the plugin's functions and templates.
|
2019-12-11 14:08:31 +00:00
|
|
|
LoadTemplate(t *template.Template) error
|
2019-12-11 14:24:39 +00:00
|
|
|
// SetRoutes populates group with the plugin's routes.
|
2019-12-10 15:00:50 +00:00
|
|
|
SetRoutes(group *echo.Group)
|
2019-12-11 14:24:39 +00:00
|
|
|
// Inject is called prior to rendering a template. It can extend the
|
|
|
|
// template data by setting new items in the Extra map.
|
2019-12-17 14:14:15 +00:00
|
|
|
Inject(ctx *Context, name string, data RenderData) error
|
2019-12-11 14:24:39 +00:00
|
|
|
// Close is called when the plugin is unloaded.
|
2019-12-09 15:02:12 +00:00
|
|
|
Close() error
|
|
|
|
}
|
2019-12-16 11:26:26 +00:00
|
|
|
|
2020-01-20 20:37:28 +00:00
|
|
|
// PluginLoaderFunc loads plugins for the provided server.
|
|
|
|
type PluginLoaderFunc func(*Server) ([]Plugin, error)
|
2019-12-16 11:26:26 +00:00
|
|
|
|
2020-01-20 20:37:28 +00:00
|
|
|
var pluginLoaders []PluginLoaderFunc
|
|
|
|
|
|
|
|
// RegisterPluginLoader registers a plugin loader. The loader will be called on
|
|
|
|
// server start-up and reload.
|
|
|
|
func RegisterPluginLoader(f PluginLoaderFunc) {
|
|
|
|
pluginLoaders = append(pluginLoaders, f)
|
2019-12-16 11:26:26 +00:00
|
|
|
}
|