| 
									
										
										
										
											2019-03-17 16:36:34 +00:00
										 |  |  | # frozen_string_literal: true | 
					
						
							| 
									
										
										
										
											2019-03-15 01:32:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2023-01-01 06:19:35 +00:00
										 |  |  | # Copyright (C) 2006-2023  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-11-12 14:36:33 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  | # modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  | # as published by the Free Software Foundation; either version 2 | 
					
						
							|  |  |  | # of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-11-12 14:36:33 +00:00
										 |  |  | # This program 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 General Public License for more details. | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-11-12 14:36:33 +00:00
										 |  |  | # You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | # along with this program; if not, write to the Free Software | 
					
						
							|  |  |  | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-17 20:45:39 +00:00
										 |  |  | require File.expand_path('../wiki_formatting/textile/redcloth3', __FILE__) | 
					
						
							| 
									
										
										
										
											2012-08-17 14:46:55 +00:00
										 |  |  | require 'digest/md5' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-02 20:41:47 +00:00
										 |  |  | module Redmine | 
					
						
							|  |  |  |   module WikiFormatting | 
					
						
							| 
									
										
										
										
											2019-05-21 23:53:10 +00:00
										 |  |  |     class StaleSectionError < StandardError; end | 
					
						
							| 
									
										
										
										
											2011-11-18 16:25:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |     @@formatters = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     class << self | 
					
						
							|  |  |  |       def map | 
					
						
							|  |  |  |         yield self | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-15 21:16:42 +00:00
										 |  |  |       def register(name, *args) | 
					
						
							|  |  |  |         options = args.last.is_a?(Hash) ? args.pop : {} | 
					
						
							| 
									
										
										
										
											2013-12-23 12:33:42 +00:00
										 |  |  |         name = name.to_s | 
					
						
							|  |  |  |         raise ArgumentError, "format name '#{name}' is already taken" if @@formatters[name] | 
					
						
							| 
									
										
										
										
											2020-11-03 14:55:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-17 11:22:41 +00:00
										 |  |  |         formatter, helper, parser = | 
					
						
							|  |  |  |           if args.any? | 
					
						
							|  |  |  |             args | 
					
						
							|  |  |  |           else | 
					
						
							|  |  |  |             %w(Formatter Helper HtmlParser).map {|m| "Redmine::WikiFormatting::#{name.classify}::#{m}".constantize rescue nil} | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2017-06-07 20:10:57 +00:00
										 |  |  |         raise "A formatter class is required" if formatter.nil? | 
					
						
							| 
									
										
										
										
											2020-11-03 14:55:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-23 12:33:42 +00:00
										 |  |  |         @@formatters[name] = { | 
					
						
							|  |  |  |           :formatter => formatter, | 
					
						
							|  |  |  |           :helper => helper, | 
					
						
							| 
									
										
										
										
											2015-06-15 21:16:42 +00:00
										 |  |  |           :html_parser => parser, | 
					
						
							| 
									
										
										
										
											2013-12-23 12:33:42 +00:00
										 |  |  |           :label => options[:label] || name.humanize | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-09-02 20:41:47 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-18 16:25:00 +00:00
										 |  |  |       def formatter | 
					
						
							|  |  |  |         formatter_for(Setting.text_formatting) | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-15 21:16:42 +00:00
										 |  |  |       def html_parser | 
					
						
							|  |  |  |         html_parser_for(Setting.text_formatting) | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |       def formatter_for(name) | 
					
						
							| 
									
										
										
										
											2010-02-17 20:47:50 +00:00
										 |  |  |         entry = @@formatters[name.to_s] | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |         (entry && entry[:formatter]) || Redmine::WikiFormatting::NullFormatter::Formatter | 
					
						
							| 
									
										
										
										
											2007-09-02 20:41:47 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |       def helper_for(name) | 
					
						
							| 
									
										
										
										
											2010-02-17 20:47:50 +00:00
										 |  |  |         entry = @@formatters[name.to_s] | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |         (entry && entry[:helper]) || Redmine::WikiFormatting::NullFormatter::Helper | 
					
						
							| 
									
										
										
										
											2007-09-02 20:41:47 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-15 21:16:42 +00:00
										 |  |  |       def html_parser_for(name) | 
					
						
							|  |  |  |         entry = @@formatters[name.to_s] | 
					
						
							|  |  |  |         (entry && entry[:html_parser]) || Redmine::WikiFormatting::HtmlParser | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |       def format_names | 
					
						
							|  |  |  |         @@formatters.keys.map | 
					
						
							| 
									
										
										
										
											2007-09-06 17:06:07 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-23 12:33:42 +00:00
										 |  |  |       def formats_for_select | 
					
						
							|  |  |  |         @@formatters.map {|name, options| [options[:label], name]} | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-18 16:25:00 +00:00
										 |  |  |       def to_html(format, text, options = {}) | 
					
						
							| 
									
										
										
										
											2019-10-17 11:21:54 +00:00
										 |  |  |         text = | 
					
						
							|  |  |  |           if Setting.cache_formatted_text? && text.size > 2.kilobyte && cache_store && | 
					
						
							|  |  |  |               cache_key = cache_key_for(format, text, options[:object], options[:attribute]) | 
					
						
							|  |  |  |             # Text retrieved from the cache store may be frozen | 
					
						
							|  |  |  |             # We need to dup it so we can do in-place substitutions with gsub! | 
					
						
							|  |  |  |             cache_store.fetch cache_key do | 
					
						
							|  |  |  |               formatter_for(format).new(text).to_html | 
					
						
							|  |  |  |             end.dup | 
					
						
							|  |  |  |           else | 
					
						
							| 
									
										
										
										
											2010-02-06 10:40:21 +00:00
										 |  |  |             formatter_for(format).new(text).to_html | 
					
						
							| 
									
										
										
										
											2019-10-17 11:21:54 +00:00
										 |  |  |           end | 
					
						
							| 
									
										
										
										
											2010-02-06 10:40:21 +00:00
										 |  |  |         text | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-18 16:41:54 +00:00
										 |  |  |       # Returns true if the text formatter supports single section edit | 
					
						
							|  |  |  |       def supports_section_edit? | 
					
						
							|  |  |  |         (formatter.instance_methods & ['update_section', :update_section]).any? | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-17 14:46:55 +00:00
										 |  |  |       # Returns a cache key for the given text +format+, +text+, +object+ and +attribute+ or nil if no caching should be done | 
					
						
							|  |  |  |       def cache_key_for(format, text, object, attribute) | 
					
						
							|  |  |  |         if object && attribute && !object.new_record? && format.present? | 
					
						
							|  |  |  |           "formatted_text/#{format}/#{object.class.model_name.cache_key}/#{object.id}-#{attribute}-#{Digest::MD5.hexdigest text}" | 
					
						
							| 
									
										
										
										
											2010-02-06 10:40:21 +00:00
										 |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-06 10:40:21 +00:00
										 |  |  |       # Returns the cache store used to cache HTML output | 
					
						
							| 
									
										
										
										
											2010-02-06 13:13:40 +00:00
										 |  |  |       def cache_store | 
					
						
							| 
									
										
										
										
											2010-02-06 10:40:21 +00:00
										 |  |  |         ActionController::Base.cache_store | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |     # Default formatter module | 
					
						
							|  |  |  |     module NullFormatter | 
					
						
							|  |  |  |       class Formatter | 
					
						
							|  |  |  |         include ActionView::Helpers::TagHelper | 
					
						
							|  |  |  |         include ActionView::Helpers::TextHelper | 
					
						
							| 
									
										
										
										
											2009-11-24 22:02:14 +00:00
										 |  |  |         include ActionView::Helpers::UrlHelper | 
					
						
							| 
									
										
										
										
											2012-03-04 10:04:46 +00:00
										 |  |  |         include Redmine::WikiFormatting::LinksHelper | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |         def initialize(text) | 
					
						
							|  |  |  |           @text = text | 
					
						
							| 
									
										
										
										
											2007-09-09 10:16:59 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |         def to_html(*args) | 
					
						
							| 
									
										
										
										
											2012-03-04 10:04:46 +00:00
										 |  |  |           t = CGI::escapeHTML(@text) | 
					
						
							|  |  |  |           auto_link!(t) | 
					
						
							|  |  |  |           auto_mailto!(t) | 
					
						
							| 
									
										
										
										
											2018-06-17 05:45:17 +00:00
										 |  |  |           restore_redmine_links(t) | 
					
						
							| 
									
										
										
										
											2012-04-25 19:49:26 +00:00
										 |  |  |           simple_format(t, {}, :sanitize => false) | 
					
						
							| 
									
										
										
										
											2007-09-09 10:16:59 +00:00
										 |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |       module Helper | 
					
						
							| 
									
										
										
										
											2018-09-26 07:27:30 +00:00
										 |  |  |         def wikitoolbar_for(field_id, preview_url = preview_text_path) | 
					
						
							| 
									
										
										
										
											2007-11-12 14:36:33 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |         def heads_for_wiki_formatter | 
					
						
							| 
									
										
										
										
											2007-09-02 20:41:47 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |         def initial_page_content(page) | 
					
						
							|  |  |  |           page.pretty_title.to_s | 
					
						
							| 
									
										
										
										
											2007-09-02 20:41:47 +00:00
										 |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |