X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fcommon%2Fagendav_plugin.rb;h=ae9b11c0b05d89874ebdc6dedbc2e85af36c6b89;hp=fad869f95235964884d58635a465d670cde7b455;hb=bf7d0402eda27d9487ca9402156818545fdda286;hpb=e3826d8926e11763837a591986d453e9ef5d9dec diff --git a/lib/common/agendav_plugin.rb b/lib/common/agendav_plugin.rb index fad869f..ae9b11c 100644 --- a/lib/common/agendav_plugin.rb +++ b/lib/common/agendav_plugin.rb @@ -6,8 +6,7 @@ module AgendavPlugin include Plugin - def initialize() - cfg = Configuration.new() + def initialize(cfg) @db_host = cfg.agendav_dbhost @db_port = cfg.agendav_dbport @db_opts = cfg.agendav_dbopts @@ -20,27 +19,24 @@ module AgendavPlugin def describe_domain(domain) # AgenDAV doesn't have a concept of domains. - return 'N/A' + return domain end - def describe_account(account) - if self.user_exists(account) - return "Username: #{account}" + def describe_user(user) + if self.user_exists(user) + return "Username: #{user}" else return 'User not found' end end - protected; - - def user_exists(account) - ad_users = get_agendav_usernames() - return ad_users.include?(account) - end - - def get_agendav_usernames() + def list_users() + # + # Produce a list of AgenDAV users. This is public because it's + # useful in testing. + # usernames = [] # Just assume PostgreSQL for now.