Перейти к файлу
Ken Chen ff3deee8b2 make build.sh executable 2018-09-19 15:30:21 +08:00
build Add support for users (#22) 2018-09-16 19:54:43 -07:00
samples Add support for users (#22) 2018-09-16 19:54:43 -07:00
src/SignalRServiceExtension Add support for users (#22) 2018-09-16 19:54:43 -07:00
test/SignalRServiceExtension.Tests Add support for users (#22) 2018-09-16 19:54:43 -07:00
.gitignore Add first set of tests 2018-07-26 14:31:42 -07:00
.travis.yml Update build to use KoreBuild (#24) 2018-09-14 16:16:00 +08:00
Directory.Build.props Update to Microsoft.Azure.WebJobs 3.0.0-rc1 (#25) 2018-09-16 19:54:13 -07:00
Directory.Build.targets Update build to use KoreBuild (#24) 2018-09-14 16:16:00 +08:00
LICENSE Change to Microsoft MIT license 2018-07-25 00:34:23 -07:00
README.md Fix links in README (#17) 2018-09-05 00:13:15 -07:00
azure-functions-signalrservice-extension.sln Update build to use KoreBuild (#24) 2018-09-14 16:16:00 +08:00
build.cmd Update build to use KoreBuild (#24) 2018-09-14 16:16:00 +08:00
build.sh make build.sh executable 2018-09-19 15:30:21 +08:00
global.json Update build to use KoreBuild (#24) 2018-09-14 16:16:00 +08:00
korebuild-lock.txt Update build to use KoreBuild (#24) 2018-09-14 16:16:00 +08:00
run.cmd Update build to use KoreBuild (#24) 2018-09-14 16:16:00 +08:00
run.ps1 Update build to use KoreBuild (#24) 2018-09-14 16:16:00 +08:00
run.sh Update build to use KoreBuild (#24) 2018-09-14 16:16:00 +08:00
version.props Update build to use KoreBuild (#24) 2018-09-14 16:16:00 +08:00

README.md

Azure Functions bindings for Azure SignalR Service

Intro

These bindings allow Azure Functions to integrate with Azure SignalR Service.

Supported scenarios

  • Allow clients to serverlessly connect to a SignalR Service hub without requiring an ASP.NET Core backend
  • Use Azure Functions (any language supported by V2) to broadcast messages to all clients connected to a SignalR Service hub
  • Example scenarios include: broadcast messages to a SignalR Service hub on HTTP requests and events from Cosmos DB change feed, Event Hub, Event Grid, etc

Bindings

SignalRConnectionInfo input binding makes it easy to generate the token required for clients to initiate a connection to Azure SignalR Service.

SignalR output binding allows messages to be broadcast to an Azure SignalR Service hub.

Current limitations

  • Only supports broadcasting at this time, cannot invoke methods on a subset of connections, users, or groups
  • Functions cannot be triggered by client invocation of server methods (clients need to call an HTTP endpoint or post messages to a Event Grid, etc, to trigger a function)

Prerequisites

Usage

Create Azure SignalR Service instance

  1. Create an Azure SignalR Service instance in the Azure Portal. Note the connection string, you'll need this later.

Create Function App with extension

  1. In a new folder, create a new Azure Functions app.
    • func init
  2. Install this Functions extension.
    • func extensions install -p AzureAdvocates.WebJobs.Extensions.SignalRService -v 0.3.0-alpha

Add application setting for SignalR connection string

  1. Create an app setting called AzureSignalRConnectionString with the SignalR connection string.
    • On localhost, use local.settings.json
    • In Azure, use App Settings

Using the SignalRConnectionInfo input binding

In order for a client to connect to SignalR, it needs to obtain the SignalR Service client hub URL and an access token.

  1. Create a new function named negotiate and use the SignalRConnectionInfo input binding to obtain the connection information and return it. Take a look at this sample.
  2. Before connecting to the SignalR Service, the client needs to call this function to obtain the endpoint URL and access token. See this file for a sample usage.

Binding schema:

{
  "type": "signalRConnectionInfo",
  "name": "connectionInfo",
  "hubName": "<hub_name>",
  "connectionStringSetting": "<setting_name>", // Defaults to AzureSignalRConnectionString
  "direction": "in"
}

Using the SignalR output binding

The SignalR output binding can be used to broadcast messages to all clients connected a hub. Take a look at this sample:

Binding schema:

{
  "type": "signalR",
  "name": "signalRMessages", // name of the output binding
  "hubName": "<hub_name>",
  "connectionStringSetting": "<setting_name>", // Defaults to AzureSignalRConnectionString
  "direction": "out"
}

To send one or more messages, set the output binding to an array of objects:

module.exports = function (context, req) {
  context.bindings.signalRMessages = [{
    "target": "newMessage", // name of the client method to invoke
    "arguments": [
      req.body // arguments to pass to client method
    ]
  }];
  context.done();
};

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.