summaryrefslogtreecommitdiff
path: root/lib/tapicero_daemon.rb
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2014-02-04 14:14:54 +0100
committerAzul <azul@riseup.net>2014-02-04 14:14:54 +0100
commitecf7188143d09c091f89b1970269e04fc7cba4e8 (patch)
treeb2db3a9fe4a35efe4935fa626f71d55219c6e045 /lib/tapicero_daemon.rb
parenta8194a21cb9f452adb77d24b60434f921c60d496 (diff)
refactor: separate user event handler
Diffstat (limited to 'lib/tapicero_daemon.rb')
-rw-r--r--lib/tapicero_daemon.rb26
1 files changed, 5 insertions, 21 deletions
diff --git a/lib/tapicero_daemon.rb b/lib/tapicero_daemon.rb
index b9f22dc..89566de 100644
--- a/lib/tapicero_daemon.rb
+++ b/lib/tapicero_daemon.rb
@@ -4,30 +4,14 @@
#
# Daemons.run('tapicero_daemon.rb')
#
-
require 'tapicero'
module Tapicero
- users = CouchRest::Changes.new('users')
-
- users.created do |hash|
- logger.debug "Created user " + hash['id']
- user_database(hash['id']).prepare
- end
+ module Daemon
+ require 'tapicero/user_event_handler'
+ users = CouchRest::Changes.new('users')
+ UserEventHandler.new(users)
+ users.listen
- # 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
-
- users.listen
end