summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-05-04 09:59:20 +0200
committerErich Eckner <git@eckner.net>2018-05-04 09:59:20 +0200
commit09a043befe9c0e384e1ad69e17d20029437bd276 (patch)
treee01f17de2c1e1052fa2319f1736fcc401c78354f /bin
parent54b0361f2a194a02c8da69d8122d4e9344a5a687 (diff)
downloadbuilder-09a043befe9c0e384e1ad69e17d20029437bd276.tar.xz
bin/ii-answer new (separated out the answer part from the watch part from bin/ii-connect)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ii-answer108
-rwxr-xr-xbin/ii-connect107
2 files changed, 111 insertions, 104 deletions
diff --git a/bin/ii-answer b/bin/ii-answer
new file mode 100755
index 0000000..00d4754
--- /dev/null
+++ b/bin/ii-answer
@@ -0,0 +1,108 @@
+#!/bin/sh
+
+# answer to stuff on irc
+
+# shellcheck source=../conf/default.conf
+. "${0%/*}/../conf/default.conf"
+
+# welcome devs (in #archlinux32 only)
+welcome_user_regex='^\S\+ -!- \(abaumann\|deep42thought\|tyzoid\)(.* has joined \S\+$'
+new_users=$(
+ sed -n '
+ s/'"${welcome_user_regex}"'/\1/
+ T
+ p
+ ' "${irc_dir}/#archlinux32/out" | \
+ sort -u
+)
+if [ -n "${new_users}" ]; then
+ sed -i '
+ /'"${welcome_user_regex}"'/ d
+ ' "${irc_dir}/#archlinux32/out"
+ printf '%s\n' "${new_users}" | \
+ sed '
+ s/^/Hi /
+ s/$/!/
+ ' | \
+ irc_say '' 'copy'
+fi
+
+find "${irc_dir}" \
+ -type f \
+ -name 'out' \
+ -printf '%p\n' | \
+ while read -r out_file; do
+ channel="${out_file%/out}"
+ channel="${channel##*/}"
+ if [ -z "${channel%%#*}" ]; then
+ prefix='buildmaster: '
+ sloppy_salutation='buildmaster'
+ else
+ prefix=''
+ sloppy_salutation=''
+ fi
+ # answer "why don't you?"
+ regex='^\(\S\+ \)\?\S\+ <\S\+> '"${prefix}"'why[- ]don'"'"'\?t[- ]you \(build\|stabilize\|unstage\|keep\|stubbornly_keep\) '
+ if grep -q "${regex}" "${out_file}"; then
+ sed -n '
+ s/'"${regex}"'/\2 /
+ T
+ p
+ ' "${out_file}" | \
+ while read -r line; do
+ reason=$(
+ echo "${line}" | \
+ xargs "${base_dir}/bin/why-dont-you" 2>&1
+ )
+ if [ "$(echo "${reason}" | wc -l)" -le 5 ]; then
+ echo "${reason}"
+ else
+ echo "${reason}" | \
+ head -n5
+ printf '... (%s lines total)\n' "$(echo "${reason}" | wc -l)"
+ fi | \
+ irc_say "${channel}" 'copy'
+ done
+ sed -i "/${regex}/d" "${out_file}"
+ fi
+ # answer "wtf?"
+ regex='^\(\S\+ \)\?\S\+ <\S\+> '"${prefix}"'wtf '
+ if grep -q "${regex}" "${out_file}"; then
+ sed -n '
+ s/'"${regex}"'//
+ T
+ p
+ ' "${out_file}" | \
+ while read -r line; do
+ reason=$("${base_dir}/bin/wtf" "${line}");
+ if [ -z "${reason}" ]; then
+ reason="Huh, I don't know that one."
+ fi
+ if [ "$(echo "${reason}" | wc -l)" -le 5 ]; then
+ echo "${reason}"
+ else
+ echo "${reason}" | \
+ head -n5
+ printf '... (%s lines total)\n' "$(echo "${reason}" | wc -l)"
+ fi | \
+ irc_say "${channel}" 'copy'
+ done
+ sed -i "/${regex}/d" "${out_file}"
+ fi
+ # answer "What's up?"
+ regex='^\(\S\+ \)\?\S\+ <\S\+> .*[Ww]hat'"'"'\?s *[Uu]p'
+ if grep "${regex}" "${out_file}" | \
+ grep -q "${sloppy_salutation}"; then
+ sed -i "/${regex}/d" "${out_file}"
+ printf 'up? I'"'"'m up for %s, %s\n' "$(uptime -p | sed 's/^up //')" "$(uptime | sed 's/.*, //')" | \
+ irc_say "${channel}" 'copy'
+ fi
+ # answer "Thanks!"
+ regex='^\(\S\+ \)\?\S\+ <\S\+> \(.* \)\?[Tt]h\(anks\|x\)\([ ,.!]\|$\)'
+ if grep "${regex}" "${out_file}" | \
+ grep -q "${sloppy_salutation}"; then
+ sed -i "/${regex}/d" "${out_file}"
+ printf 'np\n' | \
+ irc_say "${channel}" 'copy'
+ fi
+ done
diff --git a/bin/ii-connect b/bin/ii-connect
index 95960f0..6e543c5 100755
--- a/bin/ii-connect
+++ b/bin/ii-connect
@@ -37,10 +37,9 @@ fi
# watch if asked to
if [ "$1" = 'watch' ]; then
- done_something=false
while pgrep -x 'ii' > /dev/null; do
# this avoids missing modifications during our last execution
- if ! ${done_something}; then
+ if [ -z "${said}" ]; then
# shellcheck disable=SC2046
inotifywait -e 'CLOSE_WRITE,CLOSE' $(
find "${irc_dir}" \
@@ -48,109 +47,9 @@ if [ "$1" = 'watch' ]; then
-name 'out'
)
fi
- done_something=false
- welcome_user_regex='^\S\+ -!- \(abaumann\|deep42thought\|tyzoid\)(.* has joined \S\+$'
- new_users=$(
- sed -n '
- s/'"${welcome_user_regex}"'/\1/
- T
- p
- ' "${irc_dir}/#archlinux32/out" | \
- sort -u
+ said=$(
+ "${base_dir}/bin/ii-answer"
)
- if [ -n "${new_users}" ]; then
- sed -i '
- /'"${welcome_user_regex}"'/ d
- ' "${irc_dir}/#archlinux32/out"
- done_something=true
- # shellcheck disable=SC2119
- printf '%s\n' "${new_users}" | \
- sed '
- s/^/Hi /
- s/$/!/
- ' | \
- irc_say
- fi
- find "${irc_dir}" \
- -type f \
- -name 'out' \
- -printf '%p\n' | \
- while read -r out_file; do
- channel="${out_file%/out}"
- channel="${channel##*/}"
- if [ -z "${channel%%#*}" ]; then
- prefix='buildmaster: '
- sloppy_salutation='buildmaster'
- else
- prefix=''
- sloppy_salutation=''
- fi
- regex='^\(\S\+ \)\?\S\+ <\S\+> '"${prefix}"'why[- ]don'"'"'\?t[- ]you \(build\|stabilize\|unstage\|keep\|stubbornly_keep\) '
- if grep -q "${regex}" "${out_file}"; then
- done_something=true
- sed -n '
- s/'"${regex}"'/\2 /
- T
- p
- ' "${out_file}" | \
- while read -r line; do
- reason=$(
- echo "${line}" | \
- xargs "${base_dir}/bin/why-dont-you" 2>&1
- )
- if [ "$(echo "${reason}" | wc -l)" -le 5 ]; then
- echo "${reason}"
- else
- echo "${reason}" | \
- head -n5
- printf '... (%s lines total)\n' "$(echo "${reason}" | wc -l)"
- fi | \
- sponge "${out_file%/out}/in"
- done
- sed -i "/${regex}/d" "${out_file}"
- fi
- regex='^\(\S\+ \)\?\S\+ <\S\+> '"${prefix}"'wtf '
- if grep -q "${regex}" "${out_file}"; then
- done_something=true
- sed -n '
- s/'"${regex}"'//
- T
- p
- ' "${out_file}" | \
- while read -r line; do
- reason=$("${base_dir}/bin/wtf" "${line}");
- if [ -z "${reason}" ]; then
- reason="Huh, I don't know that one."
- fi
- if [ "$(echo "${reason}" | wc -l)" -le 5 ]; then
- echo "${reason}"
- else
- echo "${reason}" | \
- head -n5
- printf '... (%s lines total)\n' "$(echo "${reason}" | wc -l)"
- fi | \
- sponge "${out_file%/out}/in"
- done
- sed -i "/${regex}/d" "${out_file}"
- fi
- regex='^\(\S\+ \)\?\S\+ <\S\+> .*[Ww]hat'"'"'\?s *[Uu]p'
- if grep "${regex}" "${out_file}" | \
- grep -q "${sloppy_salutation}"; then
- done_something=true
- sed -i "/${regex}/d" "${out_file}"
- printf 'up? I'"'"'m up for %s, %s\n' "$(uptime -p | sed 's/^up //')" "$(uptime | sed 's/.*, //')" | \
- sponge "${out_file%/out}/in"
- fi
- regex='^\(\S\+ \)\?\S\+ <\S\+> \(.* \)\?[Tt]h\(anks\|x\)\([ ,.!]\|$\)'
- if grep "${regex}" "${out_file}" | \
- grep -q "${sloppy_salutation}"; then
- done_something=true
- sed -i "/${regex}/d" "${out_file}"
- printf 'np\n' | \
- sponge "${out_file%/out}/in"
- fi
- done
- sleep 1
done
exit
fi