canvas-lms/lib/user_content.rb

254 lines
8.2 KiB
Ruby

#
# Copyright (C) 2011 - present Instructure, Inc.
#
# This file is part of Canvas.
#
# Canvas is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, version 3 of the License.
#
# Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
# details.
#
# You should have received a copy of the GNU Affero General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
require 'nokogiri'
require 'ritex'
require 'securerandom'
module UserContent
def self.escape(str, current_host = nil, use_updated_math_rendering = false)
html = Nokogiri::HTML::DocumentFragment.parse(str)
find_user_content(html) do |obj, uc|
uuid = SecureRandom.uuid
child = Nokogiri::XML::Node.new("iframe", html)
child['class'] = 'user_content_iframe'
child['name'] = uuid
child['style'] = "width: #{uc.width}; height: #{uc.height}"
child['frameborder'] = '0'
form = Nokogiri::XML::Node.new("form", html)
form['action'] = "//#{HostUrl.file_host(@domain_root_account || Account.default, current_host)}/object_snippet"
form['method'] = 'post'
form['class'] = 'user_content_post_form'
form['target'] = uuid
form['id'] = "form-#{uuid}"
input = Nokogiri::XML::Node.new("input", html)
input['type'] = 'hidden'
input['name'] = 'object_data'
input['value'] = uc.node_string
form.add_child(input)
s_input = Nokogiri::XML::Node.new("input", html)
s_input['type'] = 'hidden'
s_input['name'] = 's'
s_input['value'] = uc.node_hmac
form.add_child(s_input)
obj.replace(child)
child.add_next_sibling(form)
end
find_equation_images(html) do |node|
equation = node['data-equation-content'] || node['alt']
next if equation.blank?
if use_updated_math_rendering
# replace the equation image with a span containing the
# LaTex, which MathJAX will typeset once we're in the browser
latex_span = Nokogiri::HTML::DocumentFragment.parse(
"<span class=\"math_equation_latex\">\\(#{equation}\\)</span>"
)
node.replace(latex_span)
else
mathml = UserContent.latex_to_mathml(equation)
next if mathml.blank?
mathml_span = Nokogiri::HTML::DocumentFragment.parse(
"<span class=\"hidden-readable\">#{mathml}</span>"
)
node.add_next_sibling(mathml_span)
end
end
html.to_s.html_safe
end
def self.latex_to_mathml(latex)
Latex.to_math_ml(latex: latex)
end
class Node < Struct.new(:width, :height, :node_string, :node_hmac)
end
# for each user content in the nokogiri document, yields |nokogiri_node, UserContent::Node|
def self.find_user_content(html)
html.css('object,embed').each do |obj|
styles = {}
params = {}
obj.css('param').each do |param|
params[param['key']] = param['value']
end
(obj['style'] || '').split(/\;/).each do |attr|
key, value = attr.split(/\:/).map(&:strip)
styles[key] = value
end
width = css_size(obj['width'])
width ||= css_size(params['width'])
width ||= css_size(styles['width'])
width ||= '400px'
height = css_size(obj['height'])
height ||= css_size(params['height'])
height ||= css_size(styles['height'])
height ||= '300px'
snippet = Base64.encode64(obj.to_s).gsub("\n", '')
hmac = Canvas::Security.hmac_sha1(snippet)
uc = Node.new(width, height, snippet, hmac)
yield obj, uc
end
end
def self.find_equation_images(html)
html.css('img.equation_image').each do |node|
yield node
end
end
# TODO: try and discover the motivation behind the "huhs"
def self.css_size(val)
to_f = TextHelper.round_if_whole(val.to_f)
if !val || to_f == 0
# no value, non-numeric value, or 0 value (whether "0", "0px", "0%",
# etc.); ignore
nil
elsif val == "#{to_f}%" || val == "#{to_f}px"
# numeric percentage or specific px value; use as is
val
elsif to_f.to_s == val
# unadorned numeric value; make px (after adding 10... huh?)
(to_f + 10).to_s + "px"
else
# numeric value embedded, but has additional text we didn't recognize;
# just extract the numeric part (without a px... huh?)
to_f.to_s
end
end
class HtmlRewriter
AssetTypes = {
'assignments' => :Assignment,
'announcements' => :Announcement,
'calendar_events' => :CalendarEvent,
'discussion_topics' => :DiscussionTopic,
'collaborations' => :Collaboration,
'files' => :Attachment,
'conferences' => :WebConference,
'quizzes' => :"Quizzes::Quiz",
'groups' => :Group,
'wiki' => :WikiPage,
'pages' => :WikiPage,
'grades' => nil,
'users' => nil,
'external_tools' => nil,
'file_contents' => nil,
'modules' => :ContextModule,
'items' => :ContentTag
}
DefaultAllowedTypes = AssetTypes.keys
def initialize(context, user, contextless_types: [])
raise(ArgumentError, "context required") unless context
@context = context
@user = user
@contextless_types = contextless_types
@context_prefix = "/#{context.class.name.tableize}/#{context.id}"
@absolute_part = '(https?://[\w-]+(?:\.[\w-]+)*(?:\:\d{1,5})?)?'
@toplevel_regex = %r{#{@absolute_part}(#{@context_prefix})?/(\w+)(?:/([^\s"<'\?\/]*)([^\s"<']*))?}
@handlers = {}
@default_handler = nil
@unknown_handler = nil
@allowed_types = DefaultAllowedTypes
end
attr_reader :user, :context
class UriMatch < Struct.new(:url, :type, :obj_class, :obj_id, :rest, :prefix)
def query
rest && rest[/\?.*/]
end
end
# specify a url type like "assignments" or "file_contents"
def set_handler(type, &handler)
@handlers[type] = handler
end
def set_default_handler(&handler)
@default_handler = handler
end
def set_unknown_handler(&handler)
@unknown_handler = handler
end
def allowed_types=(new_types)
@allowed_types = Array(new_types)
end
def translate_content(html)
return html if html.blank?
asset_types = AssetTypes.reject { |k,v| !@allowed_types.include?(k) }
html.gsub(@toplevel_regex) do |url|
_absolute_part, prefix, type, obj_id, rest = [$1, $2, $3, $4, $5]
next url if !@contextless_types.include?(type) && prefix != @context_prefix
if type != "wiki" && type != "pages"
if obj_id.to_i > 0
obj_id = obj_id.to_i
else
rest = "/#{obj_id}#{rest}" if obj_id.present? || rest.present?
obj_id = nil
end
end
if module_item = rest.try(:match, %r{/items/(\d+)})
type = 'items'
obj_id = module_item[1].to_i
end
if asset_types.key?(type)
klass = asset_types[type]
klass = klass.to_s.constantize if klass
match = UriMatch.new(url, type, klass, obj_id, rest, prefix)
handler = @handlers[type] || @default_handler
(handler && handler.call(match)) || url
else
match = UriMatch.new(url, type)
(@unknown_handler && @unknown_handler.call(match)) || url
end
end
end
# if content is nil, it'll query the block for the content if needed (lazy content load)
def user_can_view_content?(content = nil, &get_content)
return false if user.blank? && content.respond_to?(:locked?) && content.locked?
return true unless user
# if user given, check that the user is allowed to manage all
# context content, or read that specific item (and it's not locked)
@read_as_admin = context.grants_right?(user, :read_as_admin) if @read_as_admin.nil?
return true if @read_as_admin
content ||= get_content.call
allow = true if content.respond_to?(:grants_right?) && content.grants_right?(user, :read)
allow = false if allow && content.respond_to?(:locked_for?) && content.locked_for?(user)
return allow
end
end
end