SmartHotel360-Sentiment-Analysis-App

SmartHotel360 Sentiment Analysis App

  • 所有者: microsoft/SmartHotel360-SentimentAnalysis
  • 平台:
  • 許可證: MIT License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

The project SmartHotel360 have been retired, we have archived it. It is no longer maintained. You still can fork the repository.

For the latest sample references visit: https://aka.ms/tailwindtraders & https://aka.ms/rpsls

SmartHotel360

During our Connect(); 2017 event this year we presented beautiful app demos using Microsoft developer tools and technologies.

We are happy to announce the release of SmartHotel360. This release intends to share a simplified version of SmartHotel360 reference sample apps used at Connect(); 2017 Keynotes. If you missed it, you can watch Scott Guthrie’s Keynote: Journey to the Intelligent Cloud on Channel 9.

Sentiment Analysis App

This repo contains the Node.js Sentiment Analysis App built with Visual Studio Code.

For hotel managers, we built a simple Node.js website to analyze customer sentiment from Twitter by using Text Analysis Cognitive Services APIs. This website was built with Visual Studio Code and we used multiple of our newest extensions for Cosmos DB, App Service, Azure Functions, and Docker for Visual Studio Code and Azure to build this app.

Other SmartHotel360 Repos

For this reference app scenario, we built several consumer and line-of-business apps and an Azure backend. You can find all SmartHotel360 repos in the following locations:

Azure Deployment and Setup

This section will walk through using the Azure Portal and Visual Studio Code to create all of the resources you'd need to deploy the demo to Azure.

We have added an ARM template so you can automate the resources creation, you still need to configure the Cosmos DB and the Logic App.

Note: The deployment of all the resources can take up to 7 minutes.

Optionally, you can create the Azure resources manually following the Azure Manual Deployment guide.

  1. Create a new collection in the Cosmos DB SQL database using the Azure Portal's Data Explorer. Name the Database Id TweetsDB and the Collection Id Tweets.

    Create a new Cosmos DB Collection

Note: For partition key you can use /id

  1. Create a new Graph in the new Cosmos DB Graph database id named TweetsDB and a graph id of Tweets.

    Create a new Graph

  2. Navigate to the Logic App in the Azure Portal, and select the When a new tweet is posted trigger.

    When a tweet is posted trigger

  3. You'll need to log in to your Twitter account and to give it access to the Azure Logic App to login as you.

    Note: The Logic App won't post tweets or mine your followers. The reason for logging in with a real Twitter account is to let the Logic App pull Tweets and scan them for keywords and hashtags.

  4. Enter the string #SmartHotel360 in the Search text box. Then, click the New step button. Then, click the Add an action button.

    Search text

  5. Add a new Azure Cosmos DB - Create or update document action.

    Create a new document

  6. Give the connection a name, and select the Cosmos DB resource you created earlier that uses the SQL API.

    Click create

  7. Provide the string TweetsDB for the Database ID field, Tweets for the Collection ID field, and then paste in the JSON code below into the Document field.

    {
        "_id": "@{triggerBody()?['TweetId']}",
        "created": "@triggerBody()?['CreatedAtIso']",
        "id": "@{triggerBody()?['TweetId']}",
        "text": "@triggerBody()?['TweetText']",
        "user": "@{triggerBody()?['TweetedBy']}"
    }   
    

    You also need to specify the Partition Key Value parameter

    "@{triggerBody()?['TweetId']}"  
    
  8. Click the Save button in the Logic App Designer. Once the Logic App has been saved the view of the Create or update document step should change somewhat, demonstrating that the JSON will be constructed using properties from the incoming Tweet.

    Properties from Tweet

Run the Logic App

Once the Logic App has been saved, testing it out is as easy as posting a Tweet containing the desired string. The next time the Logic App is triggered, the JSON data captured is visible in the Logic App Designer.

Captured Tweet

Using the Cosmos DB Data Explorer in the Azure Portal, you can see the JSON document that has been from the Logic App execution.

Saved document

Local Development Setup

The following prerequisites are needed to use the code in this repository:

  1. Git
  2. Docker
  3. Node.js (Latest LTS)
  4. Visual Studio Code, with the following Azure-related extensions installed:
    1. Azure App Service
    2. Azure Cosmos DB
    3. Azure Functions
    4. Azure Storage
    5. Docker
  5. Azure CLI
  6. .NET Core SDK (prerequisite to the Azure Functions CLI)
  7. Azure Functions CLI

The steps below will enable you to debug the Azure Functions locally and deploy it to Azure App Service once it is ready. You will also package up the web app into a Docker container and publish it to App Service on Containers.

Login to Azure within Visual Studio Code

  1. Clone this repository, then open the Source directory as your workspace in Visual Studio Code.

  2. Sign in to your Azure subscription by using F1 (Windows) or Cmd-Shift-P (Mac) to open the Visual Studio Code command palette. Type Azure and find the Azure: Sign In commannd to sign in to your Azure account.

    Sign in

  3. By clicking Copy and Open, your browser will open and allow you to paste in the authentication code. Then you can select the Microsoft or organizational account you want to use.

    Copy and open

    Once the authentication process completes you'll see the email address you used to sign in down in the bottom-left corner of Visual Studio Code. By clicking your account name you'll be able to select from a drop-down list of your Azure subscriptions.

  4. Now that you're logged into your Azure subscription you will see the resources you created earlier in the various Azure resource explorers in Visual Studio Code.

    Azure explorer windows

Configure the Azure Function

  1. Open the Source/Function/local.settings.json file.

    Local settings file

  2. Right-click the node for the Cosmos DB (using SQL API) database you created earlier and select the Copy Connection String option.

    Copy the Cosmos DB connection string

  3. Paste the connection string as the value of the CosmosDb_ConnectionString property in the Source/Function/local.settings.json file.

    Paste the Cosmos DB connection string

  4. Copy the Storage Account's connection string using the Azure Storage explorer pane in Visual Studio Code.

    Copy storage connection string

  5. Paste the connection string value into the AzureWebJobsStorage property.

    Paste storage connection string

  6. Copy the Cognitive Services API Key from the Azure Portal. Then, paste it into the COGNITIVE_SERVICES_API_KEY configuration property value in the local.settings.json file.

    Copy API Key

  7. Open the Source/Function/AnalyzePendingTweet/dbconfig.js file.

    Database utilities file

  8. Right-click the node for the Cosmos DB (using Graph API) database you created earlier and select the Open In Portal option.

    Copy the Graph database connection string

  9. Copy the Gremlin Endpoint from the Azure Portal.

    Copy Gremlin URL

  10. Paste this value, but remove the port number and protocol, into the Source/Function/AnalyzePendingTweet/dbconfig.js file's config.endpoint property.

    Gremlin address in config

  11. Copy the primary key from the Azure Portal.

    Copy the key

  12. Paste the value into the Source/Function/AnalyzePendingTweet/dbconfig.js file's config.primaryKey property.

    Pasted the key

Debug the Azure Function Locally

Once the Azure resources are set up and the local code is configured, the Azure Function can be debugged locally. With the Function running locally on your development machine, you can run the Logic App to collect incoming Tweets containing mentions of the #SmartHotel360 hashtag. When you execute the Logic App, Tweet data is saved as a JSON document to Cosmos DB. When those documents are saved to the Cosmos DB, a Trigger is fired that results in your local Azure Function executing. Then, the Tweet data is analyzed using Cognitive Services Text Analytics, and the resulting data is then saved into a second Cosmos DB using the Graph API.

  1. Within the Source/Function/AnalyzePendingTweet folder execute the code below to install the Cosmos DB Function extension into your Azure Function project.

    func extensions install --package Microsoft.Azure.WebJobs.Extensions.CosmosDB --version 3.0.3 
    

    Note: You can learn more about Function Extensions in the Azure Functions Host Wiki.

  2. Open Visual Studio Code with the Source/Function directory set as your workspace.

Note: You will need to run the following command in order to restore the NPM packages of the Function:

    npm i 
  1. Hit the Debug button in Visual Studio Code or hit the F5 key to start debugging the Azure Function locally. You should see the Azure Functions CLI emit logging data in the Visual Studio Code terminal window.

    Debugging the Function

  2. Open two browser tabs to make the debugging experience convenient:

    • The Logic App designer in the Azure Portal
    • The Data Explorer tab of the Cosmos DB you created using a SQL API
  3. Post a Tweet to your Twitter account using the #smarthotel360 hash tag.

  4. Click the Run button to execute the Logic App.

    Run the Logic App

  5. Once the Logic App executes, the Tweet data is collected and saved to the Cosmos DB database. You can look in the Data Explorer for the Cosmos DB with the SQL API and see the document.

    Document collected

  6. When the document is saved to the Cosmos DB database, the Function attached to it is immediately triggered and the execution is visible in the Visual Studio Code debugger.

    Debugger saving data

  7. By opening the Cosmos DB Graph explorer in Visual Studio Code, you can navigate through the data that was saved to the Graph.

    Graph Explorer

  8. You can deploy the Azure Function with the Azure extension in Visual Studio Code, click on Deploy to Function App. This will create a zip package and send it to Azure.

    Deploying the Azure Function

Configure the Web Site

  1. Open Visual Studio Code with the Source\Website directory set as your workspace.

  2. Copy your Bing Maps API key from the Azure Portal and paste it into the Source\Website\client\js\webConfig.js file to the value of the mapQueryKey property.

    Bing Maps API Key

  3. Copy the Cosmos DB Graph API database's Gremlin Endpoint and Primary Key into the Source\Website\util\dbconfig.js file's endpoint and primarykey properties.

    Configure the Web Site DB

Debug the Web Site

Note: You will need to run the following command in order to restore the NPM packages of the website:

    npm i 

The web site with this demo enables the employees of SmartHotel360 to see the social sentiment of hotels in the New York City area. A clickable map shows the hotels as green or red circles that, when clicked, show the general Twitter sentiment analysis of each hotel.

The clickable map

  1. To populate the Cosmos DB database with sample data, uncomment the call to the dbUtil file in app.js.

    Generate sample data

    Note: Before debugging the app you should comment this out again!

  2. Comment the line out again before debugging, then hit F5 to launch the web site in the Visual Studio Code debugger. Once the debugger launches, the site will be available at http://localhost:3000.

When the site launches, click some of the circles to see the sample data, then stop the debugger.

Build the Docker Image and Push it to Azure Container Registry

The Docker tools for Visual Studio Code make it easy to build Docker images when docker-compose files are in the workspace.

  1. Hit F1 (Windows) or Cmd-Shift-P (Mac) to open the Command Pallete in Visual Studio Code. Then, type the string docker to see the Docker commands available. Select the Docker Compose command.

    Docker Compose

  2. Select the docker-compose.yml file.

    Select the file

  3. Once the image is built you will see the output in the Visual Studio Code terminal. You can also see that the image is now visible in the Images node of the Docker Explorer.

    Docker image built

    Note: The screen shot above also shows the node:alpine image, but the version may vary over time. What's important is that you see the webapp:latest image in the list.

  4. Navigate to the Azure Container Registry resource you created earlier, and click the Access keys menu option. Verify you have enabled the Admin user.

    Access keys

  5. Enter the following commands into the Visual Studio Code terminal window, replacing the {username}, {password}, and {loginServer} with values from the Azure Portal.

    docker login -u {username} -p {password} {loginServer}
    docker tag webapp:latest {loginServer}/webapp
    docker push {loginServer}/webapp
    

    The terminal window will provide detailed status as the image is pushed to Azure Container Registry. Once it is complete, you can refresh the Docker Explorer to see the image has been published to the ACR resource.

    Pushed Image

Publish the Image to App Service

The final step in the deployment process is to pubish the Docker image from Azure Container Registry to Azure App Service. This can all be done within Visual Studio Code, and the site will be live in a few seconds.

  1. Right-click the webapp:latest image in the repository and select the Deploy Image to Azure App Service option.

    Deploy the Image

  2. Create a new Resource Group where you will host the App Service Plan and Web App.

    Select group

Note: We need to create another Resource Group because in the one we used before we already have a (Windows) App Service Consumption Plan running the Azure Function. The new App Service Plan will be based on Linux OS.

  1. Create an App Service Plan.

    Select plan

  2. Give the new App Service a name. This will need to be a globally unique name that will be used as the prefix to a URL ending with azurewebsites.net.

    Name the app

  3. Visual Studio Code will publish the App Service from the Azure Container Registry image in a few seconds. By ctrl or cmd-clicking the URL in the output window, you can load the app in your browser.

    App published

  4. Now the app is running, and you can see the social sentiments in the map.

    App running

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide
a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions
provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct.
For more information see the Code of Conduct FAQ or
contact opencode@microsoft.com with any additional questions or comments.

概覽

名稱與所有者microsoft/SmartHotel360-SentimentAnalysis
主編程語言JavaScript
編程語言JavaScript (語言數: 4)
平台
許可證MIT License
發布數0
創建於2017-12-01 00:55:19
推送於2020-02-04 23:24:10
最后一次提交2020-02-04 15:24:09
星數43
關注者數24
派生數48
提交數54
已啟用問題?
問題數5
打開的問題數0
拉請求數5
打開的拉請求數0
關閉的拉請求數1
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?
去到頂部