forked from statping/statping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.go
78 lines (63 loc) · 1.16 KB
/
plugin.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package types
import (
"github.com/jinzhu/gorm"
"net/http"
)
type Plugin struct {
Name string
Description string
}
type PluginObject struct {
Pluginer
}
type PluginActions interface {
GetInfo() *Info
OnLoad() error
}
type PluginRepos struct {
Plugins []PluginJSON
}
type PluginJSON struct {
Name string `json:"name"`
Description string `json:"description"`
Repo string `json:"repo"`
Author string `json:"author"`
Namespace string `json:"namespace"`
}
type Info struct {
Name string
Description string
Form string
}
type PluginInfo struct {
Info *Info
Routes []*PluginRoute
}
type PluginRouting struct {
URL string
Method string
Handler func(http.ResponseWriter, *http.Request)
}
type Pluginer interface {
Select() *Plugin
}
type Databaser interface {
StatpingDatabase(*gorm.DB)
}
type Router interface {
Routes() []*PluginRoute
AddRoute(string, string, http.HandlerFunc) error
}
type Asseter interface {
Asset(string) ([]byte, error)
}
type PluginRoute struct {
Url string
Method string
Func http.HandlerFunc
}
//
//type Notifier interface {
// notifier.Notifier
// notifier.BasicEvents
//}