2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-07 16:03:26 +08:00
|
|
|
require_dependency 'upload_creator'
|
2014-05-28 01:54:04 +08:00
|
|
|
class UserProfile < ActiveRecord::Base
|
2019-04-29 11:58:52 +08:00
|
|
|
self.ignored_columns = %w{
|
|
|
|
card_background
|
|
|
|
profile_background
|
|
|
|
}
|
2018-04-24 21:46:57 +08:00
|
|
|
|
2014-06-10 13:19:08 +08:00
|
|
|
belongs_to :user, inverse_of: :user_profile
|
2019-04-29 11:58:52 +08:00
|
|
|
belongs_to :card_background_upload, class_name: "Upload"
|
|
|
|
belongs_to :profile_background_upload, class_name: "Upload"
|
2014-06-10 13:19:08 +08:00
|
|
|
|
2014-09-09 03:17:31 +08:00
|
|
|
validates :bio_raw, length: { maximum: 3000 }
|
2017-12-21 12:27:17 +08:00
|
|
|
validates :website, url: true, allow_blank: true, if: Proc.new { |c| c.new_record? || c.website_changed? }
|
2014-06-10 13:19:08 +08:00
|
|
|
validates :user, presence: true
|
|
|
|
before_save :cook
|
2014-07-23 09:42:24 +08:00
|
|
|
after_save :trigger_badges
|
2014-06-10 13:19:08 +08:00
|
|
|
|
2016-12-26 23:24:54 +08:00
|
|
|
validate :website_domain_validator, if: Proc.new { |c| c.new_record? || c.website_changed? }
|
|
|
|
|
2015-09-14 15:51:17 +08:00
|
|
|
has_many :user_profile_views, dependent: :destroy
|
2014-10-21 01:15:58 +08:00
|
|
|
|
2014-08-05 14:37:56 +08:00
|
|
|
BAKED_VERSION = 1
|
|
|
|
|
2017-07-28 09:20:09 +08:00
|
|
|
def bio_excerpt(length = 350, opts = {})
|
2019-05-29 23:05:52 +08:00
|
|
|
return nil if bio_cooked.blank?
|
2017-05-19 04:39:48 +08:00
|
|
|
excerpt = PrettyText.excerpt(bio_cooked, length, opts).sub(/<br>$/, '')
|
2014-11-26 05:14:21 +08:00
|
|
|
return excerpt if excerpt.blank? || (user.has_trust_level?(TrustLevel[1]) && !user.suspended?)
|
2014-06-10 13:19:08 +08:00
|
|
|
PrettyText.strip_links(excerpt)
|
|
|
|
end
|
|
|
|
|
|
|
|
def bio_processed
|
2014-11-26 05:14:21 +08:00
|
|
|
return bio_cooked if bio_cooked.blank? || (user.has_trust_level?(TrustLevel[1]) && !user.suspended?)
|
2014-06-10 13:19:08 +08:00
|
|
|
PrettyText.strip_links(bio_cooked)
|
|
|
|
end
|
|
|
|
|
|
|
|
def bio_summary
|
2014-12-08 07:23:53 +08:00
|
|
|
bio_excerpt(500, strip_links: true, text_entities: true)
|
2014-06-10 13:19:08 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def recook_bio
|
|
|
|
self.bio_raw_will_change!
|
|
|
|
cook
|
|
|
|
end
|
|
|
|
|
2014-10-21 00:11:36 +08:00
|
|
|
def upload_card_background(upload)
|
2019-04-29 11:58:52 +08:00
|
|
|
self.update!(card_background_upload: upload)
|
2014-10-17 03:05:36 +08:00
|
|
|
end
|
|
|
|
|
2014-10-21 00:11:36 +08:00
|
|
|
def clear_card_background
|
2019-04-29 11:58:52 +08:00
|
|
|
self.update!(card_background_upload: nil)
|
2014-10-17 03:05:36 +08:00
|
|
|
end
|
|
|
|
|
2014-06-12 09:52:50 +08:00
|
|
|
def upload_profile_background(upload)
|
2019-04-29 11:58:52 +08:00
|
|
|
self.update!(profile_background_upload: upload)
|
2014-06-12 09:52:50 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def clear_profile_background
|
2019-04-29 11:58:52 +08:00
|
|
|
self.update!(profile_background_upload: nil)
|
2014-06-12 09:52:50 +08:00
|
|
|
end
|
|
|
|
|
2014-08-05 14:37:56 +08:00
|
|
|
def self.rebake_old(limit)
|
|
|
|
problems = []
|
|
|
|
UserProfile.where('bio_cooked_version IS NULL OR bio_cooked_version < ?', BAKED_VERSION)
|
2017-07-28 09:20:09 +08:00
|
|
|
.limit(limit).each do |p|
|
2014-08-05 14:37:56 +08:00
|
|
|
begin
|
|
|
|
p.rebake!
|
|
|
|
rescue => e
|
2017-07-28 09:20:09 +08:00
|
|
|
problems << { profile: p, ex: e }
|
2014-08-05 14:37:56 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
problems
|
|
|
|
end
|
|
|
|
|
|
|
|
def rebake!
|
|
|
|
update_columns(bio_cooked: cooked, bio_cooked_version: BAKED_VERSION)
|
|
|
|
end
|
|
|
|
|
2018-05-07 16:03:26 +08:00
|
|
|
def self.import_url_for_user(background_url, user, options = nil)
|
|
|
|
tempfile = FileHelper.download(
|
|
|
|
background_url,
|
|
|
|
max_file_size: SiteSetting.max_image_size_kb.kilobytes,
|
|
|
|
tmp_file_name: "sso-profile-background",
|
|
|
|
follow_redirect: true
|
|
|
|
)
|
|
|
|
|
|
|
|
return unless tempfile
|
|
|
|
|
|
|
|
ext = FastImage.type(tempfile).to_s
|
|
|
|
tempfile.rewind
|
|
|
|
|
|
|
|
is_card_background = !options || options[:is_card_background]
|
|
|
|
type = is_card_background ? "card_background" : "profile_background"
|
|
|
|
|
|
|
|
upload = UploadCreator.new(tempfile, "external-profile-background." + ext, origin: background_url, type: type).create_for(user.id)
|
|
|
|
|
|
|
|
if (is_card_background)
|
|
|
|
user.user_profile.upload_card_background(upload)
|
|
|
|
else
|
|
|
|
user.user_profile.upload_profile_background(upload)
|
|
|
|
end
|
|
|
|
|
|
|
|
rescue Net::ReadTimeout, OpenURI::HTTPError
|
|
|
|
# skip saving, we are not connected to the net
|
|
|
|
ensure
|
|
|
|
tempfile.close! if tempfile && tempfile.respond_to?(:close!)
|
|
|
|
end
|
|
|
|
|
2014-07-03 15:29:44 +08:00
|
|
|
protected
|
|
|
|
|
2014-07-23 09:42:24 +08:00
|
|
|
def trigger_badges
|
|
|
|
BadgeGranter.queue_badge_grant(Badge::Trigger::UserChange, user: self)
|
2014-07-03 15:29:44 +08:00
|
|
|
end
|
|
|
|
|
2014-06-10 13:19:08 +08:00
|
|
|
private
|
|
|
|
|
2014-08-05 14:37:56 +08:00
|
|
|
def cooked
|
|
|
|
if self.bio_raw.present?
|
2014-09-05 13:20:39 +08:00
|
|
|
PrettyText.cook(self.bio_raw, omit_nofollow: user.has_trust_level?(TrustLevel[3]) && !SiteSetting.tl3_links_no_follow)
|
2014-08-05 14:37:56 +08:00
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-06-10 13:19:08 +08:00
|
|
|
def cook
|
|
|
|
if self.bio_raw.present?
|
2014-08-05 14:37:56 +08:00
|
|
|
if bio_raw_changed?
|
|
|
|
self.bio_cooked = cooked
|
|
|
|
self.bio_cooked_version = BAKED_VERSION
|
|
|
|
end
|
2014-06-10 13:19:08 +08:00
|
|
|
else
|
|
|
|
self.bio_cooked = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-12-26 23:24:54 +08:00
|
|
|
def website_domain_validator
|
2017-04-18 15:48:51 +08:00
|
|
|
allowed_domains = SiteSetting.user_website_domains_whitelist
|
|
|
|
return if (allowed_domains.blank? || self.website.blank?)
|
2016-12-26 23:24:54 +08:00
|
|
|
|
2018-05-17 15:51:24 +08:00
|
|
|
domain = begin
|
|
|
|
URI.parse(self.website).host
|
2018-08-14 18:23:32 +08:00
|
|
|
rescue URI::Error
|
2018-05-17 15:51:24 +08:00
|
|
|
end
|
2017-04-18 15:48:51 +08:00
|
|
|
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 23:24:54 +08:00
|
|
|
end
|
|
|
|
|
2014-05-28 01:54:04 +08:00
|
|
|
end
|
2014-05-29 12:59:14 +08:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_profiles
|
|
|
|
#
|
2019-04-29 11:58:52 +08:00
|
|
|
# user_id :integer not null, primary key
|
|
|
|
# location :string
|
|
|
|
# website :string
|
|
|
|
# bio_raw :text
|
|
|
|
# bio_cooked :text
|
|
|
|
# dismissed_banner_key :integer
|
|
|
|
# bio_cooked_version :integer
|
|
|
|
# badge_granted_title :boolean default(FALSE)
|
|
|
|
# views :integer default(0), not null
|
|
|
|
# profile_background_upload_id :integer
|
|
|
|
# card_background_upload_id :integer
|
2014-08-07 11:33:11 +08:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2019-05-03 06:34:12 +08:00
|
|
|
# index_user_profiles_on_bio_cooked_version (bio_cooked_version)
|
|
|
|
# index_user_profiles_on_card_background (card_background)
|
|
|
|
# index_user_profiles_on_profile_background (profile_background)
|
2014-05-29 12:59:14 +08:00
|
|
|
#
|
2019-05-13 22:53:42 +08:00
|
|
|
# Foreign Keys
|
|
|
|
#
|
|
|
|
# fk_rails_... (card_background_upload_id => uploads.id)
|
|
|
|
# fk_rails_... (profile_background_upload_id => uploads.id)
|
|
|
|
#
|