Sha256: 71d58a5a3190301626985412a711eed63fbb6c292d99593cf84b77a432f219ea

Contents?: true

Size: 1.25 KB

Versions: 11

Compression:

Stored size: 1.25 KB

Contents

# -*- encoding : utf-8 -*-
module Blacklight::User
  
  extend Deprecation
  self.deprecation_horizon = 'blacklight 6.0'

  # This gives us an is_blacklight_user method that can be included in
  # the containing applications models. 
  # SEE ALSO:  The /lib/blacklight/engine.rb class for how when this 
  # is injected into the hosting application through ActiveRecord::Base extend
  def self.included(base)
    if base.respond_to? :has_many
      base.send :has_many, :bookmarks, :dependent => :destroy, :as => :user
      base.send :has_many, :searches,  :dependent => :destroy, :as => :user
    end
  end

  def bookmarks_for_documents documents = []
    if documents.length > 0
      bookmarks.where(document_type: documents.first.class.base_class, document_id: documents.map { |x| x.id})
    else
      []
    end
  end

  def bookmarked_document_ids
    self.bookmarks.pluck(:document_id)
  end
  deprecation_deprecate bookmarked_document_ids: "use current_user.bookmarks.pluck(:document_id) instead"

  def document_is_bookmarked?(document)
    bookmarks_for_documents([document]).any?
  end
    
  # returns a Bookmark object if there is one for document_id, else
  # nil. 
  def existing_bookmark_for(document)
    bookmarks_for_documents([document]).first
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
blacklight-5.13.0 lib/blacklight/user.rb
blacklight-5.11.3 lib/blacklight/user.rb
blacklight-5.12.1 lib/blacklight/user.rb
blacklight-5.12.0 lib/blacklight/user.rb
blacklight-5.10.3 lib/blacklight/user.rb
blacklight-5.11.2 lib/blacklight/user.rb
blacklight-5.11.1 lib/blacklight/user.rb
blacklight-5.11.0 lib/blacklight/user.rb
blacklight-5.10.2 lib/blacklight/user.rb
blacklight-5.10.1 lib/blacklight/user.rb
blacklight-5.10.0 lib/blacklight/user.rb