FIX: Allow really long links to work

This commit is contained in:
Robin Ward 2015-09-25 14:07:04 -04:00
parent 2e76c9165a
commit 43c7320f55
3 changed files with 12 additions and 6 deletions

View File

@ -2,8 +2,14 @@ require 'uri'
require_dependency 'slug'
class TopicLink < ActiveRecord::Base
MAX_DOMAIN_LENGTH = 100 unless defined? MAX_DOMAIN_LENGTH
MAX_URL_LENGTH = 500 unless defined? MAX_URL_LENGTH
def self.max_domain_length
100
end
def self.max_url_length
500
end
belongs_to :topic
belongs_to :user
@ -147,8 +153,8 @@ class TopicLink < ActiveRecord::Base
reflected_post = Post.find_by(topic_id: topic_id, post_number: post_number.to_i)
end
next if url && url.length > MAX_URL_LENGTH
next if parsed && parsed.host && parsed.host.length > MAX_DOMAIN_LENGTH
url = url[0...TopicLink.max_url_length]
next if parsed && parsed.host && parsed.host.length > TopicLink.max_domain_length
added_urls << url
TopicLink.create(post_id: post.id,

View File

@ -13,7 +13,7 @@ class TopicLinkClick < ActiveRecord::Base
# Create a click from a URL and post_id
def self.create_from(args={})
url = args[:url]
url = args[:url][0...TopicLink.max_url_length]
return nil if url.blank?
uri = URI.parse(url) rescue nil

View File

@ -37,7 +37,7 @@ http://b.com/#{'a'*500}
it 'works' do
# has the forum topic links
expect(topic.topic_links.count).to eq(2)
expect(topic.topic_links.count).to eq(3)
# works with markdown links
expect(topic.topic_links.exists?(url: "http://a.com/")).to eq(true)