2012-09-22 22:39:12 -04:00
|
|
|
require 'open-uri'
|
|
|
|
|
|
|
|
class User < ActiveRecord::Base
|
|
|
|
|
2014-08-12 18:14:04 -04:00
|
|
|
has_many :topics
|
|
|
|
has_many :synapses
|
|
|
|
has_many :maps
|
|
|
|
has_many :mappings
|
2012-09-22 22:39:12 -04:00
|
|
|
|
2014-01-28 23:27:32 -05:00
|
|
|
before_create :generate_code
|
2013-07-11 11:13:27 -04:00
|
|
|
|
|
|
|
devise :database_authenticatable, :recoverable, :rememberable, :trackable, :registerable
|
2014-01-28 23:27:32 -05:00
|
|
|
|
2014-07-07 21:02:43 -04:00
|
|
|
attr_accessible :name, :email, :image, :password, :password_confirmation, :code, :joinedwithcode, :remember_me
|
2013-07-10 14:02:38 -04:00
|
|
|
|
2013-01-25 20:49:40 -05:00
|
|
|
serialize :settings, UserPreference
|
2012-10-29 13:52:29 -04:00
|
|
|
|
2014-10-21 20:31:59 -04:00
|
|
|
validates :password, :presence => true,
|
|
|
|
:length => { :within => 8..40 },
|
|
|
|
:on => :create
|
|
|
|
validates :password, :length => { :within => 8..40 },
|
|
|
|
:allow_blank => true,
|
|
|
|
:on => :update
|
|
|
|
validates_confirmation_of :password
|
|
|
|
|
|
|
|
validates_presence_of :name # done by devise
|
|
|
|
validates_presence_of :email # done by devise
|
2013-07-11 11:13:27 -04:00
|
|
|
validates_uniqueness_of :name # done by devise
|
|
|
|
validates_uniqueness_of :email # done by devise
|
2014-10-24 11:30:26 -04:00
|
|
|
|
|
|
|
if ActiveRecord::Base.connection.table_exists? 'users'
|
|
|
|
codes = ActiveRecord::Base.connection.execute("SELECT code FROM users").map {|user| user["code"] }
|
|
|
|
else
|
|
|
|
codes = []
|
|
|
|
end
|
|
|
|
validates :joinedwithcode, :presence => true, :inclusion => { :in => codes, :message => "%{value} is not valid" }, :on => :create
|
2014-05-04 15:12:38 -04:00
|
|
|
|
2014-07-07 21:02:43 -04:00
|
|
|
# This method associates the attribute ":image" with a file attachment
|
|
|
|
has_attached_file :image, :styles => {
|
2014-11-04 12:37:17 -05:00
|
|
|
:square => ['84x84#', :png]
|
2014-09-03 19:05:25 -04:00
|
|
|
},
|
|
|
|
:default_url => "/assets/user.png"
|
2014-07-08 00:21:43 -04:00
|
|
|
|
2014-07-07 21:02:43 -04:00
|
|
|
# Validate the attached image is image/jpg, image/png, etc
|
|
|
|
validates_attachment_content_type :image, :content_type => /\Aimage\/.*\Z/
|
2014-08-12 11:09:53 -04:00
|
|
|
|
|
|
|
def as_json(options={})
|
2014-08-12 12:01:01 -04:00
|
|
|
{ :id => self.id,
|
|
|
|
:name => self.name,
|
2014-11-04 12:37:17 -05:00
|
|
|
:image => self.image.url(:square)
|
2014-08-12 11:09:53 -04:00
|
|
|
}
|
|
|
|
end
|
2013-01-25 20:49:40 -05:00
|
|
|
|
2013-07-11 11:13:27 -04:00
|
|
|
def generate_code
|
|
|
|
#generate a random 8 letter/digit code that they can use to invite people
|
|
|
|
self.code = rand(36**8).to_s(36)
|
2014-11-21 16:50:42 -05:00
|
|
|
|
|
|
|
self.generation = self.get_generation
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_generation
|
|
|
|
if self.joinedwithcode == self.code
|
|
|
|
# if your joinedwithcode equals your code you must be GEN 0
|
|
|
|
gen = 0
|
|
|
|
elsif self.generation
|
|
|
|
# if your generation has already been calculated then just return that value
|
|
|
|
gen = self.generation
|
|
|
|
else
|
|
|
|
# if your generation hasn't been calculated, base it off the
|
|
|
|
# generation of the person whose code you joined with + 1
|
|
|
|
gen = User.find_by_code(self.joinedwithcode).get_generation + 1
|
|
|
|
end
|
2013-07-11 11:13:27 -04:00
|
|
|
end
|
|
|
|
|
2013-01-25 20:49:40 -05:00
|
|
|
def settings
|
|
|
|
# make sure we always return a UserPreference instance
|
|
|
|
if read_attribute(:settings).nil?
|
|
|
|
write_attribute :settings, UserPreference.new
|
|
|
|
read_attribute :settings
|
|
|
|
else
|
|
|
|
read_attribute :settings
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def settings=(val)
|
|
|
|
write_attribute :settings, val
|
|
|
|
end
|
2012-09-22 22:39:12 -04:00
|
|
|
end
|