To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / models / wiki_content.rb @ 912:5e80956cc792

History | View | Annotate | Download (4.66 KB)

1 441:cbce1fd3b1b7 Chris
# RedMine - project management software
2
# Copyright (C) 2006-2011  Jean-Philippe Lang
3 0:513646585e45 Chris
#
4
# This program is free software; you can redistribute it and/or
5
# modify it under the terms of the GNU General Public License
6
# as published by the Free Software Foundation; either version 2
7
# of the License, or (at your option) any later version.
8 441:cbce1fd3b1b7 Chris
#
9 0:513646585e45 Chris
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU General Public License for more details.
13 441:cbce1fd3b1b7 Chris
#
14 0:513646585e45 Chris
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17
18
require 'zlib'
19
20
class WikiContent < ActiveRecord::Base
21
  set_locking_column :version
22
  belongs_to :page, :class_name => 'WikiPage', :foreign_key => 'page_id'
23
  belongs_to :author, :class_name => 'User', :foreign_key => 'author_id'
24
  validates_presence_of :text
25
  validates_length_of :comments, :maximum => 255, :allow_nil => true
26 441:cbce1fd3b1b7 Chris
27 0:513646585e45 Chris
  acts_as_versioned
28 441:cbce1fd3b1b7 Chris
29 0:513646585e45 Chris
  def visible?(user=User.current)
30
    page.visible?(user)
31
  end
32 441:cbce1fd3b1b7 Chris
33 0:513646585e45 Chris
  def project
34
    page.project
35
  end
36 441:cbce1fd3b1b7 Chris
37 0:513646585e45 Chris
  def attachments
38
    page.nil? ? [] : page.attachments
39
  end
40 441:cbce1fd3b1b7 Chris
41 0:513646585e45 Chris
  # Returns the mail adresses of users that should be notified
42
  def recipients
43
    notified = project.notified_users
44
    notified.reject! {|user| !visible?(user)}
45
    notified.collect(&:mail)
46
  end
47 441:cbce1fd3b1b7 Chris
48 909:cbb26bc654de Chris
  # Return true if the content is the current page content
49
  def current_version?
50
    true
51
  end
52
53 0:513646585e45 Chris
  class Version
54
    belongs_to :page, :class_name => '::WikiPage', :foreign_key => 'page_id'
55
    belongs_to :author, :class_name => '::User', :foreign_key => 'author_id'
56
    attr_protected :data
57
58
    acts_as_event :title => Proc.new {|o| "#{l(:label_wiki_edit)}: #{o.page.title} (##{o.version})"},
59
                  :description => :comments,
60
                  :datetime => :updated_on,
61
                  :type => 'wiki-page',
62 37:94944d00e43c chris
                  :url => Proc.new {|o| {:controller => 'wiki', :action => 'show', :project_id => o.page.wiki.project, :id => o.page.title, :version => o.version}}
63 0:513646585e45 Chris
64
    acts_as_activity_provider :type => 'wiki_edits',
65
                              :timestamp => "#{WikiContent.versioned_table_name}.updated_on",
66
                              :author_key => "#{WikiContent.versioned_table_name}.author_id",
67
                              :permission => :view_wiki_edits,
68
                              :find_options => {:select => "#{WikiContent.versioned_table_name}.updated_on, #{WikiContent.versioned_table_name}.comments, " +
69
                                                           "#{WikiContent.versioned_table_name}.#{WikiContent.version_column}, #{WikiPage.table_name}.title, " +
70
                                                           "#{WikiContent.versioned_table_name}.page_id, #{WikiContent.versioned_table_name}.author_id, " +
71
                                                           "#{WikiContent.versioned_table_name}.id",
72
                                                :joins => "LEFT JOIN #{WikiPage.table_name} ON #{WikiPage.table_name}.id = #{WikiContent.versioned_table_name}.page_id " +
73
                                                          "LEFT JOIN #{Wiki.table_name} ON #{Wiki.table_name}.id = #{WikiPage.table_name}.wiki_id " +
74
                                                          "LEFT JOIN #{Project.table_name} ON #{Project.table_name}.id = #{Wiki.table_name}.project_id"}
75
76
    def text=(plain)
77
      case Setting.wiki_compression
78
      when 'gzip'
79
      begin
80
        self.data = Zlib::Deflate.deflate(plain, Zlib::BEST_COMPRESSION)
81
        self.compression = 'gzip'
82
      rescue
83
        self.data = plain
84
        self.compression = ''
85
      end
86
      else
87
        self.data = plain
88
        self.compression = ''
89
      end
90
      plain
91
    end
92 441:cbce1fd3b1b7 Chris
93 0:513646585e45 Chris
    def text
94
      @text ||= case compression
95
      when 'gzip'
96 909:cbb26bc654de Chris
        str = Zlib::Inflate.inflate(data)
97
        str.force_encoding("UTF-8") if str.respond_to?(:force_encoding)
98
        str
99 0:513646585e45 Chris
      else
100
        # uncompressed data
101
        data
102 441:cbce1fd3b1b7 Chris
      end
103 0:513646585e45 Chris
    end
104 441:cbce1fd3b1b7 Chris
105 0:513646585e45 Chris
    def project
106
      page.project
107
    end
108 441:cbce1fd3b1b7 Chris
109 909:cbb26bc654de Chris
    # Return true if the content is the current page content
110
    def current_version?
111
      page.content.version == self.version
112
    end
113
114 0:513646585e45 Chris
    # Returns the previous version or nil
115
    def previous
116 441:cbce1fd3b1b7 Chris
      @previous ||= WikiContent::Version.find(:first,
117 0:513646585e45 Chris
                                              :order => 'version DESC',
118
                                              :include => :author,
119
                                              :conditions => ["wiki_content_id = ? AND version < ?", wiki_content_id, version])
120
    end
121
  end
122
end