mirror of
https://github.com/netbirdio/netbird.git
synced 2025-07-14 21:35:23 +02:00
* Add posture checks validation * Refactor code to incorporate posture checks validation directly into management. * Add posture checks validation for geolocation, OS version, network, process, and NB-version * Fix tests
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
package posture
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/go-version"
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
nbpeer "github.com/netbirdio/netbird/management/server/peer"
|
|
)
|
|
|
|
type NBVersionCheck struct {
|
|
MinVersion string
|
|
}
|
|
|
|
var _ Check = (*NBVersionCheck)(nil)
|
|
|
|
func (n *NBVersionCheck) Check(peer nbpeer.Peer) (bool, error) {
|
|
peerNBVersion, err := version.NewVersion(peer.Meta.WtVersion)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
constraints, err := version.NewConstraint(">= " + n.MinVersion)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
if constraints.Check(peerNBVersion) {
|
|
return true, nil
|
|
}
|
|
|
|
log.Debugf("peer %s NB version %s is older than minimum allowed version %s",
|
|
peer.ID, peer.Meta.WtVersion, n.MinVersion)
|
|
|
|
return false, nil
|
|
}
|
|
|
|
func (n *NBVersionCheck) Name() string {
|
|
return NBVersionCheckName
|
|
}
|
|
|
|
func (n *NBVersionCheck) Validate() error {
|
|
if n.MinVersion == "" {
|
|
return fmt.Errorf("%s minimum version shouldn't be empty", n.Name())
|
|
}
|
|
if !isVersionValid(n.MinVersion) {
|
|
return fmt.Errorf("%s version: %s is not valid", n.Name(), n.MinVersion)
|
|
}
|
|
return nil
|
|
}
|