1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- class Sessions::Backend::ActivityStream
- def initialize(user, asset_lookup, client = nil, client_id = nil, ttl = 25)
- @user = user
- @client = client
- @client_id = client_id
- @ttl = ttl
- @asset_lookup = asset_lookup
- @last_change = nil
- end
- def load
- # get whole collection
- activity_stream = @user.activity_stream(25)
- if activity_stream && !activity_stream.first
- return
- end
- if activity_stream && activity_stream.first && activity_stream.first['created_at'] == @last_change
- return
- end
- # update last changed
- if activity_stream && activity_stream.first
- @last_change = activity_stream.first['created_at']
- end
- @user.activity_stream(25, true)
- end
- def client_key
- "as::load::#{self.class}::#{@user.id}::#{@client_id}"
- end
- def push
- # check timeout
- timeout = Sessions::CacheIn.get(client_key)
- return if timeout
- # set new timeout
- Sessions::CacheIn.set(client_key, true, { expires_in: @ttl.seconds })
- data = load
- return if !data || data.empty?
- if !@client
- return {
- event: 'activity_stream_rebuild',
- collection: 'activity_stream',
- data: data,
- }
- end
- @client.log "push activity_stream #{data.first.class} for user #{@user.id}"
- @client.send(
- event: 'activity_stream_rebuild',
- collection: 'activity_stream',
- data: data,
- )
- end
- end
|