Skip to content

Commit

Permalink
Merge pull request #339 from TIBCOSoftware/pubnub-demo
Browse files Browse the repository at this point in the history
Adding a sample app for PubNub
  • Loading branch information
retgits committed Aug 13, 2018
2 parents 2ec0a8a + 2681206 commit 2e09fea
Show file tree
Hide file tree
Showing 17 changed files with 248 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
_site
.sass-cache
.jekyll-metadata
public
10 changes: 10 additions & 0 deletions docs/content/labs/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,13 @@ body {
</div>
</div>

<div class="card">
<div class="card-header bg1">
<img class="card-image" src="../images/labs/009-scientific.svg" alt="Share" />
</div>
<div class="card-content">
<p class="card-text">Secure communication using PubNub</p>
<a class="card-start" href="./pubnub-demo" alt="Start">Start!</a>
</div>
</div>

2 changes: 1 addition & 1 deletion docs/content/labs/kubernetes-demo.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Tutorial for Kubernetes
weight: 2540
weight: 2510
---

This demo scneario will help you get up and running with a Flogo demo on Kubernetes. We'll assume you have the following tools installed already. If that is not the case, you might want to install them first. Our [Getting Started](../../../getting-started/getting-started-cli/) guide walks you through the installation of Go, the Flogo CLI and Go Dep
Expand Down
86 changes: 86 additions & 0 deletions docs/content/labs/pubnub-demo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
---
title: Tutorial for PubNub
weight: 2510
---

Building microservices is awesome, having them talk to each other is even more awesome! But in today's world, you can't be too careful when it comes to sending sensitive data across the wire. In this demo you explore how to build a simple microservice to receive the messages from PubNub and write that data to a file.

## What you'll need
### The Flogo Web UI
This demo makes use of the Flogo Web UI. If you don't have that one running yet, please check out [Getting Started with the Flogo Web UI](https://tibcosoftware.github.io/flogo/getting-started/getting-started-webui/)

### A PubNub account
In order to work with PubNub, you'll really need a PubNub account. Luckily, registration is very easy. Go to https://dashboard.pubnub.com/login and use "SIGN UP" to create a new account.

## Step 1: Create an app in PubNub
After signing up, use the big red button to create a new app (the name doesn't matter, and if you want you can change it later too). Now click on the newly created app and you'll see a new KeySet. The Publish and Subscriber key are quite important as they make sure you can connect to your PubNub account.

![](../../images/labs/pubnub-demo/step1.png)

## Step 2: Create an an in the Flogo Web UI
Open the Flogo Web UI and from there, click "New" to create a new microservice and give your new app a name. Click "Create a Flow" to create a new flow and give it any name that you want. Now click on the flow you just created and to open the canvas where you can design your flow.

![](../../images/labs/pubnub-demo/step2.png)

## Step 3: Import a new trigger
Out of the box, Flogo doesn't come with a trigger for PubNub so using the awesome [SDK](https://www.pubnub.com/docs/go/pubnub-go-sdk) provided by the PubNub team we've built one for you! To install that into your Web UI, click on the "+" icon on the left hand side of the screen.

![](../../images/labs/pubnub-demo/step3.png)

From there click on "Install new" and paste "https://github.com/retgits/flogo-components/trigger/pubnubsubscriber" into the input dialog to get this new trigger. After the installation is completed, you can click on "Receive PubNub messages" to add the trigger to your app.

## Step 4: Configuration
The thing we want to store in a file is the message coming from PubNub. To do so, you'll need to create an Input parameter which you can do by clicking on the grey "Input Output" bar on your screen. For example, you can call the parameter "pubnubmessage", keep the type as "string" and click save.

Now it is time to configure the trigger to listen to messages coming from PubNub. To start, click on the trigger and a new dialog will open with a bunch of options. In this dialog you'll have to provide:

* publishKey: The key from PubNub (usually starts with pub-c)
* subscribeKey: The key from PubNub (usually starts with sub-c)
* channel: The channel on which messages will come (totally up to you to choose this)

After that, click on "Map to flow inputs" to map the message from PubNub to the "pubnubmessage" parameter we created earlier. The parameter will already be selected because it is the only one, so the only task left is to click "* message" in the Trigger Output section and "save" to make sure everything is, well…, saved. You can click the little "X" on the top-right (no, not your browser…) to close the dialog window and go back to the flow.

## Step 5: Adding activities
You’ll have to add some acvitivities to the flow for it to do something. In this demo you'll add two activities to the flow. The first activity will log the message and the second one will store the data in a file. To add an activity click on the other large "+" sign

![](../../images/labs/pubnub-demo/step5.png)

On the right-hand side of the screen a list with all the activities the Flogo Web UI knows about will appear. From the list you can pick the "Log Message" activity and click it to make sure it is added to the flow. As you hover over the newly added activity, a cog will appear and as you hover over that thing, a menu will appear to configure your activity. In this window you can configure the inputs of the "Log Message" activity using data from all other activities and triggers in your flow. Right now, we have only the incoming data from PubNub so select "message" in the "Activity Inputs" section and expand the "flow (flow)" section (by clicking on the little black caret) to be able to select the "pubnubmessage".

![](../../images/labs/pubnub-demo/step5a.png)

Now hit the "save" button and we're done with this part!

Now we need to add a new activity to the Flogo Web UI to make sure you can add things to a file. On the main screen of your flow click "Install new activity" to get the same dialog as when installing the trigger.

![](../../images/labs/pubnub-demo/step5b.png)

In the dialog window you can paste "https://github.com/retgits/flogo-components/activity/writetofile". Once the activity is installed you can select it from the list to add it to your flow. Again, hover over the newly added activity and expand the menu to configure your activity. For this activity you'll have to configure all the parameters:

* Append: Should the content be appended to the file or not? In this case we want to, so type "true" in the box
* Content: The content we want to add to the file. In this case it is the message from PubNub again, so expand the "flow (flow)" section (by clicking on the little black caret) and select the "pubnubmessage"
* Create: Should the file be created if it doesn't exist? Well, yes, in this case that is probably a good idea so type "true" in the box
* Filename: The name of the file you want to write the data to. In this case you can call the file whatever you want, like "visitors.txt" (please be sure to add the double quotes as you type in the box)

Click "save" to save the data and return to the main screen of your flow. The completed flow will look like

![](../../images/labs/pubnub-demo/step5c.png)

## Step 6: Build
Those were all the steps needed to design the flow, now let's build an executable from it. On the main screen of your flow click on the "<" button on the top-left hand side of the screen. That will bring you back to your microservice and from here you can select "Build" and choose your operating system of choice. That will tell the Flogo Web UI to go build your microservice and give you a tiny executable in return (about 12mb).

## Step 7: Test
You can run your microservice by either double-clicking it (on Windows) or using a terminal window to run your app (macOS or Linux). If the app started successfully it will give you a message like:
`2018-08-06 21:20:02.867 INFO [engine] - Received status [pubnub.PNConnectedCategory], this is expected for a subscribe, this means there is no error or issue whatsoever`

To test the microservice you can use the PubNub debug console.

![](../../images/labs/pubnub-demo/step7.png)

In the "Default Channel" you'll have to type the same channel name as you configured in your Flogo app (MyChannel, in this example). You can click "ADD CLIENT" to create a new client which will be able to send and receive data. The cool thing that PubNub offers, is that you don't have to open any firewall ports to have the debug console and the microservice talk to each other. At the bottom of the page it will now say "{"text":"Enter Message Here"}", which is the message that you can send to your microservice. Either hit "SEND" or perhaps replace the default message with something like "{"Hello":"World"}". After you click "SEND" the exact message will appear in the window where your microservice is running

![](../../images/labs/pubnub-demo/step7a.png)

And in the log file that was created in the same location as your app

![](../../images/labs/pubnub-demo/step7b.png)
2 changes: 1 addition & 1 deletion docs/content/labs/serverless.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Tutorial with Serverless Framework
weight: 2550
weight: 2520
---

You can deploy your Flogo apps to, for example, AWS Lambda using the [Serverless Framework](https://serverless.com).With the Serverless Framework, you can configure which events should trigger it, where to deploy it and what kind of resources it is allowed to use without going into the AWS console.
Expand Down
Binary file added docs/static/images/labs/pubnub-demo/step1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/static/images/labs/pubnub-demo/step2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/static/images/labs/pubnub-demo/step3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/static/images/labs/pubnub-demo/step5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/static/images/labs/pubnub-demo/step5a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/static/images/labs/pubnub-demo/step5b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/static/images/labs/pubnub-demo/step5c.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/static/images/labs/pubnub-demo/step7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/static/images/labs/pubnub-demo/step7a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/static/images/labs/pubnub-demo/step7b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions samples/pubnub/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# PubNub demo

Security matters, especially when it comes to microservices that handle your information. This demo app uses [PubNub](https://www.pubnub.com/), which provides end-to-end encryption of messages, to reveive messages from a predefined channel

## Building this app
### From the Web UI
To load this app into the Flogo Web UI, you'll need to import two activities first:

* Write To File: https://github.com/retgits/flogo-components/activity/writetofile
* PubNub subscriber: https://github.com/retgits/flogo-components/trigger/pubnubsubscriber

After you've done this, you can upload the `flogo.json` file and update the configuration of the PubNub subscriber to match your PubNub account. Now you can build and run the app.

### From the command line
To get started from the command line, download the `flogo.json` and update the variables for the Publish and Subscriber key, as well as the channel (all of them are set to `xxx`). Now, run `flogo create -f flogo.json pubnubapp` to create a new Flogo app with the name pubnubapp.

To build and run the app, execute
```
cd pubnubapp
flogo build -e
./bin/pubnupapp
```

## More information
If you're looking for a more in-depth overview of how the app is built, check out the [lab](http://tibcosoftware.github.io/flogo/labs/pubnub-demo/)
124 changes: 124 additions & 0 deletions samples/pubnub/flogo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
{
"name": "PubNubDemoApp",
"type": "flogo:app",
"version": "0.0.1",
"appModel": "1.0.0",
"triggers": [
{
"id": "receive_pub_nub_messages",
"ref": "github.com/retgits/flogo-components/trigger/pubnubsubscriber",
"name": "Receive PubNub Messages",
"description": "PubNub Subscriber",
"settings": {
"publishKey": "xxx",
"subscribeKey": "xxx"
},
"handlers": [
{
"action": {
"ref": "github.com/TIBCOSoftware/flogo-contrib/action/flow",
"data": {
"flowURI": "res://flow:pub_nub_listener"
},
"mappings": {
"input": [
{
"mapTo": "pubnubmessage",
"type": "assign",
"value": "$.message"
}
]
}
},
"settings": {
"channel": "xxx"
}
}
]
}
],
"resources": [
{
"id": "flow:pub_nub_listener",
"data": {
"name": "PubNubListener",
"metadata": {
"input": [
{
"name": "pubnubmessage",
"type": "string"
}
]
},
"tasks": [
{
"id": "log_2",
"name": "Log Message",
"description": "Simple Log Activity",
"activity": {
"ref": "github.com/TIBCOSoftware/flogo-contrib/activity/log",
"input": {
"message": "",
"flowInfo": "false",
"addToFlow": "false"
},
"mappings": {
"input": [
{
"type": "assign",
"value": "$flow.pubnubmessage",
"mapTo": "message"
}
]
}
}
},
{
"id": "writetofile_3",
"name": "Write file",
"description": "Write to a file",
"activity": {
"ref": "github.com/retgits/flogo-components/activity/writetofile",
"input": {
"filename": "",
"content": "",
"append": false,
"create": false
},
"mappings": {
"input": [
{
"type": "literal",
"value": true,
"mapTo": "append"
},
{
"type": "assign",
"value": "$flow.pubnubmessage",
"mapTo": "content"
},
{
"type": "literal",
"value": true,
"mapTo": "create"
},
{
"type": "literal",
"value": "visitors.txt",
"mapTo": "filename"
}
]
}
}
}
],
"links": [
{
"from": "log_2",
"to": "writetofile_3"
}
]
}
}
]
}

0 comments on commit 2e09fea

Please sign in to comment.