cloudcomponents.cdk-chatops


Namecloudcomponents.cdk-chatops JSON
Version 2.3.0 PyPI version JSON
download
home_pagehttps://github.com/cloudcomponents/cdk-constructs
SummaryConstructs for chattool integration: #slack / msteams
upload_time2024-04-17 18:36:01
maintainerNone
docs_urlNone
authorhupe1980
requires_python~=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![cloudcomponents Logo](https://raw.githubusercontent.com/cloudcomponents/cdk-constructs/master/logo.png)](https://github.com/cloudcomponents/cdk-constructs)

# @cloudcomponents/cdk-chatops

[![Build Status](https://github.com/cloudcomponents/cdk-constructs/workflows/Build/badge.svg)](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build)
[![cdkdx](https://img.shields.io/badge/buildtool-cdkdx-blue.svg)](https://github.com/hupe1980/cdkdx)
[![typescript](https://img.shields.io/badge/jsii-typescript-blueviolet.svg)](https://www.npmjs.com/package/@cloudcomponents/cdk-chatops)
[![python](https://img.shields.io/badge/jsii-python-blueviolet.svg)](https://pypi.org/project/cloudcomponents.cdk-chatops/)

> Constructs for chattool integration: #slack / msteams

## Install

TypeScript/JavaScript:

```bash
npm i @cloudcomponents/cdk-chatops
```

Python:

```bash
pip install cloudcomponents.cdk-chatops
```

## How to use

```python
import {
  RepositoryNotificationRule,
  PipelineNotificationRule,
  RepositoryEvent,
  PipelineEvent,
  SlackChannel,
  MSTeamsIncomingWebhook,
} from '@cloudcomponents/cdk-developer-tools-notifications';
import {
  SlackChannelConfiguration,
  MSTeamsIncomingWebhookConfiguration,
  AccountLabelMode,
} from '@cloudcomponents/cdk-chatops';
import { Stack, StackProps } from 'aws-cdk-lib';
import { Repository } from 'aws-cdk-lib/aws-codecommit';
import { Pipeline, Artifact } from 'aws-cdk-lib/aws-codepipeline';
import { CodeCommitSourceAction, ManualApprovalAction } from 'aws-cdk-lib/aws-codepipeline-actions';
import { Construct } from 'constructs';

export class NotificationsStack extends Stack {
  constructor(scope: Construct, id: string, props?: StackProps) {
    super(scope, id, props);

    const repository = new Repository(this, 'Repository', {
      repositoryName: 'notifications-repository',
    });

    const slackChannel = new SlackChannelConfiguration(this, 'SlackChannel', {
      slackWorkspaceId: process.env.SLACK_WORKSPACE_ID as string,
      configurationName: 'notifications',
      slackChannelId: process.env.SLACK_CHANNEL_ID as string,
    });

    const webhook = new MSTeamsIncomingWebhookConfiguration(
      this,
      'MSTeamsWebhook',
      {
        url: process.env.INCOMING_WEBHOOK_URL as string,
        accountLabelMode: AccountLabelMode.ID_AND_ALIAS,
        themeColor: '#FF0000',
      },
    );

    new RepositoryNotificationRule(this, 'RepoNotifications', {
      name: 'notifications-repository',
      repository,
      events: [
        RepositoryEvent.COMMENTS_ON_COMMITS,
        RepositoryEvent.PULL_REQUEST_CREATED,
        RepositoryEvent.PULL_REQUEST_MERGED,
      ],
      targets: [
        new SlackChannel(slackChannel),
        new MSTeamsIncomingWebhook(webhook),
      ],
    });

    const sourceArtifact = new Artifact();

    const sourceAction = new CodeCommitSourceAction({
      actionName: 'CodeCommit',
      repository,
      output: sourceArtifact,
    });

    const approvalAction = new ManualApprovalAction({
      actionName: 'Approval',
    });

    const pipeline = new Pipeline(this, 'Pipeline', {
      pipelineName: 'notifications-pipeline',
      stages: [
        {
          stageName: 'Source',
          actions: [sourceAction],
        },
        {
          stageName: 'Approval',
          actions: [approvalAction],
        },
      ],
    });

    new PipelineNotificationRule(this, 'PipelineNotificationRule', {
      name: 'pipeline-notification',
      pipeline,
      events: [
        PipelineEvent.PIPELINE_EXECUTION_STARTED,
        PipelineEvent.PIPELINE_EXECUTION_FAILED,
        PipelineEvent.PIPELINE_EXECUTION_SUCCEEDED,
        // PipelineEvent.ACTION_EXECUTION_STARTED,
        // PipelineEvent.ACTION_EXECUTION_SUCCEEDED,
        // PipelineEvent.ACTION_EXECUTION_FAILED,
        PipelineEvent.MANUAL_APPROVAL_NEEDED,
        PipelineEvent.MANUAL_APPROVAL_SUCCEEDED,
        // PipelineEvent.MANUAL_APPROVAL_FAILED,
        // PipelineEvent.STAGE_EXECUTION_STARTED,
        // PipelineEvent.STAGE_EXECUTION_SUCCEEDED,
        // PipelineEvent.STAGE_EXECUTION_FAILED,
      ],
      targets: [
        new SlackChannel(slackChannel),
        new MSTeamsIncomingWebhook(webhook),
      ],
    });
  }
}
```

## MSTeams

[Add incoming webhook](https://docs.microsoft.com/de-de/microsoftteams/platform/webhooks-and-connectors/how-to/add-incoming-webhook):

1. Navigate to the channel where you want to add the webhook and select (•••) More Options from the top navigation bar.
2. Choose Connectors from the drop-down menu and search for Incoming Webhook.
3. Select the Configure button, provide a name, and, optionally, upload an image avatar for your webhook.
4. The dialog window will present a unique URL that will map to the channel. Make sure that you copy and save the URL—you will need to provide it to the outside service.
5. Select the Done button. The webhook will be available in the team channel.

## API Reference

See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-chatops/API.md).

## Example

See more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples).

## License

[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-chatops/LICENSE)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/cloudcomponents/cdk-constructs",
    "name": "cloudcomponents.cdk-chatops",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "~=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "hupe1980",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/53/19/4647425d6de77ce886ad74548d82bde43cb1d7cded2683f5123dde3ebc6f/cloudcomponents.cdk-chatops-2.3.0.tar.gz",
    "platform": null,
    "description": "[![cloudcomponents Logo](https://raw.githubusercontent.com/cloudcomponents/cdk-constructs/master/logo.png)](https://github.com/cloudcomponents/cdk-constructs)\n\n# @cloudcomponents/cdk-chatops\n\n[![Build Status](https://github.com/cloudcomponents/cdk-constructs/workflows/Build/badge.svg)](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build)\n[![cdkdx](https://img.shields.io/badge/buildtool-cdkdx-blue.svg)](https://github.com/hupe1980/cdkdx)\n[![typescript](https://img.shields.io/badge/jsii-typescript-blueviolet.svg)](https://www.npmjs.com/package/@cloudcomponents/cdk-chatops)\n[![python](https://img.shields.io/badge/jsii-python-blueviolet.svg)](https://pypi.org/project/cloudcomponents.cdk-chatops/)\n\n> Constructs for chattool integration: #slack / msteams\n\n## Install\n\nTypeScript/JavaScript:\n\n```bash\nnpm i @cloudcomponents/cdk-chatops\n```\n\nPython:\n\n```bash\npip install cloudcomponents.cdk-chatops\n```\n\n## How to use\n\n```python\nimport {\n  RepositoryNotificationRule,\n  PipelineNotificationRule,\n  RepositoryEvent,\n  PipelineEvent,\n  SlackChannel,\n  MSTeamsIncomingWebhook,\n} from '@cloudcomponents/cdk-developer-tools-notifications';\nimport {\n  SlackChannelConfiguration,\n  MSTeamsIncomingWebhookConfiguration,\n  AccountLabelMode,\n} from '@cloudcomponents/cdk-chatops';\nimport { Stack, StackProps } from 'aws-cdk-lib';\nimport { Repository } from 'aws-cdk-lib/aws-codecommit';\nimport { Pipeline, Artifact } from 'aws-cdk-lib/aws-codepipeline';\nimport { CodeCommitSourceAction, ManualApprovalAction } from 'aws-cdk-lib/aws-codepipeline-actions';\nimport { Construct } from 'constructs';\n\nexport class NotificationsStack extends Stack {\n  constructor(scope: Construct, id: string, props?: StackProps) {\n    super(scope, id, props);\n\n    const repository = new Repository(this, 'Repository', {\n      repositoryName: 'notifications-repository',\n    });\n\n    const slackChannel = new SlackChannelConfiguration(this, 'SlackChannel', {\n      slackWorkspaceId: process.env.SLACK_WORKSPACE_ID as string,\n      configurationName: 'notifications',\n      slackChannelId: process.env.SLACK_CHANNEL_ID as string,\n    });\n\n    const webhook = new MSTeamsIncomingWebhookConfiguration(\n      this,\n      'MSTeamsWebhook',\n      {\n        url: process.env.INCOMING_WEBHOOK_URL as string,\n        accountLabelMode: AccountLabelMode.ID_AND_ALIAS,\n        themeColor: '#FF0000',\n      },\n    );\n\n    new RepositoryNotificationRule(this, 'RepoNotifications', {\n      name: 'notifications-repository',\n      repository,\n      events: [\n        RepositoryEvent.COMMENTS_ON_COMMITS,\n        RepositoryEvent.PULL_REQUEST_CREATED,\n        RepositoryEvent.PULL_REQUEST_MERGED,\n      ],\n      targets: [\n        new SlackChannel(slackChannel),\n        new MSTeamsIncomingWebhook(webhook),\n      ],\n    });\n\n    const sourceArtifact = new Artifact();\n\n    const sourceAction = new CodeCommitSourceAction({\n      actionName: 'CodeCommit',\n      repository,\n      output: sourceArtifact,\n    });\n\n    const approvalAction = new ManualApprovalAction({\n      actionName: 'Approval',\n    });\n\n    const pipeline = new Pipeline(this, 'Pipeline', {\n      pipelineName: 'notifications-pipeline',\n      stages: [\n        {\n          stageName: 'Source',\n          actions: [sourceAction],\n        },\n        {\n          stageName: 'Approval',\n          actions: [approvalAction],\n        },\n      ],\n    });\n\n    new PipelineNotificationRule(this, 'PipelineNotificationRule', {\n      name: 'pipeline-notification',\n      pipeline,\n      events: [\n        PipelineEvent.PIPELINE_EXECUTION_STARTED,\n        PipelineEvent.PIPELINE_EXECUTION_FAILED,\n        PipelineEvent.PIPELINE_EXECUTION_SUCCEEDED,\n        // PipelineEvent.ACTION_EXECUTION_STARTED,\n        // PipelineEvent.ACTION_EXECUTION_SUCCEEDED,\n        // PipelineEvent.ACTION_EXECUTION_FAILED,\n        PipelineEvent.MANUAL_APPROVAL_NEEDED,\n        PipelineEvent.MANUAL_APPROVAL_SUCCEEDED,\n        // PipelineEvent.MANUAL_APPROVAL_FAILED,\n        // PipelineEvent.STAGE_EXECUTION_STARTED,\n        // PipelineEvent.STAGE_EXECUTION_SUCCEEDED,\n        // PipelineEvent.STAGE_EXECUTION_FAILED,\n      ],\n      targets: [\n        new SlackChannel(slackChannel),\n        new MSTeamsIncomingWebhook(webhook),\n      ],\n    });\n  }\n}\n```\n\n## MSTeams\n\n[Add incoming webhook](https://docs.microsoft.com/de-de/microsoftteams/platform/webhooks-and-connectors/how-to/add-incoming-webhook):\n\n1. Navigate to the channel where you want to add the webhook and select (\u2022\u2022\u2022) More Options from the top navigation bar.\n2. Choose Connectors from the drop-down menu and search for Incoming Webhook.\n3. Select the Configure button, provide a name, and, optionally, upload an image avatar for your webhook.\n4. The dialog window will present a unique URL that will map to the channel. Make sure that you copy and save the URL\u2014you will need to provide it to the outside service.\n5. Select the Done button. The webhook will be available in the team channel.\n\n## API Reference\n\nSee [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-chatops/API.md).\n\n## Example\n\nSee more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples).\n\n## License\n\n[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-chatops/LICENSE)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Constructs for chattool integration: #slack / msteams",
    "version": "2.3.0",
    "project_urls": {
        "Homepage": "https://github.com/cloudcomponents/cdk-constructs",
        "Source": "https://github.com/cloudcomponents/cdk-constructs.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2752719e007a5f2d15391f05e135db47e93c8b15fa619e8208906be424cc28c",
                "md5": "1e8af2e09723fbe83142d9d1285adf3d",
                "sha256": "f460feccf86c9a6454acb9f51b1b5c871d6147396fa3f1b7f9484521f2dea675"
            },
            "downloads": -1,
            "filename": "cloudcomponents.cdk_chatops-2.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1e8af2e09723fbe83142d9d1285adf3d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.8",
            "size": 1355513,
            "upload_time": "2024-04-17T18:35:56",
            "upload_time_iso_8601": "2024-04-17T18:35:56.814280Z",
            "url": "https://files.pythonhosted.org/packages/b2/75/2719e007a5f2d15391f05e135db47e93c8b15fa619e8208906be424cc28c/cloudcomponents.cdk_chatops-2.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53194647425d6de77ce886ad74548d82bde43cb1d7cded2683f5123dde3ebc6f",
                "md5": "d7c23ba48432da9988aa0fcdf1bf7b4f",
                "sha256": "e5cf0bf9bff25015dd21fff49f9ed553e9b059f051394ff5a382c8525d964f51"
            },
            "downloads": -1,
            "filename": "cloudcomponents.cdk-chatops-2.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d7c23ba48432da9988aa0fcdf1bf7b4f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.8",
            "size": 1356770,
            "upload_time": "2024-04-17T18:36:01",
            "upload_time_iso_8601": "2024-04-17T18:36:01.031247Z",
            "url": "https://files.pythonhosted.org/packages/53/19/4647425d6de77ce886ad74548d82bde43cb1d7cded2683f5123dde3ebc6f/cloudcomponents.cdk-chatops-2.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-17 18:36:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cloudcomponents",
    "github_project": "cdk-constructs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cloudcomponents.cdk-chatops"
}
        
Elapsed time: 0.28110s