fixup remote comment admin
authorIan Kelling <ian@iankelling.org>
Sat, 27 Aug 2016 04:07:22 +0000 (21:07 -0700)
committerIan Kelling <ian@iankelling.org>
Sat, 27 Aug 2016 19:43:20 +0000 (12:43 -0700)
README
_site/cgi/comment
feed.xml [deleted file]
get-comments
iank-mod.el
index.html
set-comments

diff --git a/README b/README
index 017260f995a921ece6ab5513f77b85ef26ffa528..4cbefb7bfca732e07dbb4000678baa84aec05763 100644 (file)
--- a/README
+++ b/README
@@ -14,6 +14,8 @@ https://iankelling.org/git/?p=distro-functions;a=summary
 And some programs need to be in PATH:
 https://iankelling.org/git/?p=basic-https-conf;a=summary
 https://sallymae.club/git/?p=acme-tiny-wrapper;a=summary
+chost from
+https://iankelling.org/git/?p=fai;a=summary
 
 This repo does not include the repos under /git.  In my own version, under /git are links to the .git dirs of the respective repos under the
 hardcoded directory in setup.sh: gitroot=/a/bin/githtml. These
index b1e8796607706a844cf9a33ecf1a46500acfebec..4b14c3c7c7bd9c3dfa9337a8494656913f662917 100755 (executable)
@@ -292,20 +292,27 @@ state != 'rate_limited' and
 state != 'suspect'
 SQL
 
+$db.execute('insert into c values (NULL, ?, ?, ?, ?, ?)',
+            [state,
+             IP,
+             NOW,
+             GOTO,
+             COMMENT_TXT])
 
 if date
   new_count = $db.execute(query + 'and date > ?',date)
 else
   new_count = $db.execute(query)
 end
+new_count = new_count[0][0]
 
 if new_count == 1
   require 'net/smtp'
   def send_email(opts={})
-    opts[:to]          ||= ENV['USER']
+    opts[:to]          ||= 'root'
     opts[:server]      ||= 'localhost'
-    opts[:from]        ||= ENV['USER']
-    opts[:from_alias]  ||= ENV['USER']
+    opts[:from]        ||= 'root'
+    opts[:from_alias]  ||= 'root'
     opts[:subject]     ||= "test subject"
     opts[:body]        ||= ""
 
@@ -324,13 +331,6 @@ END_OF_MESSAGE
   send_email :subject => 'new comments on iankelling.org'
 end
 
-$db.execute('insert into c values (NULL, ?, ?, ?, ?, ?)',
-            [state,
-             IP,
-             NOW,
-             GOTO,
-             COMMENT_TXT])
-
 post(md_file)
 
 redir
diff --git a/feed.xml b/feed.xml
deleted file mode 100644 (file)
index e69de29..0000000
index 36bbe0dfca800540ea439a254da9a0ca044544ca..54ea99a6a28e504ecb27e8b6bfc94316e96bd5be 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/bash -l
 # Copyright (C) 2016 Ian Kelling
 
 # This program is free software: you can redistribute it and/or modify
@@ -20,7 +20,7 @@ trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR
 cd "${BASH_SOURCE%/*}/proposed-comments"
 
 all=false
-shell="ssh iankelling.org"
+shell="ssh $(chost iankelling.org)"
 while [[ $1 ]]; do
     case $1 in
         -a) all=true; shift ;;
@@ -41,9 +41,9 @@ EOF
 fi
 
 # we may want to avoid rate limited posts here too.
-sql="select * from c"
+sql="select * from c;"
 if [[ $date ]]; then
-    date_clause=" where date > cast('$date' as real)"
+    sql+=" where date > cast('$date' as real)"
 fi
-echo "$sql"
-$s "$sql" > /tmp/hcomments
+echo "executing: $sql"
+$s > /tmp/hcomments <<<"$sql"
index 26da79d7a68667b529f51fa7073f67a097a97069..4faea5f958d70d4d42953584745fa74325db9b5b 100644 (file)
   (interactive)
   (iankmod-set-state "banned"))
 
+;; for test comments, or comments we just want to delete from the
+;; db for whatever reason.
+(defun iankmod-delete ()
+  (interactive)
+  (iankmod-set-state "delete"))
+
 (defun iankmod-moderate ()
   (interactive)
   (iankmod-set-state "moderated"))
@@ -49,4 +55,5 @@
             (define-key map (kbd "b") 'iankmod-ban)
             (define-key map (kbd "m") 'iankmod-moderate)
             (define-key map (kbd "x") 'iankmod-save)
+            (define-key map (kbd "d") 'iankmod-delete)
             map))
index 049259f1d5cb00d9c974db6b732956a311ff2ecc..5585e877d6ac03576657f9954ef686c89f708662 100644 (file)
@@ -3,6 +3,6 @@
   <li><a href="git">git</a></li>
   <li><a href="https://ofswiki.org">ofswiki.org</a></li>
   <li><a href="resume.html">resume</a></li>
-  <li><a href="/favorite-stuff.html">favorite stuff</a></li>
+  <li><a href="/favorite-things.html">favorite things</a></li>
   <li><a href="ian-kelling-pubkey.asc">gpg key</a></li>
 </ul>
index 5694629e8afcd8bd0b9b53d99ddf62d29792ca93..b87f21166932f9f7ec24b9b2c21f267f488adf3a 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/bash -l
 # Copyright (C) 2016 Ian Kelling
 
 # This program is free software: you can redistribute it and/or modify
@@ -20,7 +20,7 @@ trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR
 cd "${BASH_SOURCE%/*}/proposed-comments"
 
 
-shell="ssh iankelling.org"
+shell="ssh -oStrictHostKeyChecking=no $(chost iankelling.org)"
 while [[ $1 ]]; do
     case $1 in
         -a) all=true; shift ;;
@@ -32,6 +32,10 @@ s="$shell sqlite3 $PWD/comments.sqlite"
 
 grep -Eo '^[^|]+\|[^|]+' /tmp/hcomments | while IFS='|' read -r id state; do
     #echo "$id -- $state" # debug print
-    sqlite3 comments.sqlite "update c set state='$state' where id = '$id'"
+    if [[ $state == delete ]]; then
+        $s <<<"delete from c where id = '$id';"
+    else
+        $s <<<"update c set state='$state' where id = '$id';"
+    fi
 done
 $shell $PWD/../build.rb