Created
November 8, 2022 20:23
-
-
Save Cyclenerd/4ff802d1dc487d3766780f3294f7f196 to your computer and use it in GitHub Desktop.
Google Cloud Function for publish message to NTFY topic
This file contains hidden or 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
# Copyright 2022 Nils Knieling | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# | |
# This Google Cloud Function reads Cloud Build status messages from Pub/Sub logsink | |
# and sends a notification to ntfy (https://ntfy.sh/) if the status is 'ERROR' or 'TIMEOUT'. | |
# | |
import os | |
import re | |
import sys | |
import base64 | |
import json | |
import requests | |
def publish(data: dict, context): | |
"""Triggered from a message on a Cloud Pub/Sub topic. | |
Args: | |
event (dict): Event payload. | |
context (google.cloud.functions.Context): Metadata for the event. | |
""" | |
# NTFY topic URL | |
url = os.getenv('NTFY_TOPIC_URL') | |
# Pub/Sub message | |
pubsub_data = base64.b64decode(data["data"]).decode("utf-8") | |
print(f"Data: {pubsub_data}") | |
# Decode JSON | |
pubsub_json = json.loads(pubsub_data) | |
pubsub_text_payload = pubsub_json["textPayload"] | |
print(f"Text Payload: {pubsub_text_payload}") | |
pubsub_build_id = pubsub_json["resource"]["labels"]["build_id"] | |
print(f"Build ID: {pubsub_build_id}") | |
pubsub_project_id = pubsub_json["resource"]["labels"]["project_id"] | |
print(f"Project: {pubsub_project_id}") | |
pubsub_timestamp = pubsub_json["timestamp"] | |
print(f"Timestamp: {pubsub_timestamp}") | |
# Send notification | |
if pubsub_text_payload in ['ERROR', 'TIMEOUT']: | |
console_url = 'https://console.cloud.google.com/cloud-build/builds' | |
result = requests.post(url, | |
data = f'Build ID: {pubsub_build_id}', | |
headers={ | |
"Tags": "cloud,building_construction,warning", | |
"Title": f"GCB {pubsub_text_payload}", | |
"Actions": f"view, {pubsub_project_id}, {console_url}?project={pubsub_project_id}" | |
} | |
) | |
print(f"Result: {result}") | |
return result |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment