X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fcommon%2Froundcube_plugin.rb;h=031e3f9ddd725e6b2bc427a323e567c1291300e3;hp=948a5b91b5577dc5ebd3c45e24ad150b99556c97;hb=df4e02ebf6a4e28a58abcb298a4442a245ad0b15;hpb=20b843bddcd73833d41f98ff79d92ef59bb4d81e diff --git a/lib/common/roundcube_plugin.rb b/lib/common/roundcube_plugin.rb index 948a5b9..031e3f9 100644 --- a/lib/common/roundcube_plugin.rb +++ b/lib/common/roundcube_plugin.rb @@ -1,11 +1,19 @@ require 'common/plugin' require 'common/user' +# Code that all Roundcube plugins ({RoundcubePrune}, {RoundcubeRm}, +# {RoundcubeMv}) share. +# module RoundcubePlugin - # Code that all Roundcube plugins (Prune, Rm, Mv...) will share. - # That is, we implement the Plugin interface. + + # We implement the Plugin "interface." include Plugin + + # Initialize this Roundcube {Plugin} with values in *cfg*. + # + # @param cfg [Configuration] the configuration for this plugin. + # def initialize(cfg) @db_host = cfg.roundcube_dbhost @db_port = cfg.roundcube_dbport @@ -17,15 +25,25 @@ module RoundcubePlugin end + # Describe the given Roundcube *user*. + # + # @param user [User] the user whose description we want. + # + # @return [String] a string containing the Roundcube "User ID" + # associated with *user*. + # def describe_user(user) user_id = self.get_user_id(user) return "User ID: #{user_id}" end + # Return a list of Roundcube users. + # + # @return [Array] a list of users contained in the + # Roundcube database. + # def list_users() - # Produce a list of Roundcube users. This is used in prune/rm, and - # is public because it is useful in testing. usernames = [] connection = PGconn.connect(@db_host, @db_port, @db_opts, @db_tty, @@ -43,6 +61,13 @@ module RoundcubePlugin protected; + + # Find the Roundcube "User ID" associated with the given *user*. + # + # @param user [User] the user whose Roundcube "User ID" we want. + # + # @return [Fixnum] the Roundcube "User ID" for *user*. + # def get_user_id(user) user_id = nil