mirror of
https://github.com/absmach/supermq.git
synced 2026-06-23 04:00:27 +00:00
a34df79e9b
* Use Magistrala packages where needed Signed-off-by: Dusan Borovcanin <borovcanindusan1@gmail.com> * Move SMQ scripts to MG Signed-off-by: Dusan Borovcanin <borovcanindusan1@gmail.com> --------- Signed-off-by: Dusan Borovcanin <borovcanindusan1@gmail.com>
51 lines
2.5 KiB
Bash
Executable File
51 lines
2.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) Abstract Machines
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
###
|
|
# Provisions example user, client and channel on a clean SuperMQ installation.
|
|
#
|
|
# Expects a running SuperMQ installation.
|
|
#
|
|
#
|
|
###
|
|
|
|
if [ $# -lt 4 ]
|
|
then
|
|
echo "Usage: $0 user_email user_password device_name channel_name"
|
|
exit 1
|
|
fi
|
|
|
|
EMAIL=$1
|
|
PASSWORD=$2
|
|
DEVICE=$3
|
|
CHANNEL=$4
|
|
|
|
#provision user:
|
|
printf "Provisoning user with email $EMAIL and password $PASSWORD \n"
|
|
curl -s -S --cacert docker/ssl/certs/supermq-server.crt --insecure -X POST -H "Content-Type: application/json" https://localhost/users -d '{"credentials": {"identity": "'"$EMAIL"'","secret": "'"$PASSWORD"'"}, "status": "enabled", "role": "admin" }'
|
|
|
|
#get jwt token
|
|
JWTTOKEN=$(curl -s -S --cacert docker/ssl/certs/supermq-server.crt --insecure -X POST -H "Content-Type: application/json" https://localhost/users/tokens/issue -d '{"identity":"'"$EMAIL"'", "secret":"'"$PASSWORD"'"}' | grep -oP '"access_token":"\K[^"]+' )
|
|
printf "JWT TOKEN for user is $JWTTOKEN \n"
|
|
|
|
#provision client
|
|
printf "Provisioning client with name $DEVICE \n"
|
|
DEVICEID=$(curl -s -S --cacert docker/ssl/certs/supermq-server.crt --insecure -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $JWTTOKEN" https://localhost/clients -d '{"name":"'"$DEVICE"'", "status": "enabled"}' | grep -oP '"id":"\K[^"]+' )
|
|
curl -s -S --cacert docker/ssl/certs/supermq-server.crt --insecure -X GET -H "Content-Type: application/json" -H "Authorization: Bearer $JWTTOKEN" https://localhost/clients/$DEVICEID
|
|
|
|
#get client token
|
|
DEVICETOKEN=$(curl -s -S --cacert docker/ssl/certs/supermq-server.crt --insecure -H "Authorization: Bearer $JWTTOKEN" https://localhost/clients/$DEVICEID | grep -oP '"secret":"\K[^"]+' )
|
|
printf "Device token is $DEVICETOKEN \n"
|
|
|
|
#provision channel
|
|
printf "Provisioning channel with name $CHANNEL \n"
|
|
CHANNELID=$(curl -s -S --cacert docker/ssl/certs/supermq-server.crt --insecure -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $JWTTOKEN" https://localhost/channels -d '{"name":"'"$CHANNEL"'", "status": "enabled"}' | grep -oP '"id":"\K[^"]+' )
|
|
curl -s -S --cacert docker/ssl/certs/supermq-server.crt --insecure -X GET -H "Content-Type: application/json" -H "Authorization: Bearer $JWTTOKEN" https://localhost/channels/$CHANNELID
|
|
|
|
#connect client to channel
|
|
printf "Connecting client of id $DEVICEID to channel of id $CHANNELID \n"
|
|
curl -s -S --cacert docker/ssl/certs/supermq-server.crt --insecure -X PUT -H "Authorization: Bearer $JWTTOKEN" https://localhost/channels/$CHANNELID/clients/$DEVICEID
|