This repository has been archived by the owner on Dec 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sample: 44.prompt-users-for-input (#932)
* Completed sample * Sample code * Correct readme and pom files. * Fix readme. * Delete settings.json Remove as this shouldn't be part of the source tree. Co-authored-by: tracyboehrer <[email protected]>
- Loading branch information
1 parent
6eeeb16
commit a408ebe
Showing
17 changed files
with
1,571 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) Microsoft Corporation. All rights reserved. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# Prompt users for input | ||
|
||
Bot Framework v4 Prompt Users for Input bot sample | ||
|
||
This bot has been created using [Bot Framework](https://dev.botframework.com). The bot maintains conversation state to track and direct the conversation and ask the user questions. The bot maintains user state to track the user's answers. | ||
|
||
## Prerequisites | ||
|
||
- Java 1.8+ | ||
- Install [Maven](https://maven.apache.org/) | ||
- An account on [Azure](https://azure.microsoft.com) if you want to deploy to Azure. | ||
|
||
## To try this sample locally | ||
- From the root of this project folder: | ||
- Build the sample using `mvn package` | ||
- Run it by using `java -jar .\target\bot-promptusersforinput-sample.jar` | ||
|
||
- Test the bot using Bot Framework Emulator | ||
|
||
[Bot Framework Emulator](https://github.com/microsoft/botframework-emulator) is a desktop application that allows bot developers to test and debug their bots on localhost or running remotely through a tunnel. | ||
|
||
- Install the Bot Framework Emulator version 4.3.0 or greater from [here](https://github.com/Microsoft/BotFramework-Emulator/releases) | ||
|
||
- Connect to the bot using Bot Framework Emulator | ||
|
||
- Launch Bot Framework Emulator | ||
- File -> Open Bot | ||
- Enter a Bot URL of `http://localhost:3978/api/messages` | ||
|
||
## Deploy the bot to Azure | ||
|
||
As described on [Deploy your bot](https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-deploy-az-cli), you will perform the first 4 steps to setup the Azure app, then deploy the code using the azure-webapp Maven plugin. | ||
|
||
### 1. Login to Azure | ||
From a command (or PowerShell) prompt in the root of the bot folder, execute: | ||
`az login` | ||
|
||
### 2. Set the subscription | ||
`az account set --subscription "<azure-subscription>"` | ||
|
||
If you aren't sure which subscription to use for deploying the bot, you can view the list of subscriptions for your account by using `az account list` command. | ||
|
||
### 3. Create an App registration | ||
`az ad app create --display-name "<botname>" --password "<appsecret>" --available-to-other-tenants` | ||
|
||
Replace `<botname>` and `<appsecret>` with your own values. | ||
|
||
`<botname>` is the unique name of your bot. | ||
`<appsecret>` is a minimum 16 character password for your bot. | ||
|
||
Record the `appid` from the returned JSON | ||
|
||
### 4. Create the Azure resources | ||
Replace the values for `<appid>`, `<appsecret>`, `<botname>`, and `<groupname>` in the following commands: | ||
|
||
#### To a new Resource Group | ||
`az deployment create --name "stateBotDeploy" --location "westus" --template-file ".\deploymentTemplates\template-with-new-rg.json" --parameters groupName="<groupname>" botId="<botname>" appId="<appid>" appSecret="<appsecret>"` | ||
|
||
#### To an existing Resource Group | ||
`az group deployment create --name "stateBotDeploy" --resource-group "<groupname>" --template-file ".\deploymentTemplates\template-with-preexisting-rg.json" --parameters botId="<botname>" appId="<appid>" appSecret="<appsecret>"` | ||
|
||
### 5. Update app id and password | ||
In src/main/resources/application.properties update | ||
- `MicrosoftAppPassword` with the botsecret value | ||
- `MicrosoftAppId` with the appid from the first step | ||
|
||
### 6. Deploy the code | ||
- Execute `mvn clean package` | ||
- Execute `mvn azure-webapp:deploy -Dgroupname="<groupname>" -Dbotname="<botname>"` | ||
|
||
If the deployment is successful, you will be able to test it via "Test in Web Chat" from the Azure Portal using the "Bot Channel Registration" for the bot. | ||
|
||
After the bot is deployed, you only need to execute #6 if you make changes to the bot. | ||
|
||
|
||
## Further reading | ||
|
||
- [Bot Framework Documentation](https://docs.botframework.com) | ||
- [Bot Basics](https://docs.microsoft.com/azure/bot-service/bot-builder-basics?view=azure-bot-service-4.0) | ||
- [Dialogs](https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-concept-dialog?view=azure-bot-service-4.0) | ||
- [Gathering Input Using Prompts](https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-prompts?view=azure-bot-service-4.0&tabs=csharp) | ||
- [Activity processing](https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-concept-activity-processing?view=azure-bot-service-4.0) | ||
- [Azure Bot Service Introduction](https://docs.microsoft.com/azure/bot-service/bot-service-overview-introduction?view=azure-bot-service-4.0) | ||
- [Azure Bot Service Documentation](https://docs.microsoft.com/azure/bot-service/?view=azure-bot-service-4.0) | ||
- [Azure CLI](https://docs.microsoft.com/cli/azure/?view=azure-cli-latest) | ||
- [Azure Portal](https://portal.azure.com) | ||
- [Channels and Bot Connector Service](https://docs.microsoft.com/en-us/azure/bot-service/bot-concepts?view=azure-bot-service-4.0) | ||
- [Maven Plugin for Azure App Service](https://docs.microsoft.com/en-us/java/api/overview/azure/maven/azure-webapp-maven-plugin/readme?view=azure-java-stable) | ||
- [Spring Boot](https://spring.io/projects/spring-boot) | ||
- [Azure for Java cloud developers](https://docs.microsoft.com/en-us/azure/java/?view=azure-java-stable) |
42 changes: 42 additions & 0 deletions
42
samples/44.prompt-users-for-input/deploymentTemplates/new-rg-parameters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"groupLocation": { | ||
"value": "" | ||
}, | ||
"groupName": { | ||
"value": "" | ||
}, | ||
"appId": { | ||
"value": "" | ||
}, | ||
"appSecret": { | ||
"value": "" | ||
}, | ||
"botId": { | ||
"value": "" | ||
}, | ||
"botSku": { | ||
"value": "" | ||
}, | ||
"newAppServicePlanName": { | ||
"value": "" | ||
}, | ||
"newAppServicePlanSku": { | ||
"value": { | ||
"name": "S1", | ||
"tier": "Standard", | ||
"size": "S1", | ||
"family": "S", | ||
"capacity": 1 | ||
} | ||
}, | ||
"newAppServicePlanLocation": { | ||
"value": "" | ||
}, | ||
"newWebAppName": { | ||
"value": "" | ||
} | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
samples/44.prompt-users-for-input/deploymentTemplates/preexisting-rg-parameters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"appId": { | ||
"value": "" | ||
}, | ||
"appSecret": { | ||
"value": "" | ||
}, | ||
"botId": { | ||
"value": "" | ||
}, | ||
"botSku": { | ||
"value": "" | ||
}, | ||
"newAppServicePlanName": { | ||
"value": "" | ||
}, | ||
"newAppServicePlanSku": { | ||
"value": { | ||
"name": "S1", | ||
"tier": "Standard", | ||
"size": "S1", | ||
"family": "S", | ||
"capacity": 1 | ||
} | ||
}, | ||
"appServicePlanLocation": { | ||
"value": "" | ||
}, | ||
"existingAppServicePlan": { | ||
"value": "" | ||
}, | ||
"newWebAppName": { | ||
"value": "" | ||
} | ||
} | ||
} |
191 changes: 191 additions & 0 deletions
191
samples/44.prompt-users-for-input/deploymentTemplates/template-with-new-rg.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,191 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"groupLocation": { | ||
"defaultValue": "", | ||
"type": "string", | ||
"metadata": { | ||
"description": "Specifies the location of the Resource Group." | ||
} | ||
}, | ||
"groupName": { | ||
"type": "string", | ||
"metadata": { | ||
"description": "Specifies the name of the Resource Group." | ||
} | ||
}, | ||
"appId": { | ||
"type": "string", | ||
"metadata": { | ||
"description": "Active Directory App ID, set as MicrosoftAppId in the Web App's Application Settings." | ||
} | ||
}, | ||
"appSecret": { | ||
"type": "string", | ||
"metadata": { | ||
"description": "Active Directory App Password, set as MicrosoftAppPassword in the Web App's Application Settings." | ||
} | ||
}, | ||
"botId": { | ||
"type": "string", | ||
"metadata": { | ||
"description": "The globally unique and immutable bot ID. Also used to configure the displayName of the bot, which is mutable." | ||
} | ||
}, | ||
"botSku": { | ||
"defaultValue": "F0", | ||
"type": "string", | ||
"metadata": { | ||
"description": "The pricing tier of the Bot Service Registration. Acceptable values are F0 and S1." | ||
} | ||
}, | ||
"newAppServicePlanName": { | ||
"defaultValue": "", | ||
"type": "string", | ||
"metadata": { | ||
"description": "The name of the App Service Plan." | ||
} | ||
}, | ||
"newAppServicePlanSku": { | ||
"type": "object", | ||
"defaultValue": { | ||
"name": "P1v2", | ||
"tier": "PremiumV2", | ||
"size": "P1v2", | ||
"family": "Pv2", | ||
"capacity": 1 | ||
}, | ||
"metadata": { | ||
"description": "The SKU of the App Service Plan. Defaults to Standard values." | ||
} | ||
}, | ||
"newAppServicePlanLocation": { | ||
"defaultValue": "", | ||
"type": "string", | ||
"metadata": { | ||
"description": "The location of the App Service Plan. Defaults to \"westus\"." | ||
} | ||
}, | ||
"newWebAppName": { | ||
"type": "string", | ||
"defaultValue": "", | ||
"metadata": { | ||
"description": "The globally unique name of the Web App. Defaults to the value passed in for \"botId\"." | ||
} | ||
} | ||
}, | ||
"variables": { | ||
"resourcesLocation": "[deployment().location]", | ||
"effectiveGroupLocation": "[if(empty(parameters('groupLocation')), variables('resourcesLocation'), parameters('groupLocation'))]", | ||
"effectivePlanLocation": "[if(empty(parameters('newAppServicePlanLocation')), variables('resourcesLocation'), parameters('newAppServicePlanLocation'))]", | ||
"appServicePlanName": "[if(empty(parameters('newAppServicePlanName')), concat(parameters('botId'), 'ServicePlan'), parameters('newAppServicePlanName'))]", | ||
"webAppName": "[if(empty(parameters('newWebAppName')), parameters('botId'), parameters('newWebAppName'))]", | ||
"siteHost": "[concat(variables('webAppName'), '.azurewebsites.net')]", | ||
"botEndpoint": "[concat('https://', variables('siteHost'), '/api/messages')]" | ||
}, | ||
"resources": [ | ||
{ | ||
"name": "[parameters('groupName')]", | ||
"type": "Microsoft.Resources/resourceGroups", | ||
"apiVersion": "2018-05-01", | ||
"location": "[variables('effectiveGroupLocation')]", | ||
"properties": { | ||
} | ||
}, | ||
{ | ||
"type": "Microsoft.Resources/deployments", | ||
"apiVersion": "2018-05-01", | ||
"name": "storageDeployment", | ||
"resourceGroup": "[parameters('groupName')]", | ||
"dependsOn": [ | ||
"[resourceId('Microsoft.Resources/resourceGroups/', parameters('groupName'))]" | ||
], | ||
"properties": { | ||
"mode": "Incremental", | ||
"template": { | ||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": {}, | ||
"variables": {}, | ||
"resources": [ | ||
{ | ||
"comments": "Create a new App Service Plan", | ||
"type": "Microsoft.Web/serverfarms", | ||
"name": "[variables('appServicePlanName')]", | ||
"apiVersion": "2018-02-01", | ||
"location": "[variables('effectivePlanLocation')]", | ||
"sku": "[parameters('newAppServicePlanSku')]", | ||
"kind": "linux", | ||
"properties": { | ||
"name": "[variables('appServicePlanName')]", | ||
"reserved":true | ||
} | ||
}, | ||
{ | ||
"comments": "Create a Web App using the new App Service Plan", | ||
"type": "Microsoft.Web/sites", | ||
"apiVersion": "2015-08-01", | ||
"location": "[variables('resourcesLocation')]", | ||
"kind": "app", | ||
"dependsOn": [ | ||
"[resourceId('Microsoft.Web/serverfarms/', variables('appServicePlanName'))]" | ||
], | ||
"name": "[variables('webAppName')]", | ||
"properties": { | ||
"name": "[variables('webAppName')]", | ||
"serverFarmId": "[variables('appServicePlanName')]", | ||
"siteConfig": { | ||
"appSettings": [ | ||
{ | ||
"name": "JAVA_OPTS", | ||
"value": "-Dserver.port=80" | ||
}, | ||
{ | ||
"name": "MicrosoftAppId", | ||
"value": "[parameters('appId')]" | ||
}, | ||
{ | ||
"name": "MicrosoftAppPassword", | ||
"value": "[parameters('appSecret')]" | ||
} | ||
], | ||
"cors": { | ||
"allowedOrigins": [ | ||
"https://botservice.hosting.portal.azure.net", | ||
"https://hosting.onecloud.azure-test.net/" | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"apiVersion": "2017-12-01", | ||
"type": "Microsoft.BotService/botServices", | ||
"name": "[parameters('botId')]", | ||
"location": "global", | ||
"kind": "bot", | ||
"sku": { | ||
"name": "[parameters('botSku')]" | ||
}, | ||
"properties": { | ||
"name": "[parameters('botId')]", | ||
"displayName": "[parameters('botId')]", | ||
"endpoint": "[variables('botEndpoint')]", | ||
"msaAppId": "[parameters('appId')]", | ||
"developerAppInsightsApplicationId": null, | ||
"developerAppInsightKey": null, | ||
"publishingCredentials": null, | ||
"storageResourceId": null | ||
}, | ||
"dependsOn": [ | ||
"[resourceId('Microsoft.Web/sites/', variables('webAppName'))]" | ||
] | ||
} | ||
], | ||
"outputs": {} | ||
} | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.