2014-05-27 13:54:04 -04:00
|
|
|
class UserProfile < ActiveRecord::Base
|
2014-06-10 01:19:08 -04:00
|
|
|
belongs_to :user, inverse_of: :user_profile
|
|
|
|
|
2014-09-08 15:17:31 -04:00
|
|
|
validates :bio_raw, length: { maximum: 3000 }
|
2017-12-20 23:27:17 -05:00
|
|
|
validates :website, url: true, allow_blank: true, if: Proc.new { |c| c.new_record? || c.website_changed? }
|
2014-06-10 01:19:08 -04:00
|
|
|
validates :user, presence: true
|
|
|
|
before_save :cook
|
2014-07-22 21:42:24 -04:00
|
|
|
after_save :trigger_badges
|
2014-06-10 01:19:08 -04:00
|
|
|
|
2016-09-08 12:03:38 -04:00
|
|
|
validates :profile_background, upload_url: true, if: :profile_background_changed?
|
|
|
|
validates :card_background, upload_url: true, if: :card_background_changed?
|
2016-07-28 13:54:17 -04:00
|
|
|
|
2016-12-26 10:24:54 -05:00
|
|
|
validate :website_domain_validator, if: Proc.new { |c| c.new_record? || c.website_changed? }
|
|
|
|
|
2014-10-20 13:15:58 -04:00
|
|
|
belongs_to :card_image_badge, class_name: 'Badge'
|
2015-09-14 03:51:17 -04:00
|
|
|
has_many :user_profile_views, dependent: :destroy
|
2014-10-20 13:15:58 -04:00
|
|
|
|
2014-08-05 02:37:56 -04:00
|
|
|
BAKED_VERSION = 1
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def bio_excerpt(length = 350, opts = {})
|
2017-05-18 16:39:48 -04:00
|
|
|
excerpt = PrettyText.excerpt(bio_cooked, length, opts).sub(/<br>$/, '')
|
2014-11-25 16:14:21 -05:00
|
|
|
return excerpt if excerpt.blank? || (user.has_trust_level?(TrustLevel[1]) && !user.suspended?)
|
2014-06-10 01:19:08 -04:00
|
|
|
PrettyText.strip_links(excerpt)
|
|
|
|
end
|
|
|
|
|
|
|
|
def bio_processed
|
2014-11-25 16:14:21 -05:00
|
|
|
return bio_cooked if bio_cooked.blank? || (user.has_trust_level?(TrustLevel[1]) && !user.suspended?)
|
2014-06-10 01:19:08 -04:00
|
|
|
PrettyText.strip_links(bio_cooked)
|
|
|
|
end
|
|
|
|
|
|
|
|
def bio_summary
|
|
|
|
return nil unless bio_cooked.present?
|
2014-12-07 18:23:53 -05:00
|
|
|
bio_excerpt(500, strip_links: true, text_entities: true)
|
2014-06-10 01:19:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def recook_bio
|
|
|
|
self.bio_raw_will_change!
|
|
|
|
cook
|
|
|
|
end
|
|
|
|
|
2014-10-20 12:11:36 -04:00
|
|
|
def upload_card_background(upload)
|
|
|
|
self.card_background = upload.url
|
2014-10-16 15:05:36 -04:00
|
|
|
self.save!
|
|
|
|
end
|
|
|
|
|
2014-10-20 12:11:36 -04:00
|
|
|
def clear_card_background
|
|
|
|
self.card_background = ""
|
2014-10-16 15:05:36 -04:00
|
|
|
self.save!
|
|
|
|
end
|
|
|
|
|
2014-06-11 21:52:50 -04:00
|
|
|
def upload_profile_background(upload)
|
|
|
|
self.profile_background = upload.url
|
|
|
|
self.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
def clear_profile_background
|
|
|
|
self.profile_background = ""
|
|
|
|
self.save!
|
|
|
|
end
|
|
|
|
|
2014-08-05 02:37:56 -04:00
|
|
|
def self.rebake_old(limit)
|
|
|
|
problems = []
|
|
|
|
UserProfile.where('bio_cooked_version IS NULL OR bio_cooked_version < ?', BAKED_VERSION)
|
2017-07-27 21:20:09 -04:00
|
|
|
.limit(limit).each do |p|
|
2014-08-05 02:37:56 -04:00
|
|
|
begin
|
|
|
|
p.rebake!
|
|
|
|
rescue => e
|
2017-07-27 21:20:09 -04:00
|
|
|
problems << { profile: p, ex: e }
|
2014-08-05 02:37:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
problems
|
|
|
|
end
|
|
|
|
|
|
|
|
def rebake!
|
|
|
|
update_columns(bio_cooked: cooked, bio_cooked_version: BAKED_VERSION)
|
|
|
|
end
|
|
|
|
|
2014-07-03 03:29:44 -04:00
|
|
|
protected
|
|
|
|
|
2014-07-22 21:42:24 -04:00
|
|
|
def trigger_badges
|
|
|
|
BadgeGranter.queue_badge_grant(Badge::Trigger::UserChange, user: self)
|
2014-07-03 03:29:44 -04:00
|
|
|
end
|
|
|
|
|
2014-06-10 01:19:08 -04:00
|
|
|
private
|
|
|
|
|
2014-08-05 02:37:56 -04:00
|
|
|
def cooked
|
|
|
|
if self.bio_raw.present?
|
2014-09-05 01:20:39 -04:00
|
|
|
PrettyText.cook(self.bio_raw, omit_nofollow: user.has_trust_level?(TrustLevel[3]) && !SiteSetting.tl3_links_no_follow)
|
2014-08-05 02:37:56 -04:00
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-06-10 01:19:08 -04:00
|
|
|
def cook
|
|
|
|
if self.bio_raw.present?
|
2014-08-05 02:37:56 -04:00
|
|
|
if bio_raw_changed?
|
|
|
|
self.bio_cooked = cooked
|
|
|
|
self.bio_cooked_version = BAKED_VERSION
|
|
|
|
end
|
2014-06-10 01:19:08 -04:00
|
|
|
else
|
|
|
|
self.bio_cooked = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-12-26 10:24:54 -05:00
|
|
|
def website_domain_validator
|
2017-04-18 03:48:51 -04:00
|
|
|
allowed_domains = SiteSetting.user_website_domains_whitelist
|
|
|
|
return if (allowed_domains.blank? || self.website.blank?)
|
2016-12-26 10:24:54 -05:00
|
|
|
|
2017-04-18 03:48:51 -04:00
|
|
|
domain = URI.parse(self.website).host
|
|
|
|
self.errors.add :base, (I18n.t('user.website.domain_not_allowed', domains: allowed_domains.split('|').join(", "))) unless allowed_domains.split('|').include?(domain)
|
2016-12-26 10:24:54 -05:00
|
|
|
end
|
|
|
|
|
2014-05-27 13:54:04 -04:00
|
|
|
end
|
2014-05-29 00:59:14 -04:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_profiles
|
|
|
|
#
|
2014-07-03 03:29:44 -04:00
|
|
|
# user_id :integer not null, primary key
|
2017-12-05 10:29:14 -05:00
|
|
|
# location :string(255)
|
|
|
|
# website :string(255)
|
2014-07-03 03:29:44 -04:00
|
|
|
# bio_raw :text
|
|
|
|
# bio_cooked :text
|
2014-11-19 22:53:15 -05:00
|
|
|
# dismissed_banner_key :integer
|
2017-12-05 10:29:14 -05:00
|
|
|
# profile_background :string(255)
|
2014-08-06 23:33:11 -04:00
|
|
|
# bio_cooked_version :integer
|
2014-11-19 22:53:15 -05:00
|
|
|
# badge_granted_title :boolean default(FALSE)
|
|
|
|
# card_background :string(255)
|
|
|
|
# card_image_badge_id :integer
|
2015-09-13 23:50:59 -04:00
|
|
|
# views :integer default(0), not null
|
2014-08-06 23:33:11 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_user_profiles_on_bio_cooked_version (bio_cooked_version)
|
2016-11-23 21:13:03 -05:00
|
|
|
# index_user_profiles_on_card_background (card_background)
|
|
|
|
# index_user_profiles_on_profile_background (profile_background)
|
2014-05-29 00:59:14 -04:00
|
|
|
#
|