X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Frm%2Fplugins%2Fdavical.rb;h=f7d116e0e783a08364701c97334668d04ca14d45;hp=02e889466849fb7c67aad15e0812afce1e23e33e;hb=72696d3f6e95ef773af9727e9c3459b9038b0fc2;hpb=483d14dc8228a81d12fb109d3ed6510e2d2b03c1;ds=sidebyside diff --git a/lib/rm/plugins/davical.rb b/lib/rm/plugins/davical.rb index 02e8894..f7d116e 100644 --- a/lib/rm/plugins/davical.rb +++ b/lib/rm/plugins/davical.rb @@ -12,10 +12,12 @@ class DavicalRm include RmPlugin - def delete_account(account) + def delete_user(user) # Delete the given username. DAViCal uses foreign keys properly # and only supports postgres, so we let the ON DELETE CASCADE # trigger handle most of the work. + raise NonexistentUserError.new(user) if not user_exists(user) + sql_queries = ['DELETE FROM usr WHERE username = $1'] begin @@ -28,7 +30,7 @@ class DavicalRm @db_pass) sql_queries.each do |sql_query| - connection.query(sql_query, [account]) + connection.query(sql_query, [user]) end connection.close()