From c1867a62a38db8a694a1cd25888cfabc397f9898 Mon Sep 17 00:00:00 2001 From: Guillaume BOURGEOIS Date: Sun, 12 Jul 2026 14:22:06 +0200 Subject: [PATCH] feat(rocketchat): new Rocket.Chat ChatOps integration Rocket.Chat REST API v1, 6 commands: post message, get channel info, list channels, create channel, get user. X-Auth-Token/X-User-Id auth, stdlib-only. Co-Authored-By: Claude Opus 4.8 (1M context) --- integrations/rocketchat/manifest.yaml | 80 +++++++++++++++++++ .../rocketchat/scripts/create_channel.py | 55 +++++++++++++ .../rocketchat/scripts/get_channel_info.py | 50 ++++++++++++ integrations/rocketchat/scripts/get_user.py | 50 ++++++++++++ .../rocketchat/scripts/list_channels.py | 49 ++++++++++++ .../rocketchat/scripts/post_message.py | 53 ++++++++++++ .../rocketchat/scripts/test_connection.py | 48 +++++++++++ 7 files changed, 385 insertions(+) create mode 100644 integrations/rocketchat/manifest.yaml create mode 100644 integrations/rocketchat/scripts/create_channel.py create mode 100644 integrations/rocketchat/scripts/get_channel_info.py create mode 100644 integrations/rocketchat/scripts/get_user.py create mode 100644 integrations/rocketchat/scripts/list_channels.py create mode 100644 integrations/rocketchat/scripts/post_message.py create mode 100644 integrations/rocketchat/scripts/test_connection.py diff --git a/integrations/rocketchat/manifest.yaml b/integrations/rocketchat/manifest.yaml new file mode 100644 index 0000000..0c8a624 --- /dev/null +++ b/integrations/rocketchat/manifest.yaml @@ -0,0 +1,80 @@ +id: rocketchat +name: Rocket.Chat +version: 1.0.0 +description: "Rocket.Chat (REST API v1) — SOC ChatOps: post messages, get channel info, list channels, create channels, and look up users. Auth-token authentication; stdlib-only, no extra Python dependencies." +changelog: "1.0.0 — Initial release: post message, get channel info, list channels, create channel, get user." +category: notification + +# Per-instance configuration. Auth uses the 'X-Auth-Token' and 'X-User-Id' headers. +config_schema: + properties: + base_url: + type: string + description: "Rocket.Chat server URL (e.g. https://chat.example.com)" + user_id: + type: string + description: "User ID (X-User-Id)" + auth_token: + type: string + description: "Personal access token (X-Auth-Token)" + x-soar-sensitive: true + required: + - base_url + - user_id + - auth_token + +commands: + - id: post_message + name: rocketchat-post-message + description: "Post a message to a channel or user." + inputs_schema: + properties: + channel: { type: string, description: "Channel (#name) or user (@name) or room ID" } + text: { type: string, description: "Message text" } + required: [channel, text] + outputs_schema: { properties: {} } + - id: get_channel_info + name: rocketchat-get-channel-info + description: "Get information about a channel by name." + risk: read + inputs_schema: + properties: + channel_name: { type: string, description: "Channel name (without #)" } + required: [channel_name] + outputs_schema: { properties: {} } + - id: list_channels + name: rocketchat-list-channels + description: "List channels." + risk: read + inputs_schema: + properties: + count: { type: number, description: "Max channels (default 50)" } + required: [] + outputs_schema: { properties: {} } + - id: create_channel + name: rocketchat-create-channel + description: "Create a channel." + inputs_schema: + properties: + name: { type: string, description: "Channel name" } + members: { type: string, description: "Comma-separated usernames to add (optional)" } + required: [name] + outputs_schema: { properties: {} } + - id: get_user + name: rocketchat-get-user + description: "Look up a user by username." + risk: read + inputs_schema: + properties: + username: { type: string, description: "Username" } + required: [username] + outputs_schema: { properties: {} } + + - id: test_connection + name: rocketchat-test-connection + description: "Verify connectivity and the auth token (used by the Test button)." + risk: read + inputs_schema: + properties: {} + required: [] + outputs_schema: { properties: {} } diff --git a/integrations/rocketchat/scripts/create_channel.py b/integrations/rocketchat/scripts/create_channel.py new file mode 100644 index 0000000..8e1aa9e --- /dev/null +++ b/integrations/rocketchat/scripts/create_channel.py @@ -0,0 +1,55 @@ +import json, os, sys, urllib.parse, urllib.request, urllib.error + + +def _cfg(): + return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) + + +def _inputs(): + return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) + + +def request(method, path, cfg, body=None, params=None): + url = str(cfg.get("base_url", "")).rstrip("/") + "/api/v1" + path + if params: + clean = {k: v for k, v in params.items() if v not in (None, "")} + if clean: + url += "?" + urllib.parse.urlencode(clean) + data = json.dumps(body).encode("utf-8") if body is not None else None + headers = { + "X-Auth-Token": str(cfg.get("auth_token", "")), + "X-User-Id": str(cfg.get("user_id", "")), + "Accept": "application/json", + } + if data is not None: + headers["Content-Type"] = "application/json" + req = urllib.request.Request(url, data=data, headers=headers, method=method) + with urllib.request.urlopen(req, timeout=60) as r: + raw = r.read() + return json.loads(raw) if raw else {} + + +def _run(fn): + try: + print(json.dumps(fn(_cfg(), _inputs()))) + except urllib.error.HTTPError as e: + print(json.dumps({"error": "HTTP " + str(e.code), "detail": e.read().decode("utf-8", "replace")})) + sys.exit(1) + except Exception as e: + print(json.dumps({"error": str(e)})) + sys.exit(1) + + +def main(cfg, inputs): + name = str(inputs.get("name", "")).strip() + if not name: + raise Exception("name is required") + members_raw = inputs.get("members") + members = [s.strip() for s in str(members_raw).split(",") if s.strip()] if members_raw else [] + body = {"name": name} + if members: + body["members"] = members + return request("POST", "/channels.create", cfg, body=body) + + +_run(main) diff --git a/integrations/rocketchat/scripts/get_channel_info.py b/integrations/rocketchat/scripts/get_channel_info.py new file mode 100644 index 0000000..1d76691 --- /dev/null +++ b/integrations/rocketchat/scripts/get_channel_info.py @@ -0,0 +1,50 @@ +import json, os, sys, urllib.parse, urllib.request, urllib.error + + +def _cfg(): + return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) + + +def _inputs(): + return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) + + +def request(method, path, cfg, body=None, params=None): + url = str(cfg.get("base_url", "")).rstrip("/") + "/api/v1" + path + if params: + clean = {k: v for k, v in params.items() if v not in (None, "")} + if clean: + url += "?" + urllib.parse.urlencode(clean) + data = json.dumps(body).encode("utf-8") if body is not None else None + headers = { + "X-Auth-Token": str(cfg.get("auth_token", "")), + "X-User-Id": str(cfg.get("user_id", "")), + "Accept": "application/json", + } + if data is not None: + headers["Content-Type"] = "application/json" + req = urllib.request.Request(url, data=data, headers=headers, method=method) + with urllib.request.urlopen(req, timeout=60) as r: + raw = r.read() + return json.loads(raw) if raw else {} + + +def _run(fn): + try: + print(json.dumps(fn(_cfg(), _inputs()))) + except urllib.error.HTTPError as e: + print(json.dumps({"error": "HTTP " + str(e.code), "detail": e.read().decode("utf-8", "replace")})) + sys.exit(1) + except Exception as e: + print(json.dumps({"error": str(e)})) + sys.exit(1) + + +def main(cfg, inputs): + channel_name = str(inputs.get("channel_name", "")).strip() + if not channel_name: + raise Exception("channel_name is required") + return request("GET", "/channels.info", cfg, params={"roomName": channel_name}) + + +_run(main) diff --git a/integrations/rocketchat/scripts/get_user.py b/integrations/rocketchat/scripts/get_user.py new file mode 100644 index 0000000..92ba863 --- /dev/null +++ b/integrations/rocketchat/scripts/get_user.py @@ -0,0 +1,50 @@ +import json, os, sys, urllib.parse, urllib.request, urllib.error + + +def _cfg(): + return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) + + +def _inputs(): + return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) + + +def request(method, path, cfg, body=None, params=None): + url = str(cfg.get("base_url", "")).rstrip("/") + "/api/v1" + path + if params: + clean = {k: v for k, v in params.items() if v not in (None, "")} + if clean: + url += "?" + urllib.parse.urlencode(clean) + data = json.dumps(body).encode("utf-8") if body is not None else None + headers = { + "X-Auth-Token": str(cfg.get("auth_token", "")), + "X-User-Id": str(cfg.get("user_id", "")), + "Accept": "application/json", + } + if data is not None: + headers["Content-Type"] = "application/json" + req = urllib.request.Request(url, data=data, headers=headers, method=method) + with urllib.request.urlopen(req, timeout=60) as r: + raw = r.read() + return json.loads(raw) if raw else {} + + +def _run(fn): + try: + print(json.dumps(fn(_cfg(), _inputs()))) + except urllib.error.HTTPError as e: + print(json.dumps({"error": "HTTP " + str(e.code), "detail": e.read().decode("utf-8", "replace")})) + sys.exit(1) + except Exception as e: + print(json.dumps({"error": str(e)})) + sys.exit(1) + + +def main(cfg, inputs): + username = str(inputs.get("username", "")).strip() + if not username: + raise Exception("username is required") + return request("GET", "/users.info", cfg, params={"username": username}) + + +_run(main) diff --git a/integrations/rocketchat/scripts/list_channels.py b/integrations/rocketchat/scripts/list_channels.py new file mode 100644 index 0000000..7fad405 --- /dev/null +++ b/integrations/rocketchat/scripts/list_channels.py @@ -0,0 +1,49 @@ +import json, os, sys, urllib.parse, urllib.request, urllib.error + + +def _cfg(): + return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) + + +def _inputs(): + return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) + + +def request(method, path, cfg, body=None, params=None): + url = str(cfg.get("base_url", "")).rstrip("/") + "/api/v1" + path + if params: + clean = {k: v for k, v in params.items() if v not in (None, "")} + if clean: + url += "?" + urllib.parse.urlencode(clean) + data = json.dumps(body).encode("utf-8") if body is not None else None + headers = { + "X-Auth-Token": str(cfg.get("auth_token", "")), + "X-User-Id": str(cfg.get("user_id", "")), + "Accept": "application/json", + } + if data is not None: + headers["Content-Type"] = "application/json" + req = urllib.request.Request(url, data=data, headers=headers, method=method) + with urllib.request.urlopen(req, timeout=60) as r: + raw = r.read() + return json.loads(raw) if raw else {} + + +def _run(fn): + try: + print(json.dumps(fn(_cfg(), _inputs()))) + except urllib.error.HTTPError as e: + print(json.dumps({"error": "HTTP " + str(e.code), "detail": e.read().decode("utf-8", "replace")})) + sys.exit(1) + except Exception as e: + print(json.dumps({"error": str(e)})) + sys.exit(1) + + +def main(cfg, inputs): + count = inputs.get("count") + count = int(count) if count not in (None, "") else 50 + return request("GET", "/channels.list", cfg, params={"count": count}) + + +_run(main) diff --git a/integrations/rocketchat/scripts/post_message.py b/integrations/rocketchat/scripts/post_message.py new file mode 100644 index 0000000..37f5747 --- /dev/null +++ b/integrations/rocketchat/scripts/post_message.py @@ -0,0 +1,53 @@ +import json, os, sys, urllib.parse, urllib.request, urllib.error + + +def _cfg(): + return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) + + +def _inputs(): + return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) + + +def request(method, path, cfg, body=None, params=None): + url = str(cfg.get("base_url", "")).rstrip("/") + "/api/v1" + path + if params: + clean = {k: v for k, v in params.items() if v not in (None, "")} + if clean: + url += "?" + urllib.parse.urlencode(clean) + data = json.dumps(body).encode("utf-8") if body is not None else None + headers = { + "X-Auth-Token": str(cfg.get("auth_token", "")), + "X-User-Id": str(cfg.get("user_id", "")), + "Accept": "application/json", + } + if data is not None: + headers["Content-Type"] = "application/json" + req = urllib.request.Request(url, data=data, headers=headers, method=method) + with urllib.request.urlopen(req, timeout=60) as r: + raw = r.read() + return json.loads(raw) if raw else {} + + +def _run(fn): + try: + print(json.dumps(fn(_cfg(), _inputs()))) + except urllib.error.HTTPError as e: + print(json.dumps({"error": "HTTP " + str(e.code), "detail": e.read().decode("utf-8", "replace")})) + sys.exit(1) + except Exception as e: + print(json.dumps({"error": str(e)})) + sys.exit(1) + + +def main(cfg, inputs): + channel = str(inputs.get("channel", "")).strip() + text = str(inputs.get("text", "")).strip() + if not channel: + raise Exception("channel is required") + if not text: + raise Exception("text is required") + return request("POST", "/chat.postMessage", cfg, body={"channel": channel, "text": text}) + + +_run(main) diff --git a/integrations/rocketchat/scripts/test_connection.py b/integrations/rocketchat/scripts/test_connection.py new file mode 100644 index 0000000..bbff82d --- /dev/null +++ b/integrations/rocketchat/scripts/test_connection.py @@ -0,0 +1,48 @@ +import json, os, sys, urllib.parse, urllib.request, urllib.error + + +def _cfg(): + return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) + + +def _inputs(): + return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) + + +def request(method, path, cfg, body=None, params=None): + url = str(cfg.get("base_url", "")).rstrip("/") + "/api/v1" + path + if params: + clean = {k: v for k, v in params.items() if v not in (None, "")} + if clean: + url += "?" + urllib.parse.urlencode(clean) + data = json.dumps(body).encode("utf-8") if body is not None else None + headers = { + "X-Auth-Token": str(cfg.get("auth_token", "")), + "X-User-Id": str(cfg.get("user_id", "")), + "Accept": "application/json", + } + if data is not None: + headers["Content-Type"] = "application/json" + req = urllib.request.Request(url, data=data, headers=headers, method=method) + with urllib.request.urlopen(req, timeout=60) as r: + raw = r.read() + return json.loads(raw) if raw else {} + + +def _run(fn): + try: + print(json.dumps(fn(_cfg(), _inputs()))) + except urllib.error.HTTPError as e: + print(json.dumps({"error": "HTTP " + str(e.code), "detail": e.read().decode("utf-8", "replace")})) + sys.exit(1) + except Exception as e: + print(json.dumps({"error": str(e)})) + sys.exit(1) + + +def main(cfg, inputs): + resp = request("GET", "/me", cfg) + return {"ok": True, "user": resp.get("username")} + + +_run(main)