metamaps--metamaps/app/models/user.rb

91 lines
2.6 KiB
Ruby
Raw Normal View History

2012-09-23 02:39:12 +00:00
require 'open-uri'
class User < ActiveRecord::Base
2014-08-12 22:14:04 +00:00
has_many :topics
has_many :synapses
has_many :maps
has_many :mappings
has_many :tokens
has_many :user_maps, dependent: :destroy
has_many :shared_maps, through: :user_maps, source: :map
2015-12-11 22:29:17 +00:00
after_create :generate_code
devise :database_authenticatable, :recoverable, :rememberable, :trackable, :registerable
2015-12-11 19:23:41 +00:00
serialize :settings, UserPreference
2015-12-11 19:23:41 +00:00
validates :password, presence: true,
length: { within: 8..40 },
on: :create
validates :password, length: { within: 8..40 },
allow_blank: true,
on: :update
validates :password, confirmation: true
validates :name, presence: true # done by devise
validates :email, presence: true # done by devise
validates :name, uniqueness: true # done by devise
validates :email, uniqueness: true # done by devise
validates :joinedwithcode, presence: true, inclusion: { in: $codes, message: '%{value} is not valid' }, on: :create
2015-12-11 19:23:41 +00:00
# This method associates the attribute ":image" with a file attachment
has_attached_file :image, styles: {
thirtytwo: ['32x32#', :png],
sixtyfour: ['64x64#', :png],
ninetysix: ['96x96#', :png],
onetwentyeight: ['128x128#', :png]
2014-09-03 23:05:25 +00:00
},
default_url: 'https://s3.amazonaws.com/metamaps-assets/site/user.png'
2015-12-11 19:23:41 +00:00
# Validate the attached image is image/jpg, image/png, etc
validates_attachment_content_type :image, content_type: %r(\Aimage/.*\Z)
2014-08-12 15:09:53 +00:00
2015-11-06 09:08:42 +00:00
# override default as_json
def as_json(_options = {})
{ id: id,
name: name,
image: image.url(:sixtyfour),
admin: admin }
2014-08-12 15:09:53 +00:00
end
2015-11-06 09:08:42 +00:00
def as_json_for_autocomplete
2015-11-28 13:51:28 +00:00
json = {}
json['id'] = id
json['label'] = name
json['value'] = name
json['profile'] = image.url(:sixtyfour)
json['mapCount'] = maps.count
json['generation'] = generation
json['created_at'] = created_at.strftime('%m/%d/%Y')
json['rtype'] = 'mapper'
2015-11-28 13:51:28 +00:00
json
2015-11-06 09:08:42 +00:00
end
2015-12-11 19:23:41 +00:00
# generate a random 8 letter/digit code that they can use to invite people
def generate_code
self.code ||= rand(36**8).to_s(36)
$codes.push(self.code)
self.generation = get_generation!
end
def get_generation!
2015-11-06 09:08:42 +00:00
if code == joinedwithcode
update(generation: 0)
else
2015-12-11 19:23:41 +00:00
update(generation: User.find_by_code(joinedwithcode).generation + 1)
end
end
2015-12-11 19:23:41 +00:00
def settings
# make sure we always return a UserPreference instance
self[:settings] = UserPreference.new if self[:settings].nil?
self[:settings]
end
2015-12-11 19:23:41 +00:00
def settings=(val)
self[:settings] = val
end
2012-09-23 02:39:12 +00:00
end