X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Frm%2Frm_plugin.rb;h=fd0c541a44cb25ed7ffbe7e96db3c19b59426265;hp=fc0e7a081d97f602124dc9ccaef2ba53b60aa1d6;hb=9c2503578bcb8141d13bf4a5af1ef460c70fd219;hpb=72696d3f6e95ef773af9727e9c3459b9038b0fc2 diff --git a/lib/rm/rm_plugin.rb b/lib/rm/rm_plugin.rb index fc0e7a0..fd0c541 100644 --- a/lib/rm/rm_plugin.rb +++ b/lib/rm/rm_plugin.rb @@ -1,29 +1,41 @@ +require 'common/plugin.rb' + module RmPlugin # # 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(target) + # A generic version of delete_user/delete_domain that + # dispatches base on the class of the target. + if target.is_a?(User) + return delete_user(target) + elsif target.is_a?(Domain) + return delete_domain(target) + else + raise NotImplementedError + end end def delete_domain(domain) # 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]) + users = list_domains_users([domain]) - raise NonexistentDomainError.new(domain) if usernames.empty? + raise NonexistentDomainError.new(domain.to_s()) if users.empty? - usernames.each do |u| + users.each do |u| delete_user(u) end end