]> gitweb.michael.orlitzky.com - mailshears.git/commitdiff
Fix quoting issues with the new AgenDAV "with" column.
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 5 Mar 2017 01:38:39 +0000 (20:38 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 5 Mar 2017 01:38:39 +0000 (20:38 -0500)
lib/mv/plugins/agendav.rb
lib/rm/plugins/agendav.rb

index fc2a5d9da6572f17981385cd549ec56affa1e8f2..2177009e67295b07b3762966976668e2a932b3ef 100644 (file)
@@ -39,8 +39,8 @@ class AgendavMv
     begin
       # The "prefs" table uses the normal username as a key...
       # This should be harmless if the source user does not exist.
-      sql_query = 'UPDATE prefs SET username = $1 WHERE username = $2;'
-      connection.query(sql_query, [dst.to_s(), src.to_s()])
+      sql_query0 = 'UPDATE prefs SET username = $1 WHERE username = $2;'
+      connection.query(sql_query0, [dst.to_s(), src.to_s()])
 
       # But the "shares" table uses encoded principal URLs. For the
       # "shares" table, we need to do a find/replace on the username
@@ -53,9 +53,9 @@ class AgendavMv
       # calendar URL will change when a user moves. This will ALSO
       # affect people who name their calendars something like
       # "user%40example.com", but screw those people.
-      sql_queries << 'UPDATE shares SET owner=REPLACE(owner, $2, $1);'
+      sql_queries = ['UPDATE shares SET owner=REPLACE(owner, $2, $1);']
       sql_queries << 'UPDATE shares SET calendar=REPLACE(calendar, $2, $1);'
-      sql_queries << 'UPDATE shares SET with=REPLACE(with, $2, $1);'
+      sql_queries << 'UPDATE shares SET "with"=REPLACE("with", $2, $1);'
 
       sql_queries.each do |sql_query|
         connection.query(sql_query, [encoded_dst, encoded_src])
index 4bf6bc4aca11a2427c10e40151310bbeca452ea6..e84c4f678fa98d1ecac7ae9b632fd8dea99f3927 100644 (file)
@@ -35,8 +35,8 @@ class AgendavRm
     # of the user's email address in the "calendar" field happens when
     # he is also the owner, so the calendar does get deleted in the
     # normal situation.
-    sql_queries << "DELETE FROM shares WHERE REPLACE(owner, '%40', '@') ~ $1;"
-    sql_queries << "DELETE FROM shares WHERE REPLACE(with, '%40', '@')  ~ $1;"
+    sql_queries << "DELETE FROM shares WHERE REPLACE(owner,'%40','@')    ~ $1;"
+    sql_queries << "DELETE FROM shares WHERE REPLACE(\"with\",'%40','@') ~ $1;"
 
     connection = PG::Connection.new(@db_hash)
     begin