Chris@909: # Redmine - project management software
Chris@1494: # Copyright (C) 2006-2014 Jean-Philippe Lang
Chris@0: #
Chris@0: # This program is free software; you can redistribute it and/or
Chris@0: # modify it under the terms of the GNU General Public License
Chris@0: # as published by the Free Software Foundation; either version 2
Chris@0: # of the License, or (at your option) any later version.
Chris@909: #
Chris@0: # This program is distributed in the hope that it will be useful,
Chris@0: # but WITHOUT ANY WARRANTY; without even the implied warranty of
Chris@0: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Chris@0: # GNU General Public License for more details.
Chris@909: #
Chris@0: # You should have received a copy of the GNU General Public License
Chris@0: # along with this program; if not, write to the Free Software
Chris@0: # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Chris@0:
Chris@0: module Redmine
Chris@0: module WikiFormatting
Chris@0: module Macros
Chris@0: module Definitions
Chris@1115: # Returns true if +name+ is the name of an existing macro
Chris@1115: def macro_exists?(name)
Chris@1115: Redmine::WikiFormatting::Macros.available_macros.key?(name.to_sym)
Chris@1115: end
Chris@1115:
Chris@1115: def exec_macro(name, obj, args, text)
Chris@1115: macro_options = Redmine::WikiFormatting::Macros.available_macros[name.to_sym]
Chris@1115: return unless macro_options
Chris@1115:
Chris@0: method_name = "macro_#{name}"
Chris@1115: unless macro_options[:parse_args] == false
Chris@1115: args = args.split(',').map(&:strip)
Chris@1115: end
Chris@1115:
Chris@1115: begin
Chris@1115: if self.class.instance_method(method_name).arity == 3
Chris@1115: send(method_name, obj, args, text)
Chris@1115: elsif text
Chris@1115: raise "This macro does not accept a block of text"
Chris@1115: else
Chris@1115: send(method_name, obj, args)
Chris@1115: end
Chris@1115: rescue => e
Chris@1115: "
Error executing the #{h name} macro (#{h e.to_s})
".html_safe
Chris@1115: end
Chris@0: end
Chris@909:
Chris@0: def extract_macro_options(args, *keys)
Chris@0: options = {}
Chris@1115: while args.last.to_s.strip =~ %r{^(.+?)\=(.+)$} && keys.include?($1.downcase.to_sym)
Chris@0: options[$1.downcase.to_sym] = $2
Chris@0: args.pop
Chris@0: end
Chris@0: return [args, options]
Chris@0: end
Chris@0: end
Chris@909:
Chris@0: @@available_macros = {}
Chris@1115: mattr_accessor :available_macros
Chris@909:
Chris@0: class << self
Chris@0: # Plugins can use this method to define new macros:
Chris@909: #
Chris@0: # Redmine::WikiFormatting::Macros.register do
Chris@0: # desc "This is my macro"
Chris@0: # macro :my_macro do |obj, args|
Chris@0: # "My macro output"
Chris@0: # end
Chris@1115: #
Chris@1115: # desc "This is my macro that accepts a block of text"
Chris@1115: # macro :my_macro do |obj, args, text|
Chris@1115: # "My macro output"
Chris@1115: # end
Chris@0: # end
Chris@0: def register(&block)
Chris@0: class_eval(&block) if block_given?
Chris@0: end
Chris@909:
Chris@1115: # Defines a new macro with the given name, options and block.
Chris@1115: #
Chris@1115: # Options:
Chris@1115: # * :desc - A description of the macro
Chris@1115: # * :parse_args => false - Disables arguments parsing (the whole arguments
Chris@1115: # string is passed to the macro)
Chris@1115: #
Chris@1115: # Macro blocks accept 2 or 3 arguments:
Chris@1115: # * obj: the object that is rendered (eg. an Issue, a WikiContent...)
Chris@1115: # * args: macro arguments
Chris@1115: # * text: the block of text given to the macro (should be present only if the
Chris@1115: # macro accepts a block of text). text is a String or nil if the macro is
Chris@1115: # invoked without a block of text.
Chris@1115: #
Chris@1115: # Examples:
Chris@1115: # By default, when the macro is invoked, the coma separated list of arguments
Chris@1115: # is split and passed to the macro block as an array. If no argument is given
Chris@1115: # the macro will be invoked with an empty array:
Chris@1115: #
Chris@1115: # macro :my_macro do |obj, args|
Chris@1115: # # args is an array
Chris@1115: # # and this macro do not accept a block of text
Chris@1115: # end
Chris@1115: #
Chris@1115: # You can disable arguments spliting with the :parse_args => false option. In
Chris@1115: # this case, the full string of arguments is passed to the macro:
Chris@1115: #
Chris@1115: # macro :my_macro, :parse_args => false do |obj, args|
Chris@1115: # # args is a string
Chris@1115: # end
Chris@1115: #
Chris@1115: # Macro can optionally accept a block of text:
Chris@1115: #
Chris@1115: # macro :my_macro do |obj, args, text|
Chris@1115: # # this macro accepts a block of text
Chris@1115: # end
Chris@1115: #
Chris@1115: # Macros are invoked in formatted text using double curly brackets. Arguments
Chris@1115: # must be enclosed in parenthesis if any. A new line after the macro name or the
Chris@1115: # arguments starts the block of text that will be passe to the macro (invoking
Chris@1115: # a macro that do not accept a block of text with some text will fail).
Chris@1115: # Examples:
Chris@1115: #
Chris@1115: # No arguments:
Chris@1115: # {{my_macro}}
Chris@1115: #
Chris@1115: # With arguments:
Chris@1115: # {{my_macro(arg1, arg2)}}
Chris@1115: #
Chris@1115: # With a block of text:
Chris@1115: # {{my_macro
Chris@1115: # multiple lines
Chris@1115: # of text
Chris@1115: # }}
Chris@1115: #
Chris@1115: # With arguments and a block of text
Chris@1115: # {{my_macro(arg1, arg2)
Chris@1115: # multiple lines
Chris@1115: # of text
Chris@1115: # }}
Chris@1115: #
Chris@1115: # If a block of text is given, the closing tag }} must be at the start of a new line.
Chris@1115: def macro(name, options={}, &block)
Chris@1115: options.assert_valid_keys(:desc, :parse_args)
Chris@1115: unless name.to_s.match(/\A\w+\z/)
Chris@1115: raise "Invalid macro name: #{name} (only 0-9, A-Z, a-z and _ characters are accepted)"
Chris@1115: end
Chris@1115: unless block_given?
Chris@1115: raise "Can not create a macro without a block!"
Chris@1115: end
Chris@1294: name = name.to_s.downcase.to_sym
Chris@1115: available_macros[name] = {:desc => @@desc || ''}.merge(options)
Chris@0: @@desc = nil
Chris@1294: Definitions.send :define_method, "macro_#{name}", &block
Chris@0: end
Chris@909:
Chris@0: # Sets description for the next macro to be defined
Chris@0: def desc(txt)
Chris@0: @@desc = txt
Chris@0: end
Chris@0: end
Chris@909:
Chris@0: # Builtin macros
Chris@0: desc "Sample macro."
Chris@1115: macro :hello_world do |obj, args, text|
Chris@1115: h("Hello world! Object: #{obj.class.name}, " +
Chris@1115: (args.empty? ? "Called with no argument" : "Arguments: #{args.join(', ')}") +
Chris@1115: " and " + (text.present? ? "a #{text.size} bytes long block of text." : "no block of text.")
Chris@1115: )
Chris@0: end
Chris@909:
Chris@0: desc "Displays a list of all available macros, including description if available."
Chris@909: macro :macro_list do |obj, args|
Chris@1115: out = ''.html_safe
Chris@1115: @@available_macros.each do |macro, options|
Chris@1115: out << content_tag('dt', content_tag('code', macro.to_s))
Chris@1115: out << content_tag('dd', textilizable(options[:desc]))
Chris@0: end
Chris@0: content_tag('dl', out)
Chris@0: end
Chris@909:
Chris@0: desc "Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:\n\n" +
Chris@0: " !{{child_pages}} -- can be used from a wiki page only\n" +
Chris@1115: " !{{child_pages(depth=2)}} -- display 2 levels nesting only\n"
Chris@0: " !{{child_pages(Foo)}} -- lists all children of page Foo\n" +
Chris@0: " !{{child_pages(Foo, parent=1)}} -- same as above with a link to page Foo"
Chris@0: macro :child_pages do |obj, args|
Chris@1115: args, options = extract_macro_options(args, :parent, :depth)
Chris@1115: options[:depth] = options[:depth].to_i if options[:depth].present?
Chris@1115:
Chris@0: page = nil
Chris@0: if args.size > 0
Chris@0: page = Wiki.find_page(args.first.to_s, :project => @project)
Chris@0: elsif obj.is_a?(WikiContent) || obj.is_a?(WikiContent::Version)
Chris@0: page = obj.page
Chris@0: else
Chris@0: raise 'With no argument, this macro can be called from wiki pages only.'
Chris@0: end
Chris@0: raise 'Page not found' if page.nil? || !User.current.allowed_to?(:view_wiki_pages, page.wiki.project)
Chris@1115: pages = page.self_and_descendants(options[:depth]).group_by(&:parent_id)
Chris@0: render_page_hierarchy(pages, options[:parent] ? page.parent_id : page.id)
Chris@0: end
Chris@909:
Chris@0: desc "Include a wiki page. Example:\n\n !{{include(Foo)}}\n\nor to include a page of a specific project wiki:\n\n !{{include(projectname:Foo)}}"
Chris@0: macro :include do |obj, args|
Chris@0: page = Wiki.find_page(args.first.to_s, :project => @project)
Chris@0: raise 'Page not found' if page.nil? || !User.current.allowed_to?(:view_wiki_pages, page.wiki.project)
Chris@0: @included_wiki_pages ||= []
Chris@0: raise 'Circular inclusion detected' if @included_wiki_pages.include?(page.title)
Chris@0: @included_wiki_pages << page.title
chris@37: out = textilizable(page.content, :text, :attachments => page.attachments, :headings => false)
Chris@0: @included_wiki_pages.pop
Chris@0: out
Chris@0: end
Chris@1115:
Chris@1115: desc "Inserts of collapsed block of text. Example:\n\n {{collapse(View details...)\nThis is a block of text that is collapsed by default.\nIt can be expanded by clicking a link.\n}}"
Chris@1115: macro :collapse do |obj, args, text|
Chris@1115: html_id = "collapse-#{Redmine::Utils.random_hex(4)}"
Chris@1115: show_label = args[0] || l(:button_show)
Chris@1115: hide_label = args[1] || args[0] || l(:button_hide)
Chris@1115: js = "$('##{html_id}-show, ##{html_id}-hide').toggle(); $('##{html_id}').fadeToggle(150);"
Chris@1115: out = ''.html_safe
Chris@1115: out << link_to_function(show_label, js, :id => "#{html_id}-show", :class => 'collapsible collapsed')
Chris@1115: out << link_to_function(hide_label, js, :id => "#{html_id}-hide", :class => 'collapsible', :style => 'display:none;')
Chris@1115: out << content_tag('div', textilizable(text, :object => obj), :id => html_id, :class => 'collapsed-text', :style => 'display:none;')
Chris@1115: out
Chris@1115: end
Chris@1115:
Chris@1115: desc "Displays a clickable thumbnail of an attached image. Examples:\n\n{{thumbnail(image.png)}}\n{{thumbnail(image.png, size=300, title=Thumbnail)}}
"
Chris@1115: macro :thumbnail do |obj, args|
Chris@1115: args, options = extract_macro_options(args, :size, :title)
Chris@1115: filename = args.first
Chris@1115: raise 'Filename required' unless filename.present?
Chris@1115: size = options[:size]
Chris@1115: raise 'Invalid size parameter' unless size.nil? || size.match(/^\d+$/)
Chris@1115: size = size.to_i
Chris@1115: size = nil unless size > 0
Chris@1115: if obj && obj.respond_to?(:attachments) && attachment = Attachment.latest_attach(obj.attachments, filename)
Chris@1115: title = options[:title] || attachment.title
Chris@1115: img = image_tag(url_for(:controller => 'attachments', :action => 'thumbnail', :id => attachment, :size => size), :alt => attachment.filename)
Chris@1115: link_to(img, url_for(:controller => 'attachments', :action => 'show', :id => attachment), :class => 'thumbnail', :title => title)
Chris@1115: else
Chris@1115: raise "Attachment #{filename} not found"
Chris@1115: end
Chris@1115: end
Chris@0: end
Chris@0: end
Chris@0: end