X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Frm%2Frm_plugin.rb;h=fe938b128d200b1a10427cbff7cdde17c57bd4b8;hp=f8cdd175be5587c0f98e032727a10bcf003a363a;hb=35dffd876681d82cb87d54c6a28b8cbdfcc28925;hpb=e3826d8926e11763837a591986d453e9ef5d9dec diff --git a/lib/rm/rm_plugin.rb b/lib/rm/rm_plugin.rb index f8cdd17..fe938b1 100644 --- a/lib/rm/rm_plugin.rb +++ b/lib/rm/rm_plugin.rb @@ -1,27 +1,35 @@ +require 'common/plugin.rb' + module RmPlugin # - # Plugins for the removal of accounts. + # Plugins for the removal of users. # - def RmPlugin.included(c) - # Callback, called whenever another class or module includes this - # one. The parameter given is the name of the class or module - # that included us. - @includers ||= [] - @includers << c + extend Plugin::Run + + def self.runner() + return RmRunner end - def RmPlugin.includers - return @includers + def self.dummy_runner() + return RmDummyRunner end def delete_domain(domain) - # Delete the given domain. - raise NotImplementedError + # 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]) + + raise NonexistentDomainError.new(domain) if usernames.empty? + + usernames.each do |u| + delete_user(u) + end end - def delete_account(account) - # Delete the given account. + def delete_user(user) + # Delete the given user. raise NotImplementedError end