Use python for Slack Link Monitoring (#11964)

This commit is contained in:
Pere Miquel Brull 2023-06-12 10:02:43 +02:00 committed by GitHub
parent ba5f929f77
commit 134d5de8d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 41 additions and 6 deletions

View File

@ -24,16 +24,25 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Deps
run: |
python -m venv env
source env/bin/activate
pip install requests
- name: Monitor Link
id: monitor
continue-on-error: true
env:
PYTHONUNBUFFERED: "1"
run: |
sudo apt-get update && sudo apt-get install -y jq
curl -XPOST \
https://www.linkmonitor.dev/api/v1/validate \
-H "Content-Type: application/json" \
--data '{"url": "https://slack.open-metadata.org"}' | jq -e '.status == "active"' || exit 1
source env/bin/activate
python scripts/slack-link-monitor.py
- name: Slack on Failure
if: steps.monitor.outcome != 'success'

View File

@ -0,0 +1,26 @@
# Copyright 2021 Collate
# 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.
import logging
import requests
try:
res = requests.post(
"https://www.linkmonitor.dev/api/v1/validate",
headers={"Content-Type": "application/json"},
json={"url": "https://slack.open-metadata.org"},
)
if res.json().get("status") != "active":
raise RuntimeError("Expired status!")
except RuntimeError as err:
raise err
except Exception as err:
logging.error(f"Something went wrong fetching the data - [{err}]")