Compare commits
2 commits
1153172793
...
6b0cdef74f
Author | SHA1 | Date | |
---|---|---|---|
|
6b0cdef74f | ||
|
29970c5f2e |
7 changed files with 185 additions and 96 deletions
88
.forgejo/workflows/release.yaml
Normal file
88
.forgejo/workflows/release.yaml
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
---
|
||||||
|
name: Build and publish Debian package
|
||||||
|
on: [create]
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: docker.io/brenard/debian-python-deb:latest
|
||||||
|
steps:
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Build Debian package
|
||||||
|
env:
|
||||||
|
MAINTAINER_NAME: ${{ vars.MAINTAINER_NAME }}
|
||||||
|
MAINTAINER_EMAIL: ${{ vars.MAINTAINER_EMAIL }}
|
||||||
|
DEBIAN_CODENAME: ${{ vars.DEBIAN_CODENAME }}
|
||||||
|
run: |
|
||||||
|
echo "${{ secrets.GPG_KEY }}"|base64 -d|gpg --import
|
||||||
|
./build.sh
|
||||||
|
- name: Upload Debian package files
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: dist
|
||||||
|
path: |
|
||||||
|
dist/*.buildinfo
|
||||||
|
dist/*.changes
|
||||||
|
dist/*.deb
|
||||||
|
dist/*.dsc
|
||||||
|
dist/*.tar.gz
|
||||||
|
dist/release_notes.md
|
||||||
|
check_esphome_devices
|
||||||
|
|
||||||
|
publish-forgejo:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: docker.io/brenard/debian-python-deb:latest
|
||||||
|
steps:
|
||||||
|
- name: Download Debian package files
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: dist
|
||||||
|
|
||||||
|
- name: Create the release
|
||||||
|
id: create-release
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
mkdir release
|
||||||
|
mv *.deb release/
|
||||||
|
mv check_esphome_devices release/
|
||||||
|
cd release/
|
||||||
|
md5sum * > md5sum.txt
|
||||||
|
sha512sum * > sha512sum.txt
|
||||||
|
{
|
||||||
|
echo 'release_note<<EOF'
|
||||||
|
cat release_notes.md
|
||||||
|
echo 'EOF'
|
||||||
|
} >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
- name: Publish release on Forgejo
|
||||||
|
uses: actions/forgejo-release@v1
|
||||||
|
with:
|
||||||
|
direction: upload
|
||||||
|
url: https://gitea.zionetrix.net
|
||||||
|
token: ${{ secrets.forgejo_token }}
|
||||||
|
release-dir: release
|
||||||
|
release-notes: ${{ steps.create-release.outputs.release_note }}
|
||||||
|
|
||||||
|
publish-aptly:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: docker.io/brenard/aptly-publish:latest
|
||||||
|
steps:
|
||||||
|
- name: "Download Debian package files"
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: dist
|
||||||
|
|
||||||
|
- name: "Publish Debian package on Aptly repository"
|
||||||
|
uses: https://gitea.zionetrix.net/bn8/aptly-publish@master
|
||||||
|
with:
|
||||||
|
api_url: ${{ vars.apt_api_url }}
|
||||||
|
api_username: ${{ vars.apt_api_username }}
|
||||||
|
api_password: ${{ secrets.apt_api_password }}
|
||||||
|
repo_name: ${{ vars.apt_repo_name }}
|
||||||
|
path: "./"
|
||||||
|
source_name: ${{ vars.apt_source_name }}
|
21
.forgejo/workflows/tests.yaml
Normal file
21
.forgejo/workflows/tests.yaml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
---
|
||||||
|
name: Run tests
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
test-precommit:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: docker.io/brenard/python-pre-commit:latest
|
||||||
|
steps:
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Install python dependencies
|
||||||
|
env:
|
||||||
|
DEBIAN_FRONTEND: noninteractive
|
||||||
|
run: |
|
||||||
|
apt-get -qq update
|
||||||
|
apt-get -qq -y install --no-install-recommends python3-requests
|
||||||
|
- name: Run pre-commit
|
||||||
|
run: pre-commit run --all-files
|
|
@ -1,7 +1,54 @@
|
||||||
# Pre-commit hooks to run tests and ensure code is cleaned.
|
# Pre-commit hooks to run tests and ensure code is cleaned.
|
||||||
# See https://pre-commit.com for more information
|
# See https://pre-commit.com for more information
|
||||||
|
---
|
||||||
repos:
|
repos:
|
||||||
- repo: local
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||||
|
rev: v0.1.6
|
||||||
|
hooks:
|
||||||
|
- id: ruff
|
||||||
|
args: ["--fix"]
|
||||||
|
- repo: https://github.com/asottile/pyupgrade
|
||||||
|
rev: v3.15.0
|
||||||
|
hooks:
|
||||||
|
- id: pyupgrade
|
||||||
|
args: ["--keep-percent-format", "--py37-plus"]
|
||||||
|
- repo: https://github.com/psf/black
|
||||||
|
rev: 23.11.0
|
||||||
|
hooks:
|
||||||
|
- id: black
|
||||||
|
args: ["--target-version", "py37", "--line-length", "100"]
|
||||||
|
- repo: https://github.com/PyCQA/isort
|
||||||
|
rev: 5.12.0
|
||||||
|
hooks:
|
||||||
|
- id: isort
|
||||||
|
args: ["--profile", "black", "--line-length", "100"]
|
||||||
|
- repo: https://github.com/PyCQA/flake8
|
||||||
|
rev: 6.1.0
|
||||||
|
hooks:
|
||||||
|
- id: flake8
|
||||||
|
args: ["--max-line-length=100"]
|
||||||
|
- repo: https://github.com/codespell-project/codespell
|
||||||
|
rev: v2.2.2
|
||||||
|
hooks:
|
||||||
|
- id: codespell
|
||||||
|
args:
|
||||||
|
- --ignore-words-list=exten
|
||||||
|
- --skip="./.*,*.csv,*.json,*.ini,*.subject,*.txt,*.html,*.log,*.conf"
|
||||||
|
- --quiet-level=2
|
||||||
|
- --ignore-regex=.*codespell-ignore$
|
||||||
|
# - --write-changes # Uncomment to write changes
|
||||||
|
exclude_types: [csv, json]
|
||||||
|
- repo: https://github.com/adrienverge/yamllint
|
||||||
|
rev: v1.32.0
|
||||||
|
hooks:
|
||||||
|
- id: yamllint
|
||||||
|
ignore: .github/
|
||||||
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||||
|
rev: v2.7.1
|
||||||
|
hooks:
|
||||||
|
- id: prettier
|
||||||
|
args: ["--print-width", "100"]
|
||||||
|
- repo: local
|
||||||
hooks:
|
hooks:
|
||||||
- id: pylint
|
- id: pylint
|
||||||
name: pylint
|
name: pylint
|
||||||
|
@ -9,23 +56,9 @@ repos:
|
||||||
language: system
|
language: system
|
||||||
types: [python]
|
types: [python]
|
||||||
require_serial: true
|
require_serial: true
|
||||||
- repo: https://github.com/PyCQA/flake8
|
- repo: https://github.com/PyCQA/bandit
|
||||||
rev: 6.0.0
|
rev: 1.7.5
|
||||||
hooks:
|
hooks:
|
||||||
- id: flake8
|
- id: bandit
|
||||||
args: ['--max-line-length=100']
|
args: [--skip, "B101", --recursive]
|
||||||
- repo: https://github.com/asottile/pyupgrade
|
minimum_pre_commit_version: 3.2.0
|
||||||
rev: v3.3.1
|
|
||||||
hooks:
|
|
||||||
- id: pyupgrade
|
|
||||||
args: ['--keep-percent-format', '--py37-plus']
|
|
||||||
- repo: https://github.com/psf/black
|
|
||||||
rev: 22.12.0
|
|
||||||
hooks:
|
|
||||||
- id: black
|
|
||||||
args: ['--target-version', 'py37', '--line-length', '100']
|
|
||||||
- repo: https://github.com/PyCQA/isort
|
|
||||||
rev: 5.11.4
|
|
||||||
hooks:
|
|
||||||
- id: isort
|
|
||||||
args: ['--profile', 'black', '--line-length', '100']
|
|
||||||
|
|
|
@ -1,63 +0,0 @@
|
||||||
clone:
|
|
||||||
git:
|
|
||||||
image: woodpeckerci/plugin-git
|
|
||||||
tags: true
|
|
||||||
|
|
||||||
pipeline:
|
|
||||||
tests:
|
|
||||||
image: brenard/python-pre-commit:latest
|
|
||||||
commands:
|
|
||||||
- DEBIAN_FRONTEND=noninteractive apt-get -qq update < /dev/null > /dev/null
|
|
||||||
- DEBIAN_FRONTEND=noninteractive apt-get -qq -y install --no-install-recommends python3-requests < /dev/null > /dev/null
|
|
||||||
- pre-commit run --all-files
|
|
||||||
|
|
||||||
build:
|
|
||||||
image: brenard/debian-python-deb
|
|
||||||
when:
|
|
||||||
event: tag
|
|
||||||
commands:
|
|
||||||
- echo "$GPG_KEY"|base64 -d|gpg --import
|
|
||||||
- ./build.sh --quiet
|
|
||||||
secrets: [ maintainer_name, maintainer_email, gpg_key, debian_codename ]
|
|
||||||
|
|
||||||
publish-dryrun:
|
|
||||||
group: publish
|
|
||||||
image: alpine
|
|
||||||
when:
|
|
||||||
event: tag
|
|
||||||
commands:
|
|
||||||
- ls dist/* dist/check-esphome-devices-*/check_esphome_devices
|
|
||||||
|
|
||||||
publish-gitea:
|
|
||||||
group: publish
|
|
||||||
image: plugins/gitea-release
|
|
||||||
when:
|
|
||||||
event: tag
|
|
||||||
settings:
|
|
||||||
api_key:
|
|
||||||
from_secret: gitea_token
|
|
||||||
base_url: https://gitea.zionetrix.net
|
|
||||||
note: dist/release_notes.md
|
|
||||||
files:
|
|
||||||
- dist/check-esphome-devices-*/check_esphome_devices
|
|
||||||
- dist/*.deb
|
|
||||||
checksum:
|
|
||||||
- md5
|
|
||||||
- sha512
|
|
||||||
|
|
||||||
publish-apt:
|
|
||||||
group: publish
|
|
||||||
image: brenard/aptly-publish
|
|
||||||
when:
|
|
||||||
event: tag
|
|
||||||
settings:
|
|
||||||
api_url:
|
|
||||||
from_secret: apt_api_url
|
|
||||||
api_username:
|
|
||||||
from_secret: apt_api_username
|
|
||||||
api_password:
|
|
||||||
from_secret: apt_api_password
|
|
||||||
repo_name:
|
|
||||||
from_secret: apt_repo_name
|
|
||||||
path: dist
|
|
||||||
source_name: check-esphome-devices
|
|
|
@ -26,9 +26,9 @@ optional arguments:
|
||||||
-d, --debug
|
-d, --debug
|
||||||
-H HOST, --host HOST ESPHome dashboard URL (default: http://127.0.0.1:6052)
|
-H HOST, --host HOST ESPHome dashboard URL (default: http://127.0.0.1:6052)
|
||||||
-r RETRY_COUNT, --retry RETRY_COUNT
|
-r RETRY_COUNT, --retry RETRY_COUNT
|
||||||
Number of retry to retreive device status (default: 4)
|
Number of retry to retrieve device status (default: 4)
|
||||||
-D RETRY_DELAY, --delay RETRY_DELAY
|
-D RETRY_DELAY, --delay RETRY_DELAY
|
||||||
Delay in second between two retry to retreive device status (default: 1s)
|
Delay in second between two retry to retrieve device status (default: 1s)
|
||||||
-x EXCLUDE, --exclude EXCLUDE
|
-x EXCLUDE, --exclude EXCLUDE
|
||||||
Regex exclude pattern(
|
Regex exclude pattern(
|
||||||
```
|
```
|
||||||
|
@ -44,4 +44,3 @@ This program is free software; you can redistribute it and/or modify it under th
|
||||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -24,7 +24,7 @@ sed -i "s/^VERSION *=.*$/VERSION = '$VERSION'/" $BDIR/check_esphome_devices
|
||||||
|
|
||||||
if [ -z "$DEBIAN_CODENAME" ]
|
if [ -z "$DEBIAN_CODENAME" ]
|
||||||
then
|
then
|
||||||
echo "Retreive debian codename using lsb_release..."
|
echo "Retrieve debian codename using lsb_release..."
|
||||||
DEBIAN_CODENAME=$( lsb_release -c -s )
|
DEBIAN_CODENAME=$( lsb_release -c -s )
|
||||||
else
|
else
|
||||||
echo "Use debian codename from environment ($DEBIAN_CODENAME)"
|
echo "Use debian codename from environment ($DEBIAN_CODENAME)"
|
||||||
|
|
|
@ -33,6 +33,7 @@ STATUS = {"OK": 0, "WARNING": 1, "CRITICAL": 2, "UNKNOWN": 3}
|
||||||
DEFAULT_HOST = "http://127.0.0.1:6052"
|
DEFAULT_HOST = "http://127.0.0.1:6052"
|
||||||
DEFAULT_RETRY_COUNT = 4
|
DEFAULT_RETRY_COUNT = 4
|
||||||
DEFAULT_RETRY_DELAY = 1
|
DEFAULT_RETRY_DELAY = 1
|
||||||
|
DEFAULT_TIMEOUT = 10
|
||||||
|
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument("-d", "--debug", action="store_true", dest="debug", default=False)
|
parser.add_argument("-d", "--debug", action="store_true", dest="debug", default=False)
|
||||||
|
@ -52,7 +53,7 @@ parser.add_argument(
|
||||||
"--retry",
|
"--retry",
|
||||||
action="store",
|
action="store",
|
||||||
dest="retry_count",
|
dest="retry_count",
|
||||||
help=("Number of retry to retreive device status " f"(default: {DEFAULT_RETRY_COUNT})"),
|
help=("Number of retry to retrieve device status " f"(default: {DEFAULT_RETRY_COUNT})"),
|
||||||
type=int,
|
type=int,
|
||||||
default=DEFAULT_RETRY_COUNT,
|
default=DEFAULT_RETRY_COUNT,
|
||||||
)
|
)
|
||||||
|
@ -63,13 +64,23 @@ parser.add_argument(
|
||||||
action="store",
|
action="store",
|
||||||
dest="retry_delay",
|
dest="retry_delay",
|
||||||
help=(
|
help=(
|
||||||
"Delay in second between two retry to retreive device status "
|
"Delay in second between two retry to retrieve device status "
|
||||||
f"(default: {DEFAULT_RETRY_DELAY}s)"
|
f"(default: {DEFAULT_RETRY_DELAY}s)"
|
||||||
),
|
),
|
||||||
type=int,
|
type=int,
|
||||||
default=DEFAULT_RETRY_DELAY,
|
default=DEFAULT_RETRY_DELAY,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
parser.add_argument(
|
||||||
|
"-t",
|
||||||
|
"--timeout",
|
||||||
|
action="store",
|
||||||
|
dest="timeout",
|
||||||
|
help=f"Timeout in second on API requests (default: {DEFAULT_TIMEOUT}s)",
|
||||||
|
type=int,
|
||||||
|
default=DEFAULT_TIMEOUT,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def exclude_pattern(value):
|
def exclude_pattern(value):
|
||||||
"""Check and compile exclusion pattern parameter"""
|
"""Check and compile exclusion pattern parameter"""
|
||||||
|
@ -106,17 +117,17 @@ def is_excluded(name):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
r = requests.get(f"{options.host}/devices")
|
r = requests.get(f"{options.host}/devices", timeout=options.timeout)
|
||||||
devices_data = r.json()
|
devices_data = r.json()
|
||||||
logging.debug("Devices data: %s (%s)", devices_data, type(devices_data))
|
logging.debug("Devices data: %s (%s)", devices_data, type(devices_data))
|
||||||
|
|
||||||
if not devices_data:
|
if not devices_data:
|
||||||
print("UNKNOWN - Fail to retreive devices using ESPHome Dashboard API")
|
print("UNKNOWN - Fail to retrieve devices using ESPHome Dashboard API")
|
||||||
sys.exit(STATUS["UNKNOWN"])
|
sys.exit(STATUS["UNKNOWN"])
|
||||||
|
|
||||||
COUNT = 0
|
COUNT = 0
|
||||||
while COUNT < options.retry_count:
|
while COUNT < options.retry_count:
|
||||||
r = requests.get(f"{options.host}/ping")
|
r = requests.get(f"{options.host}/ping", timeout=options.timeout)
|
||||||
COUNT += 1
|
COUNT += 1
|
||||||
ping_data = r.json()
|
ping_data = r.json()
|
||||||
logging.debug("Ping data: %s (%s)", ping_data, type(ping_data))
|
logging.debug("Ping data: %s (%s)", ping_data, type(ping_data))
|
||||||
|
@ -135,7 +146,7 @@ while COUNT < options.retry_count:
|
||||||
time.sleep(options.retry_delay)
|
time.sleep(options.retry_delay)
|
||||||
|
|
||||||
if not ping_data:
|
if not ping_data:
|
||||||
print("UNKNOWN - Fail to retreive devices status " "using ESPHome Dashboard API")
|
print("UNKNOWN - Fail to retrieve devices status using ESPHome Dashboard API")
|
||||||
sys.exit(STATUS["UNKNOWN"])
|
sys.exit(STATUS["UNKNOWN"])
|
||||||
|
|
||||||
UPDATE_AVAILABLE = 0
|
UPDATE_AVAILABLE = 0
|
||||||
|
|
Loading…
Reference in a new issue