Skip to content

Commit

Permalink
Merge pull request #49 from nyagamunene/move-supermq
Browse files Browse the repository at this point in the history
NOISSUE - Move from MG to Supermq
  • Loading branch information
drasko authored Jan 24, 2025
2 parents 67634cf + 6ffc4e0 commit 3f87a83
Show file tree
Hide file tree
Showing 32 changed files with 2,272 additions and 881 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ SERVICES = manager proplet cli proxy
define compile_service
CGO_ENABLED=$(CGO_ENABLED) GOOS=$(GOOS) GOARCH=$(GOARCH) \
go build -ldflags "-s -w \
-X 'github.com/absmach/magistrala.BuildTime=$(TIME)' \
-X 'github.com/absmach/magistrala.Version=$(VERSION)' \
-X 'github.com/absmach/magistrala.Commit=$(COMMIT)'" \
-X 'github.com/absmach/supermq.BuildTime=$(TIME)' \
-X 'github.com/absmach/supermq.Version=$(VERSION)' \
-X 'github.com/absmach/supermq.Commit=$(COMMIT)'" \
-o ${BUILD_DIR}/$(1) cmd/$(1)/main.go
endef

Expand All @@ -34,10 +34,10 @@ clean:
lint:
golangci-lint run --config .golangci.yaml

start-magistrala:
start-supermq:
docker compose -f docker/compose.yaml up -d

stop-magistrala:
stop-supermq:
docker compose -f docker/compose.yaml down

$(EXAMPLES):
Expand All @@ -52,6 +52,6 @@ help:
@echo " install: install the binary i.e copies to GOBIN"
@echo " clean: clean the build directory"
@echo " lint: run golangci-lint"
@echo " start-magistrala: start the magistrala docker compose"
@echo " stop-magistrala: stop the magistrala docker compose"
@echo " start-supermq: start the supermq docker compose"
@echo " stop-supermq: stop the supermq docker compose"
@echo " help: display this help message"
91 changes: 42 additions & 49 deletions cli/provision.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"

"github.com/0x6flab/namegenerator"
smqSDK "github.com/absmach/magistrala/pkg/sdk/go"
"github.com/absmach/supermq/pkg/errors"
smqSDK "github.com/absmach/supermq/pkg/sdk"
"github.com/charmbracelet/huh"
"github.com/spf13/cobra"
)
Expand Down Expand Up @@ -36,44 +36,44 @@ var provisionCmd = &cobra.Command{
Long: `Provision necessary resources for Propeller operation.`,
Run: func(cmd *cobra.Command, args []string) {
var (
identity string
secret string
username string
password string
err error
token smqSDK.Token
domainName string
domainAlias string
domainPermission string
domain smqSDK.Domain
managerThingName string
managerThing smqSDK.Thing
propletThingName string
propletThing smqSDK.Thing
managerClientName string
managerClient smqSDK.Client
propletClientName string
propletClient smqSDK.Client
managerChannelName string
managerChannel smqSDK.Channel
)
form := huh.NewForm(
huh.NewGroup(
huh.NewInput().
Title("Enter your identity (e-mail)?").
Value(&identity).
Title("Enter your username?").
Value(&username).
Validate(func(str string) error {
if str == "" {
return errors.New("identity is required")
return errors.New("username is required")
}

return nil
}),
huh.NewInput().
Title("Enter your secret").
Title("Enter your password").
EchoMode(huh.EchoModePassword).
Value(&secret).
Value(&password).
Validate(func(str string) error {
if str == "" {
return errors.New("secret is required")
return errors.New("password is required")
}
u := smqSDK.Login{
Identity: identity,
Secret: secret,
Username: username,
Password: password,
}

token, err = smqsdk.CreateToken(u)
Expand Down Expand Up @@ -121,18 +121,18 @@ var provisionCmd = &cobra.Command{
),
huh.NewGroup(
huh.NewInput().
Title("Enter your manager thing name(leave empty to auto generate)").
Value(&managerThingName).
Title("Enter your manager client name(leave empty to auto generate)").
Value(&managerClientName).
Validate(func(str string) error {
if str == "" {
managerThingName = namegen.Generate()
managerClientName = namegen.Generate()
}
managerThing = smqSDK.Thing{
Name: managerThingName,
managerClient = smqSDK.Client{
Name: managerClientName,
Tags: []string{"manager", "propeller"},
Status: "enabled",
}
managerThing, err = smqsdk.CreateThing(managerThing, domain.ID, token.AccessToken)
managerClient, err = smqsdk.CreateClient(managerClient, domain.ID, token.AccessToken)
if err != nil {
return errors.Wrap(errFailedClientCreation, err)
}
Expand All @@ -142,18 +142,18 @@ var provisionCmd = &cobra.Command{
),
huh.NewGroup(
huh.NewInput().
Title("Enter your proplet thing name(leave empty to auto generate)").
Value(&propletThingName).
Title("Enter your proplet client name(leave empty to auto generate)").
Value(&propletClientName).
Validate(func(str string) error {
if str == "" {
propletThingName = namegen.Generate()
propletClientName = namegen.Generate()
}
propletThing = smqSDK.Thing{
Name: propletThingName,
propletClient = smqSDK.Client{
Name: propletClientName,
Tags: []string{"proplet", "propeller"},
Status: "enabled",
}
propletThing, err = smqsdk.CreateThing(propletThing, domain.ID, token.AccessToken)
propletClient, err = smqsdk.CreateClient(propletClient, domain.ID, token.AccessToken)
if err != nil {
return errors.Wrap(errFailedClientCreation, err)
}
Expand All @@ -178,21 +178,14 @@ var provisionCmd = &cobra.Command{
}

managerConns := smqSDK.Connection{
ThingID: managerThing.ID,
ChannelID: managerChannel.ID,
ClientIDs: []string{managerClient.ID, propletClient.ID},
ChannelIDs: []string{managerChannel.ID},
Types: []string{"publish", "subscribe"},
}
if err = smqsdk.Connect(managerConns, domain.ID, token.AccessToken); err != nil {
return errors.Wrap(errFailedConnectionCreation, err)
}

propletConns := smqSDK.Connection{
ThingID: propletThing.ID,
ChannelID: managerChannel.ID,
}
if err = smqsdk.Connect(propletConns, domain.ID, token.AccessToken); err != nil {
return errors.Wrap(errFailedConnectionCreation, err)
}

return nil
}),
),
Expand All @@ -207,27 +200,27 @@ var provisionCmd = &cobra.Command{
configContent := fmt.Sprintf(`# SuperMQ Configuration
[manager]
thing_id = "%s"
thing_key = "%s"
client_id = "%s"
client_key = "%s"
channel_id = "%s"
[proplet]
thing_id = "%s"
thing_key = "%s"
client_id = "%s"
client_key = "%s"
channel_id = "%s"
[proxy]
thing_id = "%s"
thing_key = "%s"
client_id = "%s"
client_key = "%s"
channel_id = "%s"`,
managerThing.ID,
managerThing.Credentials.Secret,
managerClient.ID,
managerClient.Credentials.Secret,
managerChannel.ID,
propletThing.ID,
propletThing.Credentials.Secret,
propletClient.ID,
propletClient.Credentials.Secret,
managerChannel.ID,
propletThing.ID,
propletThing.Credentials.Secret,
propletClient.ID,
propletClient.Credentials.Secret,
managerChannel.ID,
)

Expand Down
36 changes: 23 additions & 13 deletions cmd/cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,19 @@ package main
import (
"log"

smqsdk "github.com/absmach/magistrala/pkg/sdk/go"
"github.com/absmach/propeller/cli"
"github.com/absmach/propeller/pkg/sdk"
smqsdk "github.com/absmach/supermq/pkg/sdk"
"github.com/spf13/cobra"
)

var (
tlsVerification = false
managerURL = "http://localhost:7070"
usersURL = "http://localhost:9002"
thingsURL = "http://localhost:9000"
domainsURL = "http://localhost:8189"
domainsURL = "http://localhost:9003"
clientsURL = "http://localhost:9006"
channelsURL = "http://localhost:9005"
msgContentType = string(smqsdk.CTJSONSenML)
)

Expand All @@ -33,8 +34,9 @@ func main() {

smqSDKConf := smqsdk.Config{
UsersURL: usersURL,
ThingsURL: thingsURL,
DomainsURL: domainsURL,
ClientsURL: clientsURL,
ChannelsURL: channelsURL,
MsgContentType: smqsdk.ContentType(msgContentType),
}

Expand Down Expand Up @@ -75,14 +77,6 @@ func main() {
"Users service URL",
)

rootCmd.PersistentFlags().StringVarP(
&thingsURL,
"things-url",
"t",
thingsURL,
"Things service URL",
)

rootCmd.PersistentFlags().StringVarP(
&domainsURL,
"domains-url",
Expand All @@ -91,10 +85,26 @@ func main() {
"Domains service URL",
)

rootCmd.PersistentFlags().StringVarP(
&clientsURL,
"clients-url",
"c",
clientsURL,
"Clients service URL",
)

rootCmd.PersistentFlags().StringVarP(
&channelsURL,
"channels-url",
"z",
channelsURL,
"Channels service URL",
)

rootCmd.PersistentFlags().StringVarP(
&msgContentType,
"content-type",
"c",
"t",
msgContentType,
"Message content type",
)
Expand Down
20 changes: 10 additions & 10 deletions cmd/manager/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ import (
"os"
"time"

"github.com/absmach/magistrala/pkg/jaeger"
"github.com/absmach/magistrala/pkg/prometheus"
"github.com/absmach/magistrala/pkg/server"
httpserver "github.com/absmach/magistrala/pkg/server/http"
"github.com/absmach/propeller"
"github.com/absmach/propeller/manager"
"github.com/absmach/propeller/manager/api"
"github.com/absmach/propeller/manager/middleware"
"github.com/absmach/propeller/pkg/mqtt"
"github.com/absmach/propeller/pkg/scheduler"
"github.com/absmach/propeller/pkg/storage"
"github.com/absmach/supermq/pkg/jaeger"
"github.com/absmach/supermq/pkg/prometheus"
"github.com/absmach/supermq/pkg/server"
httpserver "github.com/absmach/supermq/pkg/server/http"
"github.com/caarlos0/env/v11"
"github.com/google/uuid"
"go.opentelemetry.io/otel/trace"
Expand All @@ -41,8 +41,8 @@ type config struct {
MQTTQoS uint8 `env:"MANAGER_MQTT_QOS" envDefault:"2"`
MQTTTimeout time.Duration `env:"MANAGER_MQTT_TIMEOUT" envDefault:"30s"`
ChannelID string `env:"MANAGER_CHANNEL_ID"`
ThingID string `env:"MANAGER_THING_ID"`
ThingKey string `env:"MANAGER_THING_KEY"`
ClientID string `env:"MANAGER_CLIENT_ID"`
ClientKey string `env:"MANAGER_CLIENT_KEY"`
Server server.Config
OTELURL url.URL `env:"MANAGER_OTEL_URL"`
TraceRatio float64 `env:"MANAGER_TRACE_RATIO" envDefault:"0"`
Expand All @@ -61,16 +61,16 @@ func main() {
cfg.InstanceID = uuid.NewString()
}

if cfg.ThingID == "" || cfg.ThingKey == "" || cfg.ChannelID == "" {
if cfg.ClientID == "" || cfg.ClientKey == "" || cfg.ChannelID == "" {
_, err := os.Stat(configPath)
switch err {
case nil:
conf, err := propeller.LoadConfig(configPath)
if err != nil {
log.Fatalf("failed to load TOML configuration: %s", err.Error())
}
cfg.ThingID = conf.Manager.ThingID
cfg.ThingKey = conf.Manager.ThingKey
cfg.ClientID = conf.Manager.ClientID
cfg.ClientKey = conf.Manager.ClientKey
cfg.ChannelID = conf.Manager.ChannelID
default:
log.Fatalf("failed to load TOML configuration: %s", err.Error())
Expand Down Expand Up @@ -107,7 +107,7 @@ func main() {
}
tracer := tp.Tracer(svcName)

mqttPubSub, err := mqtt.NewPubSub(cfg.MQTTAddress, cfg.MQTTQoS, svcName, cfg.ThingID, cfg.ThingKey, cfg.ChannelID, cfg.MQTTTimeout, logger)
mqttPubSub, err := mqtt.NewPubSub(cfg.MQTTAddress, cfg.MQTTQoS, svcName, cfg.ClientID, cfg.ClientKey, cfg.ChannelID, cfg.MQTTTimeout, logger)
if err != nil {
logger.Error("failed to initialize mqtt pubsub", slog.String("error", err.Error()))

Expand Down
Loading

0 comments on commit 3f87a83

Please sign in to comment.