summaryrefslogtreecommitdiff
path: root/lib/tapicero/user_event_handler.rb
blob: 337cc063fb46ff0612899a2144cdf2f9fc8771c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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