unwatch the xpubs!

This commit is contained in:
kexkey
2019-03-04 15:39:02 -05:00
committed by kexkey
parent 24c4621ef1
commit ac124cca75
3 changed files with 74 additions and 5 deletions

View File

@@ -3,14 +3,13 @@
. ./trace.sh
. ./sql.sh
unwatchrequest()
{
unwatchrequest() {
trace "Entering unwatchrequest()..."
local request=${1}
local address=$(echo "${request}" | cut -d ' ' -f2 | cut -d '/' -f3)
local returncode
trace "[unwatchrequest] Unwatch request on address ${address})"
trace "[unwatchrequest] Unwatch request on address ${address}"
sql "UPDATE watching SET watching=0 WHERE address=\"${address}\""
returncode=$?
@@ -24,4 +23,60 @@ unwatchrequest()
return ${returncode}
}
case "${0}" in *unwatchrequest.sh) unwatchrequest $@;; esac
unwatchpub32request() {
trace "Entering unwatchpub32request()..."
local request=${1}
local pub32=$(echo "${request}" | cut -d ' ' -f2 | cut -d '/' -f3)
local id
local returncode
trace "[unwatchpub32request] Unwatch pub32 ${pub32}"
id=$(sql "SELECT id FROM watching WHERE pub32='${pub32}'")
trace "[unwatchpub32request] id: ${id}"
sql "UPDATE watching_by_pub32 SET watching=0 WHERE id=${id}"
returncode=$?
trace_rc ${returncode}
sql "UPDATE watching SET watching=0 WHERE watching_by_pub32_id=\"${id}\""
returncode=$?
trace_rc ${returncode}
data="{\"event\":\"unwatchxpubbyxpub\",\"pub32\":\"${pub32}\"}"
trace "[unwatchpub32request] responding=${data}"
echo "${data}"
return ${returncode}
}
unwatchpub32labelrequest() {
trace "Entering unwatchpub32labelrequest()..."
local request=${1}
local label=$(echo "${request}" | cut -d ' ' -f2 | cut -d '/' -f3)
local id
local returncode
trace "[unwatchpub32labelrequest] Unwatch xpub label ${label}"
id=$(sql "SELECT id FROM watching WHERE label='${label}'")
returncode=$?
trace_rc ${returncode}
trace "[unwatchpub32labelrequest] id: ${id}"
sql "UPDATE watching_by_pub32 SET watching=0 WHERE id=${id}"
returncode=$?
trace_rc ${returncode}
sql "UPDATE watching SET watching=0 WHERE watching_by_pub32_id=\"${id}\""
returncode=$?
trace_rc ${returncode}
data="{\"event\":\"unwatchxpubbylabel\",\"pub32\":\"${pub32}\"}"
trace "[unwatchpub32labelrequest] responding=${data}"
echo "${data}"
return ${returncode}
}