constellation

package
v0.17.0-unstable30 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 25, 2024 License: Apache-2.0 Imports: 26 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ProcessMux            sync.Mutex
	ConstellationInitLock sync.Mutex
)
View Source
var APIKey = ""
View Source
var CachedDeviceNames = map[string]string{}
View Source
var CachedDevices = map[string]utils.ConstellationDevice{}
View Source
var DNSBlacklist = map[string]bool{}
View Source
var DNSStarted = false
View Source
var DeviceName = ""
View Source
var MASTERPWD = utils.GenerateRandomString(24)
View Source
var MASTERUSER = "SERVERUSER"
View Source
var NATSClientTopic = ""
View Source
var NebulaDefaultConfig utils.NebulaConfig
View Source
var NebulaFailedStarting = false
View Source
var NebulaStarted = false

Functions

func API_ConnectToExisting

func API_ConnectToExisting(w http.ResponseWriter, req *http.Request)

func API_GetConfig

func API_GetConfig(w http.ResponseWriter, req *http.Request)

func API_GetLogs

func API_GetLogs(w http.ResponseWriter, req *http.Request)

func API_Ping added in v0.16.0

func API_Ping(w http.ResponseWriter, req *http.Request)

func API_Reset

func API_Reset(w http.ResponseWriter, req *http.Request)

func API_Restart

func API_Restart(w http.ResponseWriter, req *http.Request)

func CheckConstellationToken added in v0.16.0

func CheckConstellationToken(req *http.Request) error

TODO: Cache this

func CloseNATSClient added in v0.16.0

func CloseNATSClient()

func ConstellationAPIDevices

func ConstellationAPIDevices(w http.ResponseWriter, req *http.Request)

func DeviceBlock

func DeviceBlock(w http.ResponseWriter, req *http.Request)

func DeviceCreate

func DeviceCreate(w http.ResponseWriter, req *http.Request)

func DeviceList

func DeviceList(w http.ResponseWriter, req *http.Request)

func ExportConfigToYAML

func ExportConfigToYAML(overwriteConfig utils.ConstellationConfig, outputPath string) error

func GetAllLightHouses

func GetAllLightHouses() ([]utils.ConstellationDevice, error)

func GetBlockedDevices

func GetBlockedDevices() ([]utils.ConstellationDevice, error)

func GetCertFingerprint

func GetCertFingerprint(certPath string) (string, error)

func GetDeviceConfigForSync added in v0.16.0

func GetDeviceConfigForSync(nickname, deviceName string) ([]byte, error)

func GetDeviceConfigManualSync added in v0.16.0

func GetDeviceConfigManualSync(w http.ResponseWriter, req *http.Request)

func GetDeviceConfigSync added in v0.16.0

func GetDeviceConfigSync(w http.ResponseWriter, req *http.Request)

func GetDeviceIp added in v0.16.0

func GetDeviceIp(device string) string

func GetNATSCredentials added in v0.16.0

func GetNATSCredentials(isMaster bool) (string, string, error)

func Init

func Init()

func InitConfig

func InitConfig()

func InitDNS

func InitDNS()

func InitNATSClient added in v0.16.0

func InitNATSClient()

func IsClientConnected added in v0.16.0

func IsClientConnected() bool

func MakeSyncPayload added in v0.16.0

func MakeSyncPayload() string

func MasterNATSClientRouter added in v0.16.0

func MasterNATSClientRouter()

func PingNATSClient added in v0.16.0

func PingNATSClient() bool

func PublishNATSMessage added in v0.16.0

func PublishNATSMessage(topic string, payload string) error

func ReceiveSyncPayload added in v0.16.0

func ReceiveSyncPayload(rawPayload string)

func RequestSyncPayload added in v0.16.0

func RequestSyncPayload()

func ResetNebula

func ResetNebula() error

func RestartNebula

func RestartNebula()

func SendNATSMessage added in v0.16.0

func SendNATSMessage(topic string, payload string) (string, error)

func SendSyncPayload added in v0.16.0

func SendSyncPayload(username string)

func SlaveConfigSync added in v0.16.0

func SlaveConfigSync(newConfig string) (bool, error)

func SlaveNATSClientRouter added in v0.16.0

func SlaveNATSClientRouter()

func StartNATS added in v0.16.0

func StartNATS()

func StopNATS added in v0.16.0

func StopNATS()

func TriggerClientResync added in v0.16.0

func TriggerClientResync() error

Types

type DeviceBlockRequestJSON

type DeviceBlockRequestJSON struct {
	Nickname   string `json:"nickname",validate:"required,min=3,max=32,alphanum"`
	DeviceName string `json:"deviceName",validate:"required,min=3,max=32,alphanum"`
	Block      bool   `json:"block",omitempty`
}

type DeviceCreateRequestJSON

type DeviceCreateRequestJSON struct {
	DeviceName string `json:"deviceName",validate:"required,min=3,max=32,alphanum"`
	IP         string `json:"ip",validate:"required,ipv4"`
	PublicKey  string `json:"publicKey",omitempty`

	// for devices only
	Nickname string `json:"nickname",validate:"max=32,alphanum",omitempty`

	// for lighthouse only
	IsLighthouse   bool   `json:"isLighthouse",omitempty`
	IsRelay        bool   `json:"isRelay",omitempty`
	PublicHostname string `json:"PublicHostname",omitempty`
	Port           string `json:"port",omitempty`
}

type DeviceResyncRequest added in v0.16.0

type DeviceResyncRequest struct {
	Nickname   string `json:"nickname",validate:"required,min=3,max=32,alphanum"`
	DeviceName string `json:"deviceName",validate:"required,min=3,max=32,alphanum"`
}

type SyncPayload added in v0.16.0

type SyncPayload struct {
	Database       string `json:"database"`
	AuthPrivateKey string `json:"authPrivateKey"`
	AuthPublicKey  string `json:"authPublicKey"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL