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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
package main
import (
"github.com/gin-gonic/gin"
log "github.com/sirupsen/logrus"
"net"
)
type Config struct {
ServerIP string `json:"server_ip" binding:"required,ip" bson:"server_ip"`
FlagRegex string `json:"flag_regex" binding:"required,min=8" bson:"flag_regex"`
AuthRequired bool `json:"auth_required" bson:"auth_required"`
}
type ApplicationContext struct {
Storage Storage
Config Config
Accounts gin.Accounts
RulesManager RulesManager
PcapImporter *PcapImporter
ConnectionsController ConnectionsController
ServicesController *ServicesController
ConnectionStreamsController ConnectionStreamsController
IsConfigured bool
}
func CreateApplicationContext(storage Storage) (*ApplicationContext, error) {
var configWrapper struct {
Config Config
}
if err := storage.Find(Settings).Filter(OrderedDocument{{"_id", "config"}}).
First(&configWrapper); err != nil {
return nil, err
}
var accountsWrapper struct {
Accounts gin.Accounts
}
if err := storage.Find(Settings).Filter(OrderedDocument{{"_id", "accounts"}}).
First(&accountsWrapper); err != nil {
return nil, err
}
if accountsWrapper.Accounts == nil {
accountsWrapper.Accounts = make(gin.Accounts)
}
applicationContext := &ApplicationContext{
Storage: storage,
Config: configWrapper.Config,
Accounts: accountsWrapper.Accounts,
}
applicationContext.configure()
return applicationContext, nil
}
func (sm *ApplicationContext) SetConfig(config Config) {
sm.Config = config
sm.configure()
var upsertResults interface{}
if _, err := sm.Storage.Update(Settings).Upsert(&upsertResults).
Filter(OrderedDocument{{"_id", "config"}}).One(UnorderedDocument{"config": config}); err != nil {
log.WithError(err).WithField("config", config).Error("failed to update config")
}
}
func (sm *ApplicationContext) SetAccounts(accounts gin.Accounts) {
sm.Accounts = accounts
var upsertResults interface{}
if _, err := sm.Storage.Update(Settings).Upsert(&upsertResults).
Filter(OrderedDocument{{"_id", "accounts"}}).One(UnorderedDocument{"accounts": accounts}); err != nil {
log.WithError(err).Error("failed to update accounts")
}
}
func (sm *ApplicationContext) configure() {
if sm.IsConfigured {
return
}
if sm.Config.ServerIP == "" || sm.Config.FlagRegex == "" {
return
}
serverIP := net.ParseIP(sm.Config.ServerIP)
if serverIP == nil {
return
}
rulesManager, err := LoadRulesManager(sm.Storage, sm.Config.FlagRegex)
if err != nil {
log.WithError(err).Panic("failed to create a RulesManager")
}
sm.RulesManager = rulesManager
sm.PcapImporter = NewPcapImporter(sm.Storage, serverIP, sm.RulesManager)
sm.ServicesController = NewServicesController(sm.Storage)
sm.ConnectionsController = NewConnectionsController(sm.Storage, sm.ServicesController)
sm.ConnectionStreamsController = NewConnectionStreamsController(sm.Storage)
sm.IsConfigured = true
}
|