osem-fcy/app/models/user.rb

222 lines
6.6 KiB
Ruby
Raw Normal View History

2014-11-04 17:42:47 +01:00
class IChainRecordNotFound < StandardError
end
class UserDisabled < StandardError
end
2013-01-07 09:04:09 +01:00
class User < ActiveRecord::Base
2014-08-12 11:51:59 +03:00
rolify
has_many :physical_tickets, through: :ticket_purchases do
def by_conference(conference)
where('ticket_purchases.conference_id = ?', conference)
end
end
has_many :users_roles
has_many :roles, through: :users_roles, dependent: :destroy
has_paper_trail on: [:create, :update], ignore: [:sign_in_count, :remember_created_at, :current_sign_in_at, :last_sign_in_at, :current_sign_in_ip, :last_sign_in_ip, :unconfirmed_email,
:avatar_content_type, :avatar_file_size, :avatar_updated_at, :updated_at, :confirmation_sent_at, :confirmation_token, :reset_password_token]
2014-06-23 19:07:50 +03:00
include Gravtastic
2014-06-24 12:14:53 +03:00
gravtastic size: 32
2014-06-23 19:07:50 +03:00
2014-08-12 11:51:59 +03:00
before_create :setup_role
# add scope
scope :comment_notifiable, ->(conference) {joins(:roles).where('roles.name IN (?)', [:organizer, :cfp]).where('roles.resource_type = ? AND roles.resource_id = ?', 'Conference', conference.id)}
2013-01-07 09:04:09 +01:00
# Include default devise modules. Others available are:
# :token_authenticatable, :confirmable,
# :lockable, :timeoutable and :omniauthable
2014-11-04 17:42:47 +01:00
devise_modules = []
devise_modules += if ENV['OSEM_ICHAIN_ENABLED'] == 'true'
[:ichain_authenticatable, :ichain_registerable, :omniauthable, omniauth_providers: []]
else
[:database_authenticatable, :registerable,
2014-11-04 17:42:47 +01:00
:recoverable, :rememberable, :trackable, :validatable, :confirmable,
:omniauthable, omniauth_providers: [:suse, :google, :facebook, :github]]
end
2014-11-04 17:42:47 +01:00
devise(*devise_modules)
2013-01-07 09:04:09 +01:00
2014-06-18 16:58:30 +03:00
has_many :openids
2013-01-07 09:04:09 +01:00
attr_accessor :login
2014-06-23 19:07:50 +03:00
2014-06-24 12:14:53 +03:00
has_many :event_users, dependent: :destroy
has_many :events, -> { uniq }, through: :event_users
has_many :presented_events, -> { joins(:event_users).where(event_users: {event_role: 'speaker'}).uniq }, through: :event_users, source: :event
2014-06-24 12:14:53 +03:00
has_many :registrations, dependent: :destroy
2016-04-22 18:18:46 +03:00
has_many :events_registrations, through: :registrations
has_many :ticket_purchases, dependent: :destroy
2016-07-27 19:27:39 +05:30
has_many :payments, dependent: :destroy
has_many :tickets, through: :ticket_purchases, source: :ticket
2014-06-24 12:14:53 +03:00
has_many :votes, dependent: :destroy
has_many :voted_events, through: :votes, source: :events
has_many :subscriptions, dependent: :destroy
has_many :tracks, foreign_key: 'submitter_id'
2013-01-07 09:04:09 +01:00
accepts_nested_attributes_for :roles
scope :admin, -> { where(is_admin: true) }
scope :active, -> { where(is_disabled: false) }
2014-11-04 17:42:47 +01:00
validates :email, presence: true
2014-05-12 17:53:07 +04:00
validates :username,
2014-11-04 17:42:47 +01:00
uniqueness: {
case_sensitive: false
},
presence: true
2016-04-27 00:21:39 +02:00
validate :biography_limit
##
# Checkes if the user attended the event
# This is used for events that require registration
# The user must have registered to attend the event
# Gets an event
# === Returns
# * +true+ if the user attended the event
# * +false+ if the user did not attend the event
2016-04-22 18:18:46 +03:00
def attended_event? event
event_registration = event.events_registrations.find_by(registration: registrations)
2016-04-22 18:18:46 +03:00
return false unless event_registration.present?
event_registration.attended
end
2016-03-10 22:49:54 +01:00
def name
self[:name].blank? ? username : self[:name]
2016-03-10 22:49:54 +01:00
end
2016-04-22 18:18:46 +03:00
##
# Checks if a user has registered to an event
# ====Returns
# * +true+ or +false+
def registered_to_event? event
event.registrations.include? registrations.find_by(conference: event.program.conference)
2016-04-22 18:18:46 +03:00
end
def subscribed? conference
subscriptions.find_by(conference_id: conference.id).present?
end
def supports? conference
ticket_purchases.find_by(conference_id: conference.id).present?
end
2014-11-04 17:42:47 +01:00
def self.for_ichain_username(username, attributes)
user = find_by(username: username)
raise UserDisabled if user && user.is_disabled
2014-11-04 17:42:47 +01:00
if user
user.update_attributes(email: attributes[:email],
last_sign_in_at: user.current_sign_in_at,
current_sign_in_at: Time.current)
2014-11-04 17:42:47 +01:00
else
begin
2014-11-12 11:45:17 +01:00
user = create!(username: username, email: attributes[:email])
2014-11-04 17:42:47 +01:00
rescue ActiveRecord::RecordNotUnique
raise IChainRecordNotFound
end
end
user
end
def self.find_for_database_authentication(warden_conditions)
conditions = warden_conditions.dup
2014-11-04 17:42:47 +01:00
login = conditions.delete(:login)
if login
where(conditions).where(['lower(username) = :value OR lower(email) = :value', { value: login.downcase }]).first
else
where(conditions).first
end
end
2014-06-18 16:58:30 +03:00
# Searches for user based on email. Returns found user or new user.
# ====Returns
# * +User::ActiveRecord_Relation+ -> user
def self.find_for_auth(auth, current_user = nil)
user = current_user
if user.nil? # No current user available, user is not already logged in
user = User.where(email: auth.info.email).first_or_initialize
end
if user.new_record?
user.email = auth.info.email
2014-06-23 19:07:50 +03:00
user.name = auth.info.name
user.username = auth.info.username
2014-06-18 18:05:28 +03:00
user.password = Devise.friendly_token[0, 20]
2014-06-18 16:58:30 +03:00
user.skip_confirmation!
end
user
end
2014-08-12 11:51:59 +03:00
# Gets the roles of the user, groups them by role.name and returns the resource(s) of each role
# ====Returns
# * +Hash+ * -> e.g. 'organizer' => [conf1, conf2]
2013-01-07 09:04:09 +01:00
def get_roles
2014-08-12 11:51:59 +03:00
result = {}
roles.each do |role|
resource = Conference.find(role.resource_id).short_title
if result[role.name].nil?
result[role.name] = [resource]
else
result[role.name] << resource
end
2014-08-12 11:51:59 +03:00
end
result
2013-01-07 09:04:09 +01:00
end
2014-06-23 19:07:50 +03:00
def registered
registrations = self.registrations
if registrations.count == 0
'None'
else
registrations.map { |r| r.conference.title }.join ', '
end
end
def attended
2014-06-26 15:43:24 +03:00
registrations_attended = registrations.where(attended: true)
2014-06-23 19:07:50 +03:00
if registrations_attended.count == 0
'None'
else
registrations_attended.map { |r| r.conference.title }.join ', '
end
2013-01-07 09:04:09 +01:00
end
def confirmed?
!confirmed_at.nil?
end
2014-06-26 15:43:24 +03:00
def proposals(conference)
events.where('program_id = ? AND event_users.event_role=?', conference.program.id, 'submitter')
2014-06-23 19:07:50 +03:00
end
2014-06-26 15:43:24 +03:00
def proposal_count(conference)
2014-06-23 19:07:50 +03:00
proposals(conference).count
end
private
2014-06-24 12:14:53 +03:00
def setup_role
if User.count == 1 && User.first.email == 'deleted@localhost.osem'
self.is_admin = true
end
2014-06-24 12:14:53 +03:00
end
2016-04-25 01:44:48 +02:00
##
# Check if biography has an allowed number of words. Used as validation.
#
2016-04-27 00:21:39 +02:00
def biography_limit
if biography.present?
errors.add(:biography, 'is limited to 150 words.') if biography.split.length > 150
2016-04-25 01:44:48 +02:00
end
end
2013-01-07 09:04:09 +01:00
end