This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
iothub-explorer-send.js
58 lines (49 loc) · 2.17 KB
/
iothub-explorer-send.js
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
58
#!/usr/bin/env node
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
'use strict';
// external dependencies
var program = require('commander');
var chalk = require('chalk');
// local dependencies
var inputError = require('./common.js').inputError;
var serviceError = require('./common.js').serviceError;
var getSas = require('./common.js').getSas;
var createMessageFromArgument = require('./common.js').createMessageFromArgument;
// Azure Event Hubs dependencies
var ServiceClient = require('azure-iothub').Client;
var showDeprecationText = require('./common.js').showDeprecationText;
showDeprecationText('az iot device c2d-message send');
program
.description('Send a message to device (cloud-to-device/C2D).')
.option('-l, --login <connectionString>', 'use the connection string provided as argument to use to authenticate with your IoT hub')
.option('-r, --raw', 'use this flag to return raw output instead of pretty-printed output')
.option('-a, --ack <ack-type>', 'set the type of feedback that you would like to receive: none|positive|negative|full')
.parse(process.argv);
if(!program.args[0]) inputError('You need to specify a device id.');
if(!program.args[1]) inputError('You need to specify a message.');
var deviceId = program.args[0];
var messageArg = program.args[1];
var ack = program.ack;
var sas = getSas(program.login);
var client = ServiceClient.fromSharedAccessSignature(sas.toString());
client.open(function (err) {
if (err) {
inputError('Could not open the connection to the service: ' + err.message);
} else {
var message = createMessageFromArgument(messageArg, ack);
client.send(deviceId, message, function (err) {
if (err) serviceError(err);
if(program.raw) {
console.log(message.messageId);
} else {
var successMessage = chalk.green('Message sent with id: ') + message.messageId;
if (program.ack) successMessage += chalk.grey('. Acknowledgement requested: ' + program.ack);
console.log(successMessage);
}
client.close(function(err) {
if(err) serviceError(err);
});
});
}
});