X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fprune%2Fprune_runner.rb;h=a9e2282857fc3be027a14d0410ae75436c25f934;hp=789ed573623ef3b72cd0e5d983c45e9f1bbc68c1;hb=df4e02ebf6a4e28a58abcb298a4442a245ad0b15;hpb=51f027b01e242737956c3ab5aecdd322d6ceeeed diff --git a/lib/prune/prune_runner.rb b/lib/prune/prune_runner.rb index 789ed57..a9e2282 100644 --- a/lib/prune/prune_runner.rb +++ b/lib/prune/prune_runner.rb @@ -1,10 +1,34 @@ require 'common/runner' +require 'prune/plugins/postfixadmin' +require 'rm/rm_runner' +# Perform the pruning of users/domains using {PrunePlugin}s. +# class PruneRunner include Runner - def run(plugin) - puts "Not implemented" + # Run *plugin* to prune leftover users and directories. + # + # @param cfg [Configuration] configuration options passed to + # {PostfixadminPrune}. + # + # @param plugin [Class] plugin class that will perform the pruning. + # + def run(cfg, plugin) + # We don't want to check the PostfixAdmin database against itself. + return if plugin.class == PostfixadminPrune + + pfa = PostfixadminPrune.new(cfg) + + db_users = pfa.list_users() + db_domains = pfa.list_domains() + + leftovers = plugin.get_leftover_users(db_users) + leftovers += plugin.get_leftover_domains(db_domains) + + # We're counting on our PrunePlugin also being an RmPlugin here. + rm_runner = RmRunner.new() + rm_runner.run(cfg, plugin, *leftovers) end end