#-- # Copyright (c) 2012+ Damjan Rems # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #++ ######################################################################### # ActiveSupport::Concern definition for DcUser class. ######################################################################### module DcUserConcern extend ActiveSupport::Concern included do include Mongoid::Document include Mongoid::Timestamps include ActiveModel::SecurePassword field :username, type: String, default: '' field :title, type: String, default: '' field :first_name, type: String, default: '' field :middle_name, type: String, default: '' field :last_name, type: String, default: '' field :name, type: String field :company, type: String, default: '' field :address, type: String field :post, type: String field :country, type: String field :phone, type: String field :email, type: String field :www, type: String field :picture, type: String field :birthdate, type: Date field :about, type: String field :last_visit, type: Time field :active, type: Boolean, default: true field :valid_from, type: Date field :valid_to, type: Date field :created_by, type: BSON::ObjectId field :updated_by, type: BSON::ObjectId field :type, type: Integer, default: 0 # 0 => User, 1 => Group field :members, type: Array embeds_many :dc_user_roles # for forum field :signature, type: String field :interests, type: String field :job_occup, type: String field :description, type: String field :reg_date, type: Date field :password_digest, type: String has_secure_password index( { username: 1 }, { unique: true } ) index( { email: 1 }, { unique: true } ) index 'dc_user_roles.dc_policy_role_id' => 1 index 'members' => 1 validates_length_of :username, minimum: 4 before_save :do_before_save ########################################################################## # before_save callback takes care of name field and ensures that e-mail is unique # when entry is left empty. ########################################################################## def do_before_save self.name = "#{self.title} #{self.first_name} #{self.middle_name + ' ' unless self.middle_name.blank?}#{self.last_name}".strip # to ensure unique e-mail self.email = "unknown@#{self.id}" if self.email.to_s.strip.size < 5 end end end ######################################################################## # Mongoid::Document model for dc_user documents. # # dc_users collection holds data about regitered users. Passwords are encrypted # with bcrypt gem. # # This model defines basic fields required for evidence of # registerred users. Since it is implemented as ActiveSupport::Concern you are # encouraged to further expand model with your own data structures. ######################################################################## class DcUser include DcUserConcern end