| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  | # redMine - project management software | 
					
						
							|  |  |  | # Copyright (C) 2006-2007  Jean-Philippe Lang | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # 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. | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # 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. | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # 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. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-14 11:25:03 +00:00
										 |  |  | require 'diff' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  | class WikiController < ApplicationController | 
					
						
							|  |  |  |   layout 'base' | 
					
						
							| 
									
										
										
										
											2007-08-29 16:52:35 +00:00
										 |  |  |   before_filter :find_wiki, :authorize | 
					
						
							| 
									
										
										
										
											2007-05-25 16:44:50 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2007-05-26 15:42:37 +00:00
										 |  |  |   verify :method => :post, :only => [:destroy, :destroy_attachment], :redirect_to => { :action => :index } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   helper :attachments | 
					
						
							|  |  |  |   include AttachmentsHelper    | 
					
						
							| 
									
										
										
										
											2007-05-25 16:44:50 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |   # display a page (in editing mode if it doesn't exist) | 
					
						
							|  |  |  |   def index | 
					
						
							|  |  |  |     page_title = params[:page] | 
					
						
							|  |  |  |     @page = @wiki.find_or_new_page(page_title) | 
					
						
							|  |  |  |     if @page.new_record? | 
					
						
							|  |  |  |       edit | 
					
						
							|  |  |  |       render :action => 'edit' and return | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-04-05 14:45:44 +00:00
										 |  |  |     @content = @page.content_for_version(params[:version]) | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |     if params[:export] == 'html' | 
					
						
							|  |  |  |       export = render_to_string :action => 'export', :layout => false | 
					
						
							|  |  |  |       send_data(export, :type => 'text/html', :filename => "#{@page.title}.html") | 
					
						
							|  |  |  |       return | 
					
						
							|  |  |  |     elsif params[:export] == 'txt' | 
					
						
							|  |  |  |       send_data(@content.text, :type => 'text/plain', :filename => "#{@page.title}.txt") | 
					
						
							|  |  |  |       return | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     render :action => 'show' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   # edit an existing page or a new one | 
					
						
							|  |  |  |   def edit | 
					
						
							|  |  |  |     @page = @wiki.find_or_new_page(params[:page])     | 
					
						
							|  |  |  |     @page.content = WikiContent.new(:page => @page) if @page.new_record? | 
					
						
							| 
									
										
										
										
											2007-04-05 14:45:44 +00:00
										 |  |  |      | 
					
						
							|  |  |  |     @content = @page.content_for_version(params[:version]) | 
					
						
							| 
									
										
										
										
											2007-03-20 18:14:23 +00:00
										 |  |  |     @content.text = "h1. #{@page.pretty_title}" if @content.text.blank? | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |     # don't keep previous comment | 
					
						
							| 
									
										
										
										
											2007-04-25 15:06:20 +00:00
										 |  |  |     @content.comments = nil | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |     if request.post?       | 
					
						
							| 
									
										
										
										
											2007-09-15 16:57:37 +00:00
										 |  |  |       if !@page.new_record? && @content.text == params[:content][:text] | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |         # don't save if text wasn't changed | 
					
						
							|  |  |  |         redirect_to :action => 'index', :id => @project, :page => @page.title | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2007-05-26 17:22:27 +00:00
										 |  |  |       #@content.text = params[:content][:text] | 
					
						
							|  |  |  |       #@content.comments = params[:content][:comments] | 
					
						
							|  |  |  |       @content.attributes = params[:content] | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |       @content.author = logged_in_user | 
					
						
							|  |  |  |       # if page is new @page.save will also save content, but not if page isn't a new record | 
					
						
							|  |  |  |       if (@page.new_record? ? @page.save : @content.save) | 
					
						
							|  |  |  |         redirect_to :action => 'index', :id => @project, :page => @page.title | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-05-26 17:22:27 +00:00
										 |  |  |   rescue ActiveRecord::StaleObjectError | 
					
						
							|  |  |  |     # Optimistic locking exception | 
					
						
							| 
									
										
										
										
											2007-08-02 17:42:20 +00:00
										 |  |  |     flash[:error] = l(:notice_locking_conflict) | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-09-09 17:05:38 +00:00
										 |  |  |   # rename a page | 
					
						
							|  |  |  |   def rename | 
					
						
							|  |  |  |     @page = @wiki.find_page(params[:page])     | 
					
						
							|  |  |  |     @page.redirect_existing_links = true | 
					
						
							|  |  |  |     # used to display the *original* title if some AR validation errors occur | 
					
						
							|  |  |  |     @original_title = @page.pretty_title | 
					
						
							|  |  |  |     if request.post? && @page.update_attributes(params[:wiki_page]) | 
					
						
							|  |  |  |       flash[:notice] = l(:notice_successful_update) | 
					
						
							|  |  |  |       redirect_to :action => 'index', :id => @project, :page => @page.title | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |   # show page history | 
					
						
							|  |  |  |   def history | 
					
						
							|  |  |  |     @page = @wiki.find_page(params[:page]) | 
					
						
							| 
									
										
										
										
											2007-06-23 18:53:45 +00:00
										 |  |  |      | 
					
						
							|  |  |  |     @version_count = @page.content.versions.count | 
					
						
							|  |  |  |     @version_pages = Paginator.new self, @version_count, 25, params['p'] | 
					
						
							|  |  |  |     # don't load text     | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |     @versions = @page.content.versions.find :all,  | 
					
						
							| 
									
										
										
										
											2007-04-25 15:06:20 +00:00
										 |  |  |                                             :select => "id, author_id, comments, updated_on, version", | 
					
						
							| 
									
										
										
										
											2007-06-23 18:53:45 +00:00
										 |  |  |                                             :order => 'version DESC', | 
					
						
							| 
									
										
										
										
											2007-07-14 11:25:03 +00:00
										 |  |  |                                             :limit  =>  @version_pages.items_per_page + 1, | 
					
						
							| 
									
										
										
										
											2007-06-23 18:53:45 +00:00
										 |  |  |                                             :offset =>  @version_pages.current.offset | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     render :layout => false if request.xhr? | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-05-25 16:44:50 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2007-07-14 11:25:03 +00:00
										 |  |  |   def diff | 
					
						
							|  |  |  |     @page = @wiki.find_page(params[:page]) | 
					
						
							|  |  |  |     @diff = @page.diff(params[:version], params[:version_from]) | 
					
						
							|  |  |  |     render_404 unless @diff | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-05-25 16:44:50 +00:00
										 |  |  |   # remove a wiki page and its history | 
					
						
							|  |  |  |   def destroy | 
					
						
							|  |  |  |     @page = @wiki.find_page(params[:page]) | 
					
						
							|  |  |  |     @page.destroy if @page | 
					
						
							|  |  |  |     redirect_to :action => 'special', :id => @project, :page => 'Page_index' | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   # display special pages | 
					
						
							|  |  |  |   def special | 
					
						
							|  |  |  |     page_title = params[:page].downcase | 
					
						
							|  |  |  |     case page_title | 
					
						
							|  |  |  |     # show pages index, sorted by title | 
					
						
							| 
									
										
										
										
											2007-09-27 19:35:53 +00:00
										 |  |  |     when 'page_index', 'date_index' | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |       # eager load information about last updates, without loading text | 
					
						
							| 
									
										
										
										
											2007-03-15 22:11:02 +00:00
										 |  |  |       @pages = @wiki.pages.find :all, :select => "#{WikiPage.table_name}.*, #{WikiContent.table_name}.updated_on", | 
					
						
							|  |  |  |                                       :joins => "LEFT JOIN #{WikiContent.table_name} ON #{WikiContent.table_name}.page_id = #{WikiPage.table_name}.id", | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |                                       :order => 'title' | 
					
						
							| 
									
										
										
										
											2007-09-27 19:35:53 +00:00
										 |  |  |       @pages_by_date = @pages.group_by {|p| p.updated_on.to_date} | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |     # export wiki to a single html file | 
					
						
							|  |  |  |     when 'export' | 
					
						
							|  |  |  |       @pages = @wiki.pages.find :all, :order => 'title' | 
					
						
							|  |  |  |       export = render_to_string :action => 'export_multiple', :layout => false | 
					
						
							|  |  |  |       send_data(export, :type => 'text/html', :filename => "wiki.html") | 
					
						
							|  |  |  |       return       | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       # requested special page doesn't exist, redirect to default page | 
					
						
							|  |  |  |       redirect_to :action => 'index', :id => @project, :page => nil and return | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     render :action => "special_#{page_title}" | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def preview | 
					
						
							| 
									
										
										
										
											2007-05-26 15:42:37 +00:00
										 |  |  |     page = @wiki.find_page(params[:page]) | 
					
						
							|  |  |  |     @attachements = page.attachments if page | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |     @text = params[:content][:text] | 
					
						
							|  |  |  |     render :partial => 'preview' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-26 15:42:37 +00:00
										 |  |  |   def add_attachment | 
					
						
							|  |  |  |     @page = @wiki.find_page(params[:page]) | 
					
						
							|  |  |  |     # Save the attachments | 
					
						
							|  |  |  |     params[:attachments].each { |file| | 
					
						
							|  |  |  |       next unless file.size > 0
 | 
					
						
							|  |  |  |       a = Attachment.create(:container => @page, :file => file, :author => logged_in_user) | 
					
						
							|  |  |  |     } if params[:attachments] and params[:attachments].is_a? Array | 
					
						
							|  |  |  |     redirect_to :action => 'index', :page => @page.title | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def destroy_attachment | 
					
						
							|  |  |  |     @page = @wiki.find_page(params[:page]) | 
					
						
							|  |  |  |     @page.attachments.find(params[:attachment_id]).destroy | 
					
						
							|  |  |  |     redirect_to :action => 'index', :page => @page.title | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  | private | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def find_wiki | 
					
						
							|  |  |  |     @project = Project.find(params[:id]) | 
					
						
							|  |  |  |     @wiki = @project.wiki | 
					
						
							| 
									
										
										
										
											2007-06-14 18:26:27 +00:00
										 |  |  |     render_404 unless @wiki | 
					
						
							| 
									
										
										
										
											2007-03-10 15:09:49 +00:00
										 |  |  |   rescue ActiveRecord::RecordNotFound | 
					
						
							|  |  |  |     render_404 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |