2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-05-19 08:25:08 -04:00
|
|
|
require 'mini_racer'
|
2013-02-05 14:16:51 -05:00
|
|
|
require 'nokogiri'
|
2016-06-14 14:31:51 -04:00
|
|
|
require 'erb'
|
2015-01-29 16:53:48 -05:00
|
|
|
require_dependency 'url_helper'
|
2013-05-27 19:48:47 -04:00
|
|
|
require_dependency 'excerpt_parser'
|
2016-05-01 21:36:09 -04:00
|
|
|
require_dependency 'discourse_tagging'
|
2016-06-14 14:31:51 -04:00
|
|
|
require_dependency 'pretty_text/helpers'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
module PrettyText
|
2016-06-14 14:31:51 -04:00
|
|
|
@mutex = Mutex.new
|
|
|
|
@ctx_init = Mutex.new
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2016-06-14 14:31:51 -04:00
|
|
|
def self.app_root
|
|
|
|
Rails.root
|
|
|
|
end
|
2013-07-16 03:48:48 -04:00
|
|
|
|
2016-06-14 14:31:51 -04:00
|
|
|
def self.find_file(root, filename)
|
|
|
|
return filename if File.file?("#{root}#{filename}")
|
2015-03-12 15:51:28 -04:00
|
|
|
|
2016-06-14 14:31:51 -04:00
|
|
|
es6_name = "#{filename}.js.es6"
|
|
|
|
return es6_name if File.file?("#{root}#{es6_name}")
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2016-06-14 14:31:51 -04:00
|
|
|
js_name = "#{filename}.js"
|
|
|
|
return js_name if File.file?("#{root}#{js_name}")
|
2015-09-24 23:35:14 -04:00
|
|
|
|
2016-06-14 14:31:51 -04:00
|
|
|
erb_name = "#{filename}.js.es6.erb"
|
|
|
|
return erb_name if File.file?("#{root}#{erb_name}")
|
|
|
|
end
|
2015-12-28 01:28:16 -05:00
|
|
|
|
2016-06-14 14:31:51 -04:00
|
|
|
def self.apply_es6_file(ctx, root_path, part_name)
|
|
|
|
filename = find_file(root_path, part_name)
|
|
|
|
if filename
|
|
|
|
source = File.read("#{root_path}#{filename}")
|
2016-04-25 15:55:15 -04:00
|
|
|
|
2016-06-14 14:31:51 -04:00
|
|
|
if filename =~ /\.erb$/
|
|
|
|
source = ERB.new(source).result(binding)
|
|
|
|
end
|
2016-04-25 15:55:15 -04:00
|
|
|
|
2016-06-14 14:31:51 -04:00
|
|
|
template = Tilt::ES6ModuleTranspilerTemplate.new {}
|
|
|
|
transpiled = template.module_transpile(source, "#{Rails.root}/app/assets/javascripts/", part_name)
|
|
|
|
ctx.eval(transpiled)
|
|
|
|
else
|
|
|
|
# Look for vendored stuff
|
|
|
|
vendor_root = "#{Rails.root}/vendor/assets/javascripts/"
|
|
|
|
filename = find_file(vendor_root, part_name)
|
|
|
|
if filename
|
|
|
|
ctx.eval(File.read("#{vendor_root}#{filename}"))
|
2016-04-25 15:55:15 -04:00
|
|
|
end
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2017-06-08 18:02:30 -04:00
|
|
|
def self.ctx_load_manifest(ctx, name)
|
|
|
|
manifest = File.read("#{Rails.root}/app/assets/javascripts/#{name}")
|
2016-06-14 14:31:51 -04:00
|
|
|
root_path = "#{Rails.root}/app/assets/javascripts/"
|
2017-06-08 18:02:30 -04:00
|
|
|
|
2016-06-14 14:31:51 -04:00
|
|
|
manifest.each_line do |l|
|
2016-08-25 07:45:29 -04:00
|
|
|
l = l.chomp
|
2016-06-14 14:31:51 -04:00
|
|
|
if l =~ /\/\/= require (\.\/)?(.*)$/
|
|
|
|
apply_es6_file(ctx, root_path, Regexp.last_match[2])
|
|
|
|
elsif l =~ /\/\/= require_tree (\.\/)?(.*)$/
|
|
|
|
path = Regexp.last_match[2]
|
2016-08-10 13:20:39 -04:00
|
|
|
Dir["#{root_path}/#{path}/**"].sort.each do |f|
|
2016-06-14 14:31:51 -04:00
|
|
|
apply_es6_file(ctx, root_path, f.sub(root_path, '')[1..-1].sub(/\.js.es6$/, ''))
|
|
|
|
end
|
|
|
|
end
|
2016-05-19 08:25:08 -04:00
|
|
|
end
|
2017-06-08 18:02:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.create_es6_context
|
|
|
|
ctx = MiniRacer::Context.new(timeout: 15000)
|
|
|
|
|
|
|
|
ctx.eval("window = {}; window.devicePixelRatio = 2;") # hack to make code think stuff is retina
|
|
|
|
|
|
|
|
if Rails.env.development? || Rails.env.test?
|
|
|
|
ctx.attach("console.log", proc { |l| p l })
|
2017-06-23 15:24:11 -04:00
|
|
|
ctx.eval('window.console = console;')
|
2017-06-08 18:02:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
ctx_load(ctx, "#{Rails.root}/app/assets/javascripts/discourse-loader.js")
|
|
|
|
ctx_load(ctx, "vendor/assets/javascripts/lodash.js")
|
|
|
|
ctx_load_manifest(ctx, "pretty-text-bundle.js")
|
2017-07-14 08:27:28 -04:00
|
|
|
ctx_load_manifest(ctx, "markdown-it-bundle.js")
|
2017-06-08 18:02:30 -04:00
|
|
|
root_path = "#{Rails.root}/app/assets/javascripts/"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2018-05-05 05:21:07 -04:00
|
|
|
apply_es6_file(ctx, root_path, "discourse/lib/to-markdown")
|
2016-06-14 14:31:51 -04:00
|
|
|
apply_es6_file(ctx, root_path, "discourse/lib/utilities")
|
|
|
|
|
|
|
|
PrettyText::Helpers.instance_methods.each do |method|
|
|
|
|
ctx.attach("__helpers.#{method}", PrettyText::Helpers.method(method))
|
2013-08-08 18:14:12 -04:00
|
|
|
end
|
2016-06-14 14:31:51 -04:00
|
|
|
ctx.load("#{Rails.root}/lib/pretty_text/shims.js")
|
|
|
|
ctx.eval("__setUnicode(#{Emoji.unicode_replacements_json})")
|
2013-08-08 18:14:12 -04:00
|
|
|
|
2016-06-14 14:31:51 -04:00
|
|
|
to_load = []
|
|
|
|
DiscoursePluginRegistry.each_globbed_asset do |a|
|
|
|
|
to_load << a if File.file?(a) && a =~ /discourse-markdown/
|
|
|
|
end
|
|
|
|
to_load.uniq.each do |f|
|
|
|
|
if f =~ /^.+assets\/javascripts\//
|
|
|
|
root = Regexp.last_match[0]
|
|
|
|
apply_es6_file(ctx, root, f.sub(root, '').sub(/\.js\.es6$/, ''))
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-10 02:37:16 -04:00
|
|
|
DiscoursePluginRegistry.vendored_core_pretty_text.each do |vpt|
|
|
|
|
ctx.eval(File.read(vpt))
|
|
|
|
end
|
|
|
|
|
2017-04-18 17:49:56 -04:00
|
|
|
DiscoursePluginRegistry.vendored_pretty_text.each do |vpt|
|
|
|
|
ctx.eval(File.read(vpt))
|
|
|
|
end
|
|
|
|
|
2013-08-15 18:12:10 -04:00
|
|
|
ctx
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.v8
|
|
|
|
return @ctx if @ctx
|
|
|
|
|
|
|
|
# ensure we only init one of these
|
|
|
|
@ctx_init.synchronize do
|
|
|
|
return @ctx if @ctx
|
2016-06-14 14:31:51 -04:00
|
|
|
@ctx = create_es6_context
|
2013-08-15 18:12:10 -04:00
|
|
|
end
|
2014-04-14 16:55:57 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
@ctx
|
|
|
|
end
|
|
|
|
|
2014-11-14 01:51:04 -05:00
|
|
|
def self.reset_context
|
|
|
|
@ctx_init.synchronize do
|
2017-07-20 00:17:45 -04:00
|
|
|
@ctx&.dispose
|
2014-11-14 01:51:04 -05:00
|
|
|
@ctx = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def self.markdown(text, opts = {})
|
2013-02-05 14:16:51 -05:00
|
|
|
# we use the exact same markdown converter as the client
|
2013-02-25 11:42:20 -05:00
|
|
|
# TODO: use the same extensions on both client and server (in particular the template for mentions)
|
2013-02-05 14:16:51 -05:00
|
|
|
baked = nil
|
2016-05-19 08:25:08 -04:00
|
|
|
text = text || ""
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-02-03 19:12:53 -05:00
|
|
|
protect do
|
2013-08-15 23:03:47 -04:00
|
|
|
context = v8
|
2013-10-11 16:24:27 -04:00
|
|
|
|
2016-06-14 14:31:51 -04:00
|
|
|
custom_emoji = {}
|
2016-11-17 13:35:39 -05:00
|
|
|
Emoji.custom.map { |e| custom_emoji[e.name] = e.url }
|
2016-06-14 14:31:51 -04:00
|
|
|
|
2019-05-02 18:17:27 -04:00
|
|
|
buffer = +<<~JS
|
2017-06-08 18:02:30 -04:00
|
|
|
__optInput = {};
|
|
|
|
__optInput.siteSettings = #{SiteSetting.client_settings_json};
|
2018-05-23 10:47:09 -04:00
|
|
|
__paths = #{paths_json};
|
2017-06-08 18:02:30 -04:00
|
|
|
__optInput.getURL = __getURL;
|
|
|
|
__optInput.getCurrentUser = __getCurrentUser;
|
|
|
|
__optInput.lookupAvatar = __lookupAvatar;
|
2017-11-03 09:51:40 -04:00
|
|
|
__optInput.lookupPrimaryUserGroup = __lookupPrimaryUserGroup;
|
2017-11-20 16:28:03 -05:00
|
|
|
__optInput.formatUsername = __formatUsername;
|
2017-06-08 18:02:30 -04:00
|
|
|
__optInput.getTopicInfo = __getTopicInfo;
|
|
|
|
__optInput.categoryHashtagLookup = __categoryLookup;
|
|
|
|
__optInput.customEmoji = #{custom_emoji.to_json};
|
2017-06-28 13:47:22 -04:00
|
|
|
__optInput.emojiUnicodeReplacer = __emojiUnicodeReplacer;
|
2019-05-28 21:00:25 -04:00
|
|
|
__optInput.lookupUploadUrls = __lookupUploadUrls;
|
2017-06-28 16:56:44 -04:00
|
|
|
__optInput.censoredWords = #{WordWatcher.words_for_action(:censor).join('|').to_json};
|
2017-06-08 18:02:30 -04:00
|
|
|
JS
|
|
|
|
|
|
|
|
if opts[:topicId]
|
|
|
|
buffer << "__optInput.topicId = #{opts[:topicId].to_i};\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
if opts[:user_id]
|
|
|
|
buffer << "__optInput.userId = #{opts[:user_id].to_i};\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
buffer << "__textOptions = __buildOptions(__optInput);\n"
|
2017-07-14 08:27:28 -04:00
|
|
|
buffer << ("__pt = new __PrettyText(__textOptions);")
|
|
|
|
|
2016-08-11 14:59:20 -04:00
|
|
|
# Be careful disabling sanitization. We allow for custom emails
|
|
|
|
if opts[:sanitize] == false
|
2017-07-14 08:27:28 -04:00
|
|
|
buffer << ('__pt.disableSanitizer();')
|
2016-08-11 14:59:20 -04:00
|
|
|
end
|
|
|
|
|
2017-06-08 18:02:30 -04:00
|
|
|
opts = context.eval(buffer)
|
2016-06-14 14:31:51 -04:00
|
|
|
|
2016-01-29 09:59:15 -05:00
|
|
|
DiscourseEvent.trigger(:markdown_context, context)
|
2016-06-14 14:31:51 -04:00
|
|
|
baked = context.eval("__pt.cook(#{text.inspect})")
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2017-06-08 18:02:30 -04:00
|
|
|
# if baked.blank? && !(opts || {})[:skip_blank_test]
|
|
|
|
# # we may have a js engine issue
|
|
|
|
# test = markdown("a", skip_blank_test: true)
|
|
|
|
# if test.blank?
|
|
|
|
# Rails.logger.warn("Markdown engine appears to have crashed, resetting context")
|
|
|
|
# reset_context
|
|
|
|
# opts ||= {}
|
|
|
|
# opts = opts.dup
|
|
|
|
# opts[:skip_blank_test] = true
|
|
|
|
# baked = markdown(text, opts)
|
|
|
|
# end
|
|
|
|
# end
|
2014-11-14 01:51:04 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
baked
|
|
|
|
end
|
|
|
|
|
2018-05-23 10:47:09 -04:00
|
|
|
def self.paths_json
|
|
|
|
paths = {
|
|
|
|
baseUri: Discourse::base_uri,
|
|
|
|
CDN: Rails.configuration.action_controller.asset_host,
|
|
|
|
}
|
|
|
|
|
|
|
|
if SiteSetting.Upload.enable_s3_uploads
|
|
|
|
if SiteSetting.Upload.s3_cdn_url.present?
|
|
|
|
paths[:S3CDN] = SiteSetting.Upload.s3_cdn_url
|
|
|
|
end
|
|
|
|
paths[:S3BaseUrl] = Discourse.store.absolute_base_url
|
|
|
|
end
|
|
|
|
|
|
|
|
paths.to_json
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# leaving this here, cause it invokes v8, don't want to implement twice
|
2013-08-13 16:08:29 -04:00
|
|
|
def self.avatar_img(avatar_template, size)
|
2014-02-03 19:12:53 -05:00
|
|
|
protect do
|
2018-05-23 10:47:09 -04:00
|
|
|
v8.eval(<<~JS)
|
|
|
|
__paths = #{paths_json};
|
|
|
|
__utils.avatarImg({size: #{size.inspect}, avatarTemplate: #{avatar_template.inspect}}, __getURL);
|
|
|
|
JS
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-10-15 03:59:29 -04:00
|
|
|
def self.unescape_emoji(title)
|
2019-03-21 04:11:33 -04:00
|
|
|
return title unless SiteSetting.enable_emoji? && title
|
2016-06-14 14:31:51 -04:00
|
|
|
|
|
|
|
set = SiteSetting.emoji_set.inspect
|
2019-03-06 06:49:17 -05:00
|
|
|
custom = Emoji.custom.map { |e| [e.name, e.url] }.to_h.to_json
|
2015-10-15 03:59:29 -04:00
|
|
|
protect do
|
2018-05-23 10:47:09 -04:00
|
|
|
v8.eval(<<~JS)
|
|
|
|
__paths = #{paths_json};
|
2019-05-21 10:56:51 -04:00
|
|
|
__performEmojiUnescape(#{title.inspect}, {
|
|
|
|
getURL: __getURL,
|
|
|
|
emojiSet: #{set},
|
|
|
|
customEmoji: #{custom},
|
|
|
|
enableEmojiShortcuts: #{SiteSetting.enable_emoji_shortcuts}
|
|
|
|
});
|
2018-05-23 10:47:09 -04:00
|
|
|
JS
|
2015-10-15 03:59:29 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-21 04:11:33 -04:00
|
|
|
def self.escape_emoji(title)
|
|
|
|
return unless title
|
|
|
|
|
2019-05-21 10:56:51 -04:00
|
|
|
replace_emoji_shortcuts = SiteSetting.enable_emoji && SiteSetting.enable_emoji_shortcuts
|
|
|
|
|
2019-03-21 04:11:33 -04:00
|
|
|
protect do
|
|
|
|
v8.eval(<<~JS)
|
2019-05-21 10:56:51 -04:00
|
|
|
__performEmojiEscape(#{title.inspect}, { emojiShortcuts: #{replace_emoji_shortcuts} });
|
2019-03-21 04:11:33 -04:00
|
|
|
JS
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def self.cook(text, opts = {})
|
2015-04-23 13:33:29 -04:00
|
|
|
options = opts.dup
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# we have a minor inconsistency
|
2015-04-23 13:33:29 -04:00
|
|
|
options[:topicId] = opts[:topic_id]
|
|
|
|
|
2015-12-30 14:35:25 -05:00
|
|
|
working_text = text.dup
|
2016-11-08 16:36:34 -05:00
|
|
|
|
2018-02-26 15:48:59 -05:00
|
|
|
sanitized = markdown(working_text, options)
|
2015-05-25 21:13:12 -04:00
|
|
|
|
|
|
|
doc = Nokogiri::HTML.fragment(sanitized)
|
|
|
|
|
|
|
|
if !options[:omit_nofollow] && SiteSetting.add_rel_nofollow_to_user_content
|
|
|
|
add_rel_nofollow_to_user_content(doc)
|
|
|
|
end
|
|
|
|
|
2018-11-22 03:01:03 -05:00
|
|
|
if SiteSetting.enable_mentions
|
|
|
|
add_mentions(doc, user_id: opts[:user_id])
|
|
|
|
end
|
2018-11-22 01:28:48 -05:00
|
|
|
|
2015-05-25 21:13:12 -04:00
|
|
|
doc.to_html
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.add_rel_nofollow_to_user_content(doc)
|
2013-02-11 02:58:19 -05:00
|
|
|
whitelist = []
|
2013-02-11 03:01:33 -05:00
|
|
|
|
2013-11-19 22:38:21 -05:00
|
|
|
domains = SiteSetting.exclude_rel_nofollow_domains
|
2014-03-29 19:50:44 -04:00
|
|
|
whitelist = domains.split('|') if domains.present?
|
2013-02-11 03:01:33 -05:00
|
|
|
|
2013-02-10 19:43:07 -05:00
|
|
|
site_uri = nil
|
|
|
|
doc.css("a").each do |l|
|
|
|
|
href = l["href"].to_s
|
2013-02-25 11:42:20 -05:00
|
|
|
begin
|
2013-02-10 19:43:07 -05:00
|
|
|
uri = URI(href)
|
|
|
|
site_uri ||= URI(Discourse.base_url)
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-11-05 13:04:47 -05:00
|
|
|
if !uri.host.present? ||
|
2015-05-27 00:31:01 -04:00
|
|
|
uri.host == site_uri.host ||
|
2019-05-02 18:17:27 -04:00
|
|
|
uri.host.ends_with?(".#{site_uri.host}") ||
|
|
|
|
whitelist.any? { |u| uri.host == u || uri.host.ends_with?(".#{u}") }
|
2013-02-10 19:43:07 -05:00
|
|
|
# we are good no need for nofollow
|
2018-03-26 06:24:39 -04:00
|
|
|
l.remove_attribute("rel")
|
2013-02-10 19:43:07 -05:00
|
|
|
else
|
2016-11-20 07:49:14 -05:00
|
|
|
l["rel"] = "nofollow noopener"
|
2013-02-10 19:43:07 -05:00
|
|
|
end
|
2018-08-14 06:23:32 -04:00
|
|
|
rescue URI::Error
|
2013-02-25 11:42:20 -05:00
|
|
|
# add a nofollow anyway
|
2016-11-20 07:49:14 -05:00
|
|
|
l["rel"] = "nofollow noopener"
|
2013-02-10 19:43:07 -05:00
|
|
|
end
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2017-02-06 08:45:04 -05:00
|
|
|
class DetectedLink < Struct.new(:url, :is_quote); end
|
2014-07-11 00:17:01 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def self.extract_links(html)
|
|
|
|
links = []
|
2013-06-05 14:53:07 -04:00
|
|
|
doc = Nokogiri::HTML.fragment(html)
|
2017-02-06 08:45:04 -05:00
|
|
|
|
2016-03-16 17:35:08 -04:00
|
|
|
# remove href inside quotes & elided part
|
2017-02-06 08:45:04 -05:00
|
|
|
doc.css("aside.quote a, .elided a").each { |a| a["href"] = "" }
|
2014-07-11 00:17:01 -04:00
|
|
|
|
2017-02-06 08:45:04 -05:00
|
|
|
# extract all links
|
|
|
|
doc.css("a").each do |a|
|
|
|
|
if a["href"].present? && a["href"][0] != "#".freeze
|
|
|
|
links << DetectedLink.new(a["href"], false)
|
2014-07-11 00:17:01 -04:00
|
|
|
end
|
2017-02-06 08:45:04 -05:00
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2017-02-06 08:45:04 -05:00
|
|
|
# extract quotes
|
|
|
|
doc.css("aside.quote[data-topic]").each do |aside|
|
|
|
|
if aside["data-topic"].present?
|
2019-05-02 18:17:27 -04:00
|
|
|
url = +"/t/topic/#{aside["data-topic"]}"
|
2017-02-06 08:45:04 -05:00
|
|
|
url << "/#{aside["data-post"]}" if aside["data-post"].present?
|
|
|
|
links << DetectedLink.new(url, true)
|
2013-02-13 15:22:04 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-06 08:45:04 -05:00
|
|
|
# extract Youtube links
|
|
|
|
doc.css("div[data-youtube-id]").each do |div|
|
|
|
|
if div["data-youtube-id"].present?
|
|
|
|
links << DetectedLink.new("https://www.youtube.com/watch?v=#{div['data-youtube-id']}", false)
|
|
|
|
end
|
2016-09-22 16:50:05 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
links
|
|
|
|
end
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def self.excerpt(html, max_length, options = {})
|
2014-11-05 14:37:00 -05:00
|
|
|
# TODO: properly fix this HACK in ExcerptParser without introducing XSS
|
|
|
|
doc = Nokogiri::HTML.fragment(html)
|
2019-05-29 11:05:52 -04:00
|
|
|
DiscourseEvent.trigger(:reduce_excerpt, doc, options)
|
2014-11-05 14:37:00 -05:00
|
|
|
strip_image_wrapping(doc)
|
|
|
|
html = doc.to_html
|
|
|
|
|
2013-05-27 19:48:47 -04:00
|
|
|
ExcerptParser.get_excerpt(html, max_length, options)
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-06-05 15:28:10 -04:00
|
|
|
def self.strip_links(string)
|
|
|
|
return string if string.blank?
|
|
|
|
|
|
|
|
# If the user is not basic, strip links from their bio
|
|
|
|
fragment = Nokogiri::HTML.fragment(string)
|
2017-07-27 21:20:09 -04:00
|
|
|
fragment.css('a').each { |a| a.replace(a.inner_html) }
|
2013-06-05 15:28:10 -04:00
|
|
|
fragment.to_html
|
|
|
|
end
|
|
|
|
|
2018-05-09 13:24:44 -04:00
|
|
|
def self.make_all_links_absolute(doc)
|
|
|
|
site_uri = nil
|
|
|
|
doc.css("a").each do |link|
|
|
|
|
href = link["href"].to_s
|
|
|
|
begin
|
|
|
|
uri = URI(href)
|
|
|
|
site_uri ||= URI(Discourse.base_url)
|
2018-06-08 13:11:52 -04:00
|
|
|
unless uri.host.present? || href.start_with?('mailto')
|
|
|
|
link["href"] = "#{site_uri}#{link['href']}"
|
2018-06-08 13:56:20 -04:00
|
|
|
end
|
2018-08-14 06:23:32 -04:00
|
|
|
rescue URI::Error
|
2018-05-09 13:24:44 -04:00
|
|
|
# leave it
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-06-21 11:12:30 -04:00
|
|
|
|
2014-04-17 12:32:51 -04:00
|
|
|
def self.strip_image_wrapping(doc)
|
|
|
|
doc.css(".lightbox-wrapper .meta").remove
|
|
|
|
end
|
|
|
|
|
2018-05-09 13:24:44 -04:00
|
|
|
def self.convert_vimeo_iframes(doc)
|
|
|
|
doc.css("iframe[src*='player.vimeo.com']").each do |iframe|
|
2019-04-26 07:39:18 -04:00
|
|
|
if iframe["data-original-href"].present?
|
2019-05-09 11:37:55 -04:00
|
|
|
vimeo_url = UrlHelper.escape_uri(iframe["data-original-href"])
|
2019-04-26 07:39:18 -04:00
|
|
|
else
|
|
|
|
vimeo_id = iframe['src'].split('/').last
|
|
|
|
vimeo_url = "https://vimeo.com/#{vimeo_id}"
|
|
|
|
end
|
|
|
|
iframe.replace "<p><a href='#{vimeo_url}'>#{vimeo_url}</a></p>"
|
2018-05-09 13:24:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-21 11:12:30 -04:00
|
|
|
def self.format_for_email(html, post = nil)
|
|
|
|
doc = Nokogiri::HTML.fragment(html)
|
|
|
|
DiscourseEvent.trigger(:reduce_cooked, doc, post)
|
|
|
|
strip_image_wrapping(doc)
|
2018-05-09 13:24:44 -04:00
|
|
|
convert_vimeo_iframes(doc)
|
2016-06-21 11:12:30 -04:00
|
|
|
make_all_links_absolute(doc)
|
|
|
|
doc.to_html
|
2013-11-28 15:57:21 -05:00
|
|
|
end
|
|
|
|
|
2013-05-27 19:48:47 -04:00
|
|
|
protected
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-02-03 19:12:53 -05:00
|
|
|
class JavaScriptError < StandardError
|
|
|
|
attr_accessor :message, :backtrace
|
|
|
|
|
|
|
|
def initialize(message, backtrace)
|
|
|
|
@message = message
|
|
|
|
@backtrace = backtrace
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.protect
|
|
|
|
rval = nil
|
|
|
|
@mutex.synchronize do
|
2016-05-19 08:25:08 -04:00
|
|
|
rval = yield
|
2014-02-03 19:12:53 -05:00
|
|
|
end
|
|
|
|
rval
|
|
|
|
end
|
|
|
|
|
2013-08-15 18:12:10 -04:00
|
|
|
def self.ctx_load(ctx, *files)
|
2013-05-27 19:48:47 -04:00
|
|
|
files.each do |file|
|
2013-08-15 18:12:10 -04:00
|
|
|
ctx.load(app_root + file)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-22 01:28:48 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
USER_TYPE ||= 'user'
|
|
|
|
GROUP_TYPE ||= 'group'
|
|
|
|
|
2018-11-22 03:01:03 -05:00
|
|
|
def self.add_mentions(doc, user_id: nil)
|
2018-11-22 01:28:48 -05:00
|
|
|
elements = doc.css("span.mention")
|
2018-11-22 19:31:52 -05:00
|
|
|
names = elements.map { |element| element.text[1..-1] }
|
2018-11-22 01:28:48 -05:00
|
|
|
|
2018-11-22 03:01:03 -05:00
|
|
|
mentions = lookup_mentions(names, user_id: user_id)
|
2018-11-22 01:28:48 -05:00
|
|
|
|
|
|
|
doc.css("span.mention").each do |element|
|
|
|
|
name = element.text[1..-1]
|
|
|
|
name.downcase!
|
|
|
|
|
|
|
|
if type = mentions[name]
|
|
|
|
element.name = 'a'
|
|
|
|
|
|
|
|
element.children = PrettyText::Helpers.format_username(
|
|
|
|
element.children.text
|
|
|
|
)
|
|
|
|
|
|
|
|
case type
|
|
|
|
when USER_TYPE
|
2019-01-29 21:54:29 -05:00
|
|
|
element['href'] = "#{Discourse::base_uri}/u/#{name}"
|
2018-11-22 01:28:48 -05:00
|
|
|
when GROUP_TYPE
|
|
|
|
element['class'] = 'mention-group'
|
2019-01-29 21:54:29 -05:00
|
|
|
element['href'] = "#{Discourse::base_uri}/groups/#{name}"
|
2018-11-22 01:28:48 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-22 03:01:03 -05:00
|
|
|
def self.lookup_mentions(names, user_id: nil)
|
2018-11-22 03:42:56 -05:00
|
|
|
return {} if names.blank?
|
|
|
|
|
2018-11-22 01:28:48 -05:00
|
|
|
sql = <<~SQL
|
|
|
|
(
|
|
|
|
SELECT
|
|
|
|
:user_type AS type,
|
|
|
|
username_lower AS name
|
|
|
|
FROM users
|
2018-11-22 02:00:46 -05:00
|
|
|
WHERE username_lower IN (:names) AND staged = false
|
2018-11-22 01:28:48 -05:00
|
|
|
)
|
|
|
|
UNION
|
|
|
|
(
|
|
|
|
SELECT
|
|
|
|
:group_type AS type,
|
2018-11-26 10:34:56 -05:00
|
|
|
lower(name) AS name
|
2018-11-22 01:28:48 -05:00
|
|
|
FROM groups
|
2018-11-26 10:34:56 -05:00
|
|
|
WHERE lower(name) IN (:names) AND (#{Group.mentionable_sql_clause})
|
2018-11-22 01:28:48 -05:00
|
|
|
)
|
|
|
|
SQL
|
|
|
|
|
2018-11-22 03:01:03 -05:00
|
|
|
user = User.find_by(id: user_id)
|
2018-11-22 03:32:56 -05:00
|
|
|
names.each(&:downcase!)
|
2018-11-22 03:01:03 -05:00
|
|
|
|
2018-11-22 01:28:48 -05:00
|
|
|
results = DB.query(sql,
|
|
|
|
names: names,
|
|
|
|
user_type: USER_TYPE,
|
2018-11-22 03:01:03 -05:00
|
|
|
group_type: GROUP_TYPE,
|
|
|
|
levels: Group.alias_levels(user),
|
|
|
|
user_id: user_id
|
2018-11-22 01:28:48 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
mentions = {}
|
|
|
|
results.each { |result| mentions[result.name] = result.type }
|
|
|
|
mentions
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|