-
Notifications
You must be signed in to change notification settings - Fork 219
/
Copy pathcustom_authorizer_connect.py
57 lines (44 loc) · 2.36 KB
/
custom_authorizer_connect.py
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
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0.
from awsiot import mqtt_connection_builder
from utils.command_line_utils import CommandLineUtils
# This sample is similar to `samples/basic_connect.py` but it connects
# through a custom authorizer rather than using a key and certificate.
# cmdData is the arguments/input from the command line placed into a single struct for
# use in this sample. This handles all of the command line parsing, validating, etc.
# See the Utils/CommandLineUtils for more information.
cmdData = CommandLineUtils.parse_sample_input_custom_authorizer_connect()
def on_connection_interrupted(connection, error, **kwargs):
# Callback when connection is accidentally lost.
print("Connection interrupted. error: {}".format(error))
def on_connection_resumed(connection, return_code, session_present, **kwargs):
# Callback when an interrupted connection is re-established.
print("Connection resumed. return_code: {} session_present: {}".format(return_code, session_present))
if __name__ == '__main__':
# Create MQTT connection with a custom authorizer
mqtt_connection = mqtt_connection_builder.direct_with_custom_authorizer(
endpoint=cmdData.input_endpoint,
auth_username=cmdData.input_custom_auth_username,
auth_authorizer_name=cmdData.input_custom_authorizer_name,
auth_authorizer_signature=cmdData.input_custom_authorizer_signature,
auth_password=cmdData.input_custom_auth_password,
auth_token_key_name=cmdData.input_custom_authorizer_token_key_name,
auth_token_value=cmdData.input_custom_authorizer_token_value,
on_connection_interrupted=on_connection_interrupted,
on_connection_resumed=on_connection_resumed,
client_id=cmdData.input_clientId,
clean_session=False,
keep_alive_secs=30)
if not cmdData.input_is_ci:
print(f"Connecting to {cmdData.input_endpoint} with client ID '{cmdData.input_clientId}'...")
else:
print("Connecting to endpoint with client ID")
connect_future = mqtt_connection.connect()
# Future.result() waits until a result is available
connect_future.result()
print("Connected!")
# Disconnect
print("Disconnecting...")
disconnect_future = mqtt_connection.disconnect()
disconnect_future.result()
print("Disconnected!")