X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fmv%2Fplugins%2Froundcube.rb;h=4b3ebcb5d20084d8c342445d2b5566a98324d6d5;hp=50a52c302cd2a25613f4c463eb5232c7a756b055;hb=f819b178c5c1cb8adda0182c610e5c52fad8bea7;hpb=7f8654ed6582062a295e1be75ae70e99de41b323 diff --git a/lib/mv/plugins/roundcube.rb b/lib/mv/plugins/roundcube.rb index 50a52c3..4b3ebcb 100644 --- a/lib/mv/plugins/roundcube.rb +++ b/lib/mv/plugins/roundcube.rb @@ -9,11 +9,15 @@ class RoundcubeMv include MvPlugin - def mv_domain(from, to) - # Roundcube doesn't have a concept of domains. - end + def mv_user(src, dst) + # It's obviously an error if the source user does not exist. It + # would also be an error if the destination domain didn't exist; + # however, Roundcube doesn't know about domains, so we let that slide. + raise NonexistentUserError.new(src.to_s()) if not user_exists(src) + + # And it's an error if the destination user exists already. + raise UserAlreadyExistsError.new(dst.to_s()) if user_exists(dst) - def mv_account(from, to) sql_queries = ['UPDATE users SET username = $1 WHERE username = $2;'] begin @@ -26,7 +30,7 @@ class RoundcubeMv @db_pass) sql_queries.each do |sql_query| - connection.query(sql_query, [to, from]) + connection.query(sql_query, [dst.to_s(), src.to_s()]) end connection.close()