module EffectiveLoggingHelper ALLOWED_TAGS = [ "a", "abbr", "acronym", "address", "b", "big", "blockquote", "br", "cite", "code", "dd", "del", "dfn", "div", "dl", "dt", "em", "h1", "h2", "h3", "h4", "h5", "h6", "hr", "i", "img", "ins", "kbd", "li", "ol", "p", "pre", "samp", "small", "span", "strong", "sub", "sup", "table", "tbody", "td", "tfoot", "th", "thead", "tr", "tt", "ul", "var" ] ALLOWED_ATTRIBUTES = [ "abbr", "alt", "cite", "class", "colspan", "datetime", "height", "href", "name", "rowspan", "src", "title", "width", "xml:lang" ] def bootstrap_class_for_status(status) case status when 'success' ; 'success' when 'info' ; 'info' when 'warning' ; 'warning' when 'error' ; 'danger' when 'change' ; 'info' else 'primary' end end def render_log(log) render(partial: 'effective/logs/log', locals: { log: log }) end # This is called on the Logs#show Admin page, and is intended for override by the application def effective_logging_object_link_to(obj, action = :show) if obj.kind_of?(User) if action == :show && defined?(admin_user_path) link_to('View', admin_user_path(obj)) elsif action == :edit && defined?(edit_admin_user_path) link_to('Edit', edit_admin_user_path(obj)) end end end # tabelize_hash and format_resource_value are from effective_resources def format_log_details_value(log, key) value = log.details[key] return tableize_hash(value) unless value.kind_of?(String) open = value.index('') if open.present? return format_log_details_resource_value(value) unless (open.present? && close.present?) before = value[0...open] after = value[(close+7)..-1] divide = before.sub!('
', '').present? [ h(before).gsub("\n", '
'), (content_tag(:hr) if divide), content_tag(:iframe, '', src: effective_logging.html_part_log_path(log, key: key), style: 'frameborder: 0; border: 0; width: 100%; height: 100%;', onload: "this.style.height=(this.contentDocument.body.scrollHeight + 30) + 'px';", scrolling: 'no'), h(after).gsub("\n", '
') ].compact.join.html_safe end def format_log_details_resource_value(value) simple_format(sanitize(value.to_s, tags: ALLOWED_TAGS, attributes: ALLOWED_ATTRIBUTES), {}, sanitize: false) end end