Skip to content

coder/coder-platformx-notifications

Repository files navigation

Coder PlatformX Events Middleware

Overview

This sample middleware transforms Coder notification payloads into PlatformX-compatible payloads and forwards them to PlatformX by DX for tracking. It is optimized for serverless platforms such as AWS Lambda and Google Cloud Run but may require modifications to fit your organization's needs.

PlatformX Screenshot with Coder Events

Note

This repository is a sample implementation. Adaptations in other languages and frameworks are possible.

How It Works

Coder sends notifications via webhooks to this middleware, which processes and reformats the payload into a structure compatible with PlatformX by DX. The transformed payload is then forwarded to PlatformX for further processing and analysis.

graph LR;
    Coder[Coder Server] -->|Webhook Notification| Middleware[coder-platformx-notifications];
    Middleware -->|Transformed Payload| PlatformX[PlatformX API];
Loading

Supported Notification Types

This middleware supports the following Coder notifications:

  • Workspace Created
  • Workspace Manually Updated
  • User Account Created
  • User Account Suspended
  • User Account Activated

Deployment

This middleware is optimized for serverless environments such as Google Cloud Run and AWS Lambda. If using Docker as a fallback:

git clone <repo-url>
cd <repo-directory>
docker build -t coder-platformx-events-middleware .
docker run -p 8080:8080 --env-file .env coder-platformx-events-middleware

Environment Variables

The application expects the following environment variables when started. For local development, create a .env file in the project root and set the following variables. A .env.sample file is included.

Variable Description Example
LOG_LEVEL Logging level (DEBUG, INFO, WARNING) INFO
GETDX_API_KEY API key for PlatformX your-api-key
EVENTS_TRACKED Comma-separated list of tracked events Workspace Created,User Account Suspended

Usage with Coder Server

You must be running Coder v2.19+. To configure Coder to send notifications to this middleware, set the following environment variables for your Coder server:

export CODER_NOTIFICATIONS_WEBHOOK_ENDPOINT=<your-deployed-app-url>
export CODER_NOTIFICATIONS_METHOD=webhook # Optional, as multiple methods are supported

Replace <your-deployed-app-url> with the actual URL where this middleware is hosted.

API Endpoints

  • GET / - Health check endpoint
  • POST / - Webhook receiver

Logging

Logs are printed to the console and can be adjusted using the LOG_LEVEL variable. The available levels are:

Level Description
DEBUG Most verbose, useful for debugging
INFO Standard logging for normal operation
WARNING Logs only warnings and errors

Development

This application was written in Python 3.11.x.

  1. Clone the repository:

    git clone <repo-url>
    cd <repo-directory>
  2. Install dependencies:

    pip install -r requirements.txt
  3. Start the Flask development server:

    python3 main.py

About

Transform Coder webhooks to PlatformX events

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published