]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/common/agendav_plugin.rb
Replace 'account' with 'user' everywhere.
[mailshears.git] / lib / common / agendav_plugin.rb
index cb445bed817d853c3b91c3e3c75c2735330614cc..7522b2cfce630a7340b69fadd5d7279ea4b9ffd9 100644 (file)
@@ -6,8 +6,7 @@ module AgendavPlugin
   include Plugin
 
 
   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
     @db_host = cfg.agendav_dbhost
     @db_port = cfg.agendav_dbport
     @db_opts = cfg.agendav_dbopts
@@ -24,9 +23,9 @@ module AgendavPlugin
   end
 
 
   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
     else
       return 'User not found'
     end
@@ -35,10 +34,6 @@ module AgendavPlugin
 
   protected;
 
 
   protected;
 
-  def user_exists(account)
-    ad_users = list_users()
-    return ad_users.include?(account)
-  end
 
   def list_users()
     usernames = []
 
   def list_users()
     usernames = []