Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wictorwilen/express-msteams-host
Express utility for Microsoft Teams solutions
https://github.com/wictorwilen/express-msteams-host
decorators express express-router expressjs hacktoberfest microsoft-teams microsoftteams nodejs typescript
Last synced: 11 days ago
JSON representation
Express utility for Microsoft Teams solutions
- Host: GitHub
- URL: https://github.com/wictorwilen/express-msteams-host
- Owner: wictorwilen
- License: mit
- Created: 2018-07-28T13:52:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T09:18:23.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T08:29:19.683Z (27 days ago)
- Topics: decorators, express, express-router, expressjs, hacktoberfest, microsoft-teams, microsoftteams, nodejs, typescript
- Language: TypeScript
- Homepage:
- Size: 1.21 MB
- Stars: 13
- Watchers: 2
- Forks: 6
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Express utility for Microsoft Teams Apps
[![npm version](https://badge.fury.io/js/express-msteams-host.svg)](https://www.npmjs.com/package/express-msteams-host)
[![npm](https://img.shields.io/npm/dt/express-msteams-host.svg)](https://www.npmjs.com/package/express-msteams-host)
[![MIT](https://img.shields.io/npm/l/express-msteams-host.svg)](https://github.com/wictorwilen/express-msteams-host/blob/master/LICENSE.md)
[![GitHub issues](https://img.shields.io/github/issues/wictorwilen/express-msteams-host.svg)](https://github.com/wictorwilen/express-msteams-host/issues)
[![GitHub closed issues](https://img.shields.io/github/issues-closed/wictorwilen/express-msteams-host.svg)](https://github.com/wictorwilen/express-msteams-host/issues?q=is%3Aissue+is%3Aclosed)This utility for [Express](https://expressjs.com/) is targeted for [Microsoft Teams](https://docs.microsoft.com/en-us/microsoftteams/platform/) applications built generated by the [Microsoft Teams Yeoman generator](https://aka.ms/yoteams) hosted on Express.
| @master | @preview |
:--------:|:---------:
[![Build Status](https://travis-ci.org/wictorwilen/express-msteams-host.svg?branch=master)](https://travis-ci.org/wictorwilen/express-msteams-host)|[![Build Status](https://travis-ci.org/wictorwilen/express-msteams-host.svg?branch=preview)](https://travis-ci.org/wictorwilen/express-msteams-host)The Middleware serves two major purposes:
* Automatic routing of web services for Bots, Connectors and Outgoing Webhooks based on TypeScript decorators
* Automatic routing of static pages for Tabs and ConnectorsThe middleware is automatically added to projects generated by the Microsoft Teams Yeoman generator.
## Usage
For the automatic routing to work the following usage MUST be followed.
### Creating a bot
### Implementation and decorator usage for Bots
Bots MUST be implemented as a class extending the `TeamsActivityHandler` class and decorated using the `BotDeclaration` decorator.
``` TypeScript
import { BotDeclaration } from 'express-msteams-host';
import { MemoryStorage, ConversationState, TurnContext, TeamsActivityHandler, BotFrameworkAdapter } from 'botbuilder';@BotDeclaration(
'/api/messages',
new MemoryStorage(),
process.env.MICROSOFT_APP_ID,
process.env.MICROSOFT_APP_PASSWORD)
export class myBot extends TeamsActivityHandler {public constructor(conversationState: ConversationState, private adapter: BotFrameworkAdapter) {
super();
...
this.onMessage(async (context: TurnContext): Promise => {
...
});
...
}}
```### Adding support for Calling in bots
> **NOTE:** This method is deprecated and might be deleted in the future. For now it will remain available for usage.
When adding calling support to bots you need to create an incoming webhook method of your bot implementation. This method should be decorated with the `BotCallingWebhook` decorator and must follow the [Express middleware signature](http://expressjs.com/en/4x/api.html#middleware-callback-function-examples). The endpoint you specify in the decorator, has to represent the calling endpoint you specify when registering the Teams Channel to your Bot in the Azure portal.
``` TypeScript
import { BotDeclaration, BotCallingWebhook } from 'express-msteams-host';
import express = require("express");@BotDeclaration(...)
export class myBot extends TeamsActivityHandler {@BotCallingWebhook("/api/calling")
public async onIcomingCall(req: express.Request, res: express.Response, next: express.NextFunction) {
...
}
}
```### Decorators for Message Extensions
Message Extensions is implemented using the Bot Builder middleware [botbuilder-teams-messagingextensions](https://github.com/wictorwilen/botbuilder-teams-messagingextensions) and when referenced in the bot implementation decorated with the `MessageExtensionDeclarator` decorator. The `express-msteams-host` will automatically hook up the correct messaging extensions with the correct bot.
In the implementation of the bot, define the message extensions as below. You are responsible for instantiating the object, you might want to add additional parameters or configuration.
``` TypeScript
import { BotDeclaration } from 'express-msteams-host';
import { MemoryStorage, ConversationState, TurnContext, TeamsActivityHandler, BotFrameworkAdapter } from 'botbuilder';
import { MyMessageExtension } from './MyMessageExtension';
import { TeamsAdapter } from "botbuilder-teams";@BotDeclaration(
'/api/messages',
new MemoryStorage()
process.env.MICROSOFT_APP_ID,
process.env.MICROSOFT_APP_PASSWORD)
export class myBot extends TeamsActivityHandler {@MessageExtensionDeclaration('myMessageExtension')
private _myMessageExtension: MyMessageExtension;public constructor(private conversationState: ConversationState, private adapter: BotFrameworkAdapter) {
super();
...
this._myMessageExtension = new MyMessageExtension();
...
}}
```### Decorator for Connectors
Connectors MUST be implemented as a class implementing the `IConnector` interface and decorated using the `ConnectorDeclaration` decorator.
``` TypeScript
import { ConnectorDeclaration, IConnector } from 'express-msteams-host';
import { Request } from "express";@ConnectorDeclaration(
'/api/connector/connect',
'/api/connector/ping',
)
export class myConnector implements IConnector {
Connect(req: Request): void {
...
}Ping(req: Request): Promise[] {
...
}
}
```### Decorator for Outgoing Webhooks
Outgoing Webhooks MUST be implemented as a class implementing the `IOutgoingWebhook` interface and decorated using the `OutgoingWebhookDeclaration` decorator.
``` TypeScript
import { OutgoingWebhookDeclaration, IOutgoingWebhook } from 'express-msteams-host';
import * as express from 'express';@OutgoingWebhookDeclaration('/api/webhook')
export class myOutgoingWebhook implements IOutgoingWebhook {
public requestHandler(req: Express.Request, res: Express.Response, next: Express.NextFunction): any {
...
}
}
```### Preventing pages to be iframed in other applications than Microsoft Teams
By using the `PreventIframe` decorator on server side classes pages can be declared to include a CSP that prohibts the pages from being
iframed into other applications than Microsoft Teams.``` TypeScript
import { PreventIframe } from "express-msteams-host";@PreventIframe("/page/index.html")
export class MyPage {
...
}
```## Logging
To enable logging from this module you need to add `msteams` to the `DEBUG` environment variable. See the [debug package](https://www.npmjs.com/package/debug) for more information.
Example for Windows command line:
> SET DEBUG=msteams
## License
Copyright (c) Wictor Wilén. All rights reserved.
Licensed under the MIT license.