- Lync API is outdated and not very reliable.
- Easy and straightforward dialogs in the framework
And recently I've found a very interesting Bot Framework API called DirectLine.
It allows you to connect directly to the bot with a few lines of code, impersonate users and easily get and post messages. You can grab it from NuGet here: https://www.nuget.org/packages/Microsoft.Bot.Connector.DirectLine/. It also needs to be enabled at your bot configuration page:
Since I had some code that worked with Skype for Business already (using Lync 2013 SDK), I decided to use DirectLine as a proxy.
The idea is very simple:
- Receive message on Skype for Business
- Forward it to the Bot Framework via DirectLine API
- Wait for reply from DirectLine API
- Get the reply and send it to the user
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
private static LyncClient client; | |
// Your custom class that handles conversation events | |
private static LyncConversationManager conversation; | |
static void Main(string[] args) | |
{ | |
client = LyncClient.GetClient(); | |
conversation = new LyncConversationManager(brain, client); | |
conversation.StartListening(); | |
Console.ReadKey(); | |
} | |
... | |
public void StartListening() | |
{ | |
lyncClient.ConversationManager.ConversationAdded += ConversationManager_ConversationAdded; | |
} | |
private void ConversationManager_ConversationAdded(object sender, ConversationManagerEventArgs e) | |
{ | |
e.Conversation.ParticipantAdded += Conversation_ParticipantAdded; | |
foreach (var key in e.Conversation.Modalities.Keys) | |
{ | |
Modality val = e.Conversation.Modalities[key]; | |
if (val != null) | |
{ | |
val.Accept(); | |
} | |
} | |
} | |
... | |
private void Conversation_ParticipantAdded(object sender, ParticipantCollectionChangedEventArgs e) | |
{ | |
if (e.Participant.IsSelf == false) | |
{ | |
var imModality = (InstantMessageModality) e.Participant.Modalities[ModalityTypes.InstantMessage]; | |
imModality.InstantMessageReceived += ImModality_InstantMessageReceived; | |
} | |
} | |
private void ImModality_InstantMessageReceived(object sender, MessageSentEventArgs e) | |
{ | |
InstantMessageModality im = (InstantMessageModality)sender; | |
if (!im.Participant.IsSelf) | |
{ | |
// Here goes the code that will forward and respond to the messages | |
} | |
} |
Now, when the message is received, the ImModality_InstantMessageReceived is called. All you need to do is to grab the message text and send it to the Direct Line.
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
private void ImModality_InstantMessageReceived(object sender, MessageSentEventArgs e) | |
{ | |
... | |
var botConversation = directLineCLient.Conversations.NewConversationWithHttpMessagesAsync().Result.Body; | |
// Send message from Lync to Bot Framework | |
var message = new Message(); | |
message.ConversationId = botConversation.ConversationId; | |
message.Text = e.Text; | |
var result = directLineCLient.Conversations.PostMessageWithHttpMessagesAsync(botConversation.ConversationId, message).Result; | |
// Wait and then call to get the response back | |
directLineCLient.Conversations.GetMessagesWithHttpMessagesAsync(botConversation.ConversationId).Result; | |
... | |
} |
Of course you'll have to add some optimizations to close unused dialogs, and keep track of conversations, but overall, in less that 100 lines of code you can connect to the
server and start the bot conversation.
No comments:
Post a Comment