Skip to content

Commit

Permalink
Merge pull request openwrt#10009 from dibdot/adblock
Browse files Browse the repository at this point in the history
adblock: update 3.8.6
  • Loading branch information
dibdot authored Sep 16, 2019
2 parents 41a4aec + 496d527 commit 5ed3eb2
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 26 deletions.
4 changes: 2 additions & 2 deletions net/adblock/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=adblock
PKG_VERSION:=3.8.5
PKG_RELEASE:=2
PKG_VERSION:=3.8.6
PKG_RELEASE:=1
PKG_LICENSE:=GPL-3.0-or-later
PKG_MAINTAINER:=Dirk Brenken <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion net/adblock/files/adblock.init
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ status()

service_triggers()
{
local trigger="$(uci_get adblock global adb_trigger)"
local trigger="$(uci_get adblock global adb_trigger)"
local delay="$(uci_get adblock extra adb_triggerdelay "2")"

PROCD_RELOAD_DELAY=$((delay*1000))
Expand Down
59 changes: 36 additions & 23 deletions net/adblock/files/adblock.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#
LC_ALL=C
PATH="/usr/sbin:/usr/bin:/sbin:/bin"
adb_ver="3.8.5"
adb_ver="3.8.6"
adb_basever=""
adb_enabled=0
adb_debug=0
Expand Down Expand Up @@ -164,6 +164,7 @@ f_load()
f_extconf
f_temp
f_rmdns
f_bgserv "stop"
f_jsnup "disabled"
f_log "info" "adblock is currently disabled, please set the config option 'adb_enabled' to '1' to use this service"
exit 0
Expand All @@ -181,23 +182,26 @@ f_load()
sleep "${adb_triggerdelay}"
fi

while [ "${cnt}" -le 30 ]
do
dns_up="$(ubus -S call service list "{\"name\":\"${adb_dns}\"}" 2>/dev/null | jsonfilter -l1 -e "@[\"${adb_dns}\"].instances.*.running" 2>/dev/null)"
if [ "${dns_up}" = "true" ]
if [ "${adb_action}" != "stop" ]
then
while [ "${cnt}" -le 30 ]
do
dns_up="$(ubus -S call service list "{\"name\":\"${adb_dns}\"}" 2>/dev/null | jsonfilter -l1 -e "@[\"${adb_dns}\"].instances.*.running" 2>/dev/null)"
if [ "${dns_up}" = "true" ]
then
break
fi
sleep 1
cnt=$((cnt+1))
done

if [ "${dns_up}" != "true" ] || [ -z "${adb_dns}" ] || [ ! -x "$(command -v "${adb_dns}")" ]
then
f_log "err" "dns backend '${adb_dns}' not running or executable"
elif [ ! -d "${adb_dnsdir}" ]
then
break
f_log "err" "dns backend directory '${adb_dnsdir}' not found"
fi
sleep 1
cnt=$((cnt+1))
done

if [ "${dns_up}" != "true" ] || [ -z "${adb_dns}" ] || [ ! -x "$(command -v "${adb_dns}")" ]
then
f_log "err" "'${adb_dns}' not running or executable"
elif [ ! -d "${adb_dnsdir}" ]
then
f_log "err" "'${adb_dnsdir}' dns backend directory not found"
fi

# inotify check
Expand All @@ -208,7 +212,7 @@ f_load()
then
adb_dnsfilereset="false"
fi
f_log "info" "Inotify is enabled for '${adb_dns}', adblock restart and file reset will be disabled"
f_log "info" "inotify is enabled for '${adb_dns}', adblock restart and file reset will be disabled"
fi
}

Expand All @@ -226,7 +230,7 @@ f_env()
#
if [ ! -d "${adb_backupdir}" ]
then
f_log "err" "the backup directory '${adb_backupdir}' does not exist/is not mounted yet, please create the directory or raise the 'adb_triggerdelay' to defer the adblock start"
f_log "err" "backup directory '${adb_backupdir}' does not exist/is not mounted yet, please create the directory or raise the 'adb_triggerdelay' to defer the adblock start"
fi

# check fetch utility
Expand Down Expand Up @@ -304,15 +308,23 @@ f_rmtemp()
#
f_rmdns()
{
if [ -n "${adb_dns}" ]
local status dns_status rc

status="$(ubus -S call service list '{"name":"adblock"}' 2>/dev/null | jsonfilter -l1 -e '@["adblock"].instances.*.running' 2>/dev/null)"
if [ -n "${adb_dns}" ] && [ -n "${status}" ]
then
dns_status="$(ubus -S call service list "{\"name\":\"${adb_dns}\"}" 2>/dev/null | jsonfilter -l1 -e "@[\"${adb_dns}\"].instances.*.running" 2>/dev/null)"
printf "%s\\n" "${adb_dnsheader}" > "${adb_dnsdir}/${adb_dnsfile}"
> "${adb_rtfile}"
rm -f "${adb_backupdir}/${adb_dnsprefix}"*.gz
f_dnsup 4
f_rmtemp
rm "${adb_backupdir}/${adb_dnsprefix}".*.gz 2>/dev/null
rc="${?}"
if [ "${rc}" -eq 0 ] && [ -n "${dns_status}" ]
then
f_dnsup 4
fi
fi
f_log "debug" "f_rmdns ::: dns: ${adb_dns}, dns_dir: ${adb_dnsdir}, dns_file: ${adb_dnsfile}, rt_file: ${adb_rtfile}, backup_dir: ${adb_backupdir}"
f_rmtemp
f_log "debug" "f_rmdns ::: status: ${status:-"-"}, dns_status: ${dns_status:-"-"}, rc: ${rc:-"-"}, dns: ${adb_dns}, dns_dir: ${adb_dnsdir}, dns_file: ${adb_dnsfile}, rt_file: ${adb_rtfile}, backup_dir: ${adb_backupdir}"
}

# commit uci changes
Expand Down Expand Up @@ -908,6 +920,7 @@ f_log()
if [ "${class}" = "err" ]
then
f_rmdns
f_bgserv "stop"
f_jsnup "error"
logger -p "${class}" -t "adblock-${adb_ver}[${$}]" "Please also check 'https://github.com/openwrt/packages/blob/master/net/adblock/files/README.md'"
exit 1
Expand Down

0 comments on commit 5ed3eb2

Please sign in to comment.