XylotrechusZ

XylotrechusZ Shell

: /home/matican/.acme.sh/notify/ [ drwxrwxr-x ]
Uname: Linux premium72.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software: LiteSpeed
PHP version: 8.2.29 [ PHP INFO ] PHP os: Linux
Server Ip: 198.54.125.95
Your Ip: 216.73.216.35
User: matican (532) | Group: matican (531)
Safe Mode: OFF
Disable Function:
NONE

name : slack.sh
#!/bin/bash

#Support Slack webhooks

#SLACK_WEBHOOK_URL=""
#SLACK_CHANNEL=""
#SLACK_USERNAME=""

slack_send() {
  _subject="$1"
  _content="$2"
  _statusCode="$3" #0: success, 1: error 2($RENEW_SKIP): skipped
  _debug "_statusCode" "$_statusCode"

  SLACK_WEBHOOK_URL="${SLACK_WEBHOOK_URL:-$(_readaccountconf_mutable SLACK_WEBHOOK_URL)}"
  if [ -z "$SLACK_WEBHOOK_URL" ]; then
    SLACK_WEBHOOK_URL=""
    _err "You didn't specify a Slack webhook url SLACK_WEBHOOK_URL yet."
    return 1
  fi
  _saveaccountconf_mutable SLACK_WEBHOOK_URL "$SLACK_WEBHOOK_URL"

  SLACK_CHANNEL="${SLACK_CHANNEL:-$(_readaccountconf_mutable SLACK_CHANNEL)}"
  if [ -n "$SLACK_CHANNEL" ]; then
    _saveaccountconf_mutable SLACK_CHANNEL "$SLACK_CHANNEL"
  fi

  SLACK_USERNAME="${SLACK_USERNAME:-$(_readaccountconf_mutable SLACK_USERNAME)}"
  if [ -n "$SLACK_USERNAME" ]; then
    _saveaccountconf_mutable SLACK_USERNAME "$SLACK_USERNAME"
  fi

  export _H1="Content-Type: application/json"

  _content="$(printf "*%s*\n%s" "$_subject" "$_content" | _json_encode)"
  _data="{\"text\": \"$_content\", "
  if [ -n "$SLACK_CHANNEL" ]; then
    _data="$_data\"channel\": \"$SLACK_CHANNEL\", "
  fi
  if [ -n "$SLACK_USERNAME" ]; then
    _data="$_data\"username\": \"$SLACK_USERNAME\", "
  fi
  _data="$_data\"mrkdwn\": \"true\"}"

  if _post "$_data" "$SLACK_WEBHOOK_URL"; then
    # shellcheck disable=SC2154
    if [ "$response" = "ok" ]; then
      _info "slack send success."
      return 0
    fi
  fi
  _err "slack send error."
  _err "$response"
  return 1
}
© 2025 XylotrechusZ