Module: Hyrax::User::ClassMethods

Defined in:
app/models/concerns/hyrax/user.rb

Instance Method Summary collapse

Instance Method Details

#audit_userObject

Override this method if you aren’t using email/password



149
150
151
# File 'app/models/concerns/hyrax/user.rb', line 149

def audit_user
  find_or_create_system_user(audit_user_key)
end

#audit_user_keyObject



153
154
155
# File 'app/models/concerns/hyrax/user.rb', line 153

def audit_user_key
  Hyrax.config.audit_user_key
end

#batch_userObject

Override this method if you aren’t using email/password



162
163
164
# File 'app/models/concerns/hyrax/user.rb', line 162

def batch_user
  find_or_create_system_user(batch_user_key)
end

#batch_user_keyObject



166
167
168
# File 'app/models/concerns/hyrax/user.rb', line 166

def batch_user_key
  Hyrax.config.batch_user_key
end

#find_or_create_system_user(user_key) ⇒ Object



170
171
172
# File 'app/models/concerns/hyrax/user.rb', line 170

def find_or_create_system_user(user_key)
  User.find_by_user_key(user_key) || User.create!(user_key_field => user_key, password: Devise.friendly_token[0, 20])
end

#from_url_component(component) ⇒ Object



174
175
176
# File 'app/models/concerns/hyrax/user.rb', line 174

def from_url_component(component)
  User.find_by_user_key(component.gsub(/-dot-/, '.'))
end

#recent_users(start_date, end_date = nil) ⇒ Object



178
179
180
181
# File 'app/models/concerns/hyrax/user.rb', line 178

def recent_users(start_date, end_date = nil)
  end_date ||= DateTime.current # doing or eq here so that if the user passes nil we still get now
  User.where(created_at: start_date..end_date)
end

#user_key_fieldObject



157
158
159
# File 'app/models/concerns/hyrax/user.rb', line 157

def user_key_field
  Hydra.config.user_key_field
end