summaryrefslogtreecommitdiff
path: root/lib/tapicero/user_event_handler.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tapicero/user_event_handler.rb')
-rw-r--r--lib/tapicero/user_event_handler.rb33
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/tapicero/user_event_handler.rb b/lib/tapicero/user_event_handler.rb
new file mode 100644
index 0000000..337cc06
--- /dev/null
+++ b/lib/tapicero/user_event_handler.rb
@@ -0,0 +1,33 @@
+require 'tapicero/user_database'
+module Tapicero
+ class UserEventHandler
+ def initialize(users)
+ users.created do |hash|
+ logger.debug "Created user " + hash['id']
+ user_database(hash['id']).prepare
+ end
+
+ # Sometimes changes log starts with rev 2. So the
+ # detection of is currently not working properly
+ # Working around this until a new version of
+ # couchrest changes takes this into account.
+ users.updated do |hash|
+ logger.debug "Updated user " + hash['id']
+ user_database(hash['id']).prepare
+ end
+
+ users.deleted do |hash|
+ logger.debug "Deleted user " + hash['id']
+ user_database(hash['id']).destroy
+ end
+ end
+
+ def logger
+ Tapicero.logger
+ end
+
+ def user_database(id)
+ UserDatabase.new(id)
+ end
+ end
+end