Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds JWT refresh to http example #906

Merged
merged 2 commits into from
Nov 2, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ public static void main(String[] args) throws Exception {

// Create the corresponding JWT depending on the selected algorithm.
String token;
DateTime iat = new DateTime();
if (options.algorithm.equals("RS256")) {
token = createJwtRsa(options.projectId, options.privateKeyFile);
} else if (options.algorithm.equals("ES256")) {
Expand All @@ -154,15 +155,28 @@ public static void main(String[] args) throws Exception {
"Invalid algorithm " + options.algorithm + ". Should be one of 'RS256' or 'ES256'.");
}

String urlPath = String.format("%s/%s/", options.httpBridgeAddress, options.apiVersion);
System.out.format("Using URL: '%s'\n", urlPath);

// Publish numMessages messages to the HTTP bridge.
for (int i = 1; i <= options.numMessages; ++i) {
String payload = String.format("%s/%s-payload-%d", options.registryId, options.deviceId, i);
System.out.format(
"Publishing %s message %d/%d: '%s'\n",
options.messageType, i, options.numMessages, payload);

String urlPath = String.format("%s/%s/", options.httpBridgeAddress, options.apiVersion);
System.out.format("Using URL: '%s'\n", urlPath);
// Refresh the authentication token if the token has expired.
long secsSinceRefresh = ((new DateTime()).getMillis() - iat.getMillis()) / 1000;
if (secsSinceRefresh > (options.tokenExpMins * 60)) {
System.out.format("\tRefreshing token after: %d seconds\n", secsSinceRefresh);
iat = new DateTime();

if (options.algorithm.equals("RS256")) {
token = createJwtRsa(options.projectId, options.privateKeyFile);
} else if (options.algorithm.equals("ES256")) {
token = createJwtEs(options.projectId, options.privateKeyFile);
}
}

publishMessage(payload, urlPath, options.messageType, token, options.projectId,
options.cloudRegion, options.registryId, options.deviceId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public class HttpExampleOptions {
String algorithm;
String cloudRegion = "us-central1";
int numMessages = 100;
int tokenExpMins = 20;
String httpBridgeAddress = "https://cloudiot-device.googleapis.com";
String apiVersion = "v1beta1";
String messageType = "event";
Expand Down Expand Up @@ -94,6 +95,13 @@ public static HttpExampleOptions fromFlags(String[] args) {
.hasArg()
.desc("Number of messages to publish.")
.build());
options.addOption(
Option.builder()
.type(Number.class)
.longOpt("token_exp_minutes")
.hasArg()
.desc("Minutes to JWT token refresh (token expiration time).")
.build());
options.addOption(
Option.builder()
.type(String.class)
Expand Down Expand Up @@ -133,6 +141,10 @@ public static HttpExampleOptions fromFlags(String[] args) {
if (commandLine.hasOption("num_messages")) {
res.numMessages = ((Number) commandLine.getParsedOptionValue("num_messages")).intValue();
}
if (commandLine.hasOption("token_exp_minutes")) {
res.tokenExpMins =
((Number) commandLine.getParsedOptionValue("token_exp_minutes")).intValue();
}
if (commandLine.hasOption("http_bridge_address")) {
res.httpBridgeAddress = commandLine.getOptionValue("http_bridge_address");
}
Expand Down