]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/rm/rm_plugin.rb
Replace 'account' with 'user' everywhere.
[mailshears.git] / lib / rm / rm_plugin.rb
index e2f2cfe413278bba00a1f0a572451b32fd6936a7..fc0e7a081d97f602124dc9ccaef2ba53b60aa1d6 100644 (file)
@@ -1,6 +1,6 @@
 module RmPlugin
   #
 module RmPlugin
   #
-  # Plugins for the removal of accounts.
+  # Plugins for the removal of users.
   #
 
   def RmPlugin.included(c)
   #
 
   def RmPlugin.included(c)
@@ -16,24 +16,21 @@ module RmPlugin
   end
 
   def delete_domain(domain)
   end
 
   def delete_domain(domain)
-    # Delete the given domain.
-    raise NotImplementedError
-  end
+    # Delete the given domain. Some plugins don't have a concept of
+    # domains, so just delete all users with a username that looks
+    # like it's in the given domain.
+    usernames = list_domains_users([domain])
 
 
-  def delete_account(account)
-    # Delete the given account.
-    raise NotImplementedError
-  end
+    raise NonexistentDomainError.new(domain) if usernames.empty?
 
 
-  def get_leftover_domains(db_domains)
-    # Given a list of domains, determine which domains belonging to
-    # this plugin are not contained in the given list.
-    raise NotImplementedError
+    usernames.each do |u|
+      delete_user(u)
+    end
   end
 
   end
 
-  def get_leftover_accounts(db_accounts)
-    # Given a list of accounts, determine which accounts belonging to
-    # this plugin are not contained in the given list.
+  def delete_user(user)
+    # Delete the given user.
     raise NotImplementedError
   end
     raise NotImplementedError
   end
+
 end
 end