Class: Page
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Page
- Defined in:
- app/models/page.rb
Class Method Summary collapse
Instance Method Summary collapse
- #after_build_new_version(new_version) ⇒ Object
- #ancestors ⇒ Object
- #append_leading_slash_to_path ⇒ Object
- #assigned_to ⇒ Object
- #assigned_to?(user) ⇒ Boolean
-
#connectable_count_for_container(container) ⇒ Object
Returns the number of connectables in the given container for this version of this page.
-
#container_published?(container) ⇒ Boolean
Returns true if the block attached to each connector in the given container are published.
- #copy_connectors ⇒ Object
- #create_connector(connectable, container) ⇒ Object
- #current_task ⇒ Object
- #delete_connectors ⇒ Object
- #file_size ⇒ Object
- #in_section?(section_or_section_name) ⇒ Boolean
- #layout ⇒ Object
- #move_connector(connector, direction) ⇒ Object
- #name_with_section_path ⇒ Object
-
#original_revert_to ⇒ Object
This is done to let copy_connectors know which version to pull from copy_connectors will get called later as an after_update callback.
- #page_title ⇒ Object
- #path_not_reserved ⇒ Object
- #path_unique? ⇒ Boolean
- #public? ⇒ Boolean
- #remove_connector(connector) ⇒ Object
- #revert_to(version) ⇒ Object
- #section ⇒ Object
- #section=(sec) ⇒ Object
- #section_id ⇒ Object
- #section_id=(sec_id) ⇒ Object
-
#template ⇒ Object
This will be nil if it is a file system based template.
- #template_name ⇒ Object
-
#top_level_section ⇒ Object
This will return the “top level section” for a page, which is the section directly below the root (a.k.a My Site) that this page is in.
Class Method Details
.find_live_by_path(path) ⇒ Object
253 254 255 256 257 258 259 260 261 262 263 264 265 |
# File 'app/models/page.rb', line 253 def self.find_live_by_path(path) page_versions = Page::Version.all(:conditions => { :path => path, :archived => false, :published => true}, :order => "version desc") for page_version in page_versions next if page_version.page.nil? #skip versions that belong to deleted pages page = page_version.page.as_of_version(page_version.version) return page.live_version? ? page : nil end nil end |
Instance Method Details
#after_build_new_version(new_version) ⇒ Object
56 57 58 59 |
# File 'app/models/page.rb', line 56 def after_build_new_version(new_version) copy_connectors true end |
#ancestors ⇒ Object
229 230 231 |
# File 'app/models/page.rb', line 229 def ancestors section_node.ancestors end |
#append_leading_slash_to_path ⇒ Object
191 192 193 194 195 196 197 |
# File 'app/models/page.rb', line 191 def append_leading_slash_to_path if path.blank? self.path = "/" elsif path[0,1] != "/" self.path = "/#{path}" end end |
#assigned_to ⇒ Object
284 285 286 |
# File 'app/models/page.rb', line 284 def assigned_to current_task ? current_task.assigned_to : nil end |
#assigned_to?(user) ⇒ Boolean
288 289 290 |
# File 'app/models/page.rb', line 288 def assigned_to?(user) assigned_to == user end |
#connectable_count_for_container(container) ⇒ Object
Returns the number of connectables in the given container for this version of this page
249 250 251 |
# File 'app/models/page.rb', line 249 def connectable_count_for_container(container) connectors.for_page_version(version).in_container(container.to_s).count end |
#container_published?(container) ⇒ Boolean
Returns true if the block attached to each connector in the given container are published
242 243 244 245 246 |
# File 'app/models/page.rb', line 242 def container_published?(container) connectors.for_page_version(version).in_container(container.to_s).all? do |c| c.connectable_type.constantize.publishable? ? c.connectable.published? : true end end |
#copy_connectors ⇒ Object
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
# File 'app/models/page.rb', line 61 def copy_connectors copy_from_version = @copy_connectors_from_version ? @copy_connectors_from_version : version - 1 connectors.for_page_version(copy_from_version).all(:order => "connectors.container, connectors.position").each do |c| if c.connectable #The connector won't have a connectable if it has been deleted connectable = c.connectable_type.constantize.versioned? ? c.connectable.as_of_version(c.connectable_version) : c.connectable #If are publishing this page, We need to publish the other page if it is not already published if published? && c.connectable_type.constantize.publishable? && !c.connectable.published? connectable.publish_by_page!(self) end #If we are copying connectors from a previous version, that means we are reverting this page, #in which case we should create a new version of the block, and connect this page to that block if @copy_connectors_from_version && connectable.class.versioned? && !connectable.current_version? connectable = connectable.class.find(connectable.id) connectable.published_by_page = self if connectable.class.publishable? connectable.revert_to(c.connectable_version) end connectors.build( :page_version => version, :connectable => connectable, :connectable_version => connectable.class.versioned? ? connectable.version : nil, :container => c.container, :position => c.position ) end end @copy_connectors_from_version = nil true end |
#create_connector(connectable, container) ⇒ Object
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'app/models/page.rb', line 95 def create_connector(connectable, container) transaction do raise "Connectable is nil" unless connectable raise "Container is required" if container.blank? update_attributes(:version_comment => "#{connectable} was added to the '#{container}' container", :publish_on_save => (published? && connectable.connected_page && (connectable.class.publishable? ? connectable.published? : true))) Connector.create( :page => self, :page_version => version, :connectable => connectable, :connectable_version => connectable.class.versioned? ? connectable.version : nil, :container => container) end end |
#current_task ⇒ Object
280 281 282 |
# File 'app/models/page.rb', line 280 def current_task tasks.incomplete.first end |
#delete_connectors ⇒ Object
141 142 143 |
# File 'app/models/page.rb', line 141 def delete_connectors connectors.for_page_version(version).all.each{|c| c.destroy } end |
#file_size ⇒ Object
153 154 155 |
# File 'app/models/page.rb', line 153 def file_size "?" end |
#in_section?(section_or_section_name) ⇒ Boolean
233 234 235 236 237 238 239 |
# File 'app/models/page.rb', line 233 def in_section?(section_or_section_name) sec = section_or_section_name.is_a?(String) ? Section.first(:conditions => {:name => section_or_section_name}) : section_or_section_name fn = lambda{|s| s ? (s == sec || fn.call(s.parent)) : false} fn.call(section) end |
#layout ⇒ Object
216 217 218 |
# File 'app/models/page.rb', line 216 def layout template_file_name && "templates/#{template_file_name.split('.').first}" end |
#move_connector(connector, direction) ⇒ Object
117 118 119 120 121 122 123 124 125 |
# File 'app/models/page.rb', line 117 def move_connector(connector, direction) transaction do raise "Connector is nil" unless connector raise "Direction is nil" unless direction orientation = direction[/_/] ? "#{direction.sub('_', ' the ')} of" : "#{direction} within" update_attributes(:version_comment => "#{connector.connectable} was moved #{orientation} the '#{connector.container}' container") connectors.for_page_version(version).like(connector).first.send("move_#{direction}") end end |
#name_with_section_path ⇒ Object
267 268 269 270 |
# File 'app/models/page.rb', line 267 def name_with_section_path a = ancestors (a[1..a.size].map{|a| a.name} + [name]).join(" / ") end |
#original_revert_to ⇒ Object
This is done to let copy_connectors know which version to pull from copy_connectors will get called later as an after_update callback
147 |
# File 'app/models/page.rb', line 147 alias_method :original_revert_to, :revert_to |
#page_title ⇒ Object
181 182 183 |
# File 'app/models/page.rb', line 181 def page_title title.blank? ? name : title end |
#path_not_reserved ⇒ Object
210 211 212 213 214 |
# File 'app/models/page.rb', line 210 def path_not_reserved if Cms.reserved_paths.include?(path) errors.add(:path, "is invalid, '#{path}' a reserved path") end end |
#path_unique? ⇒ Boolean
199 200 201 202 203 204 205 206 207 208 |
# File 'app/models/page.rb', line 199 def path_unique? conditions = ["path = ?", path] unless new_record? conditions.first << " and id != ?" conditions << id end if self.class.count(:conditions => conditions) > 0 errors.add(:path, "must be unique") end end |
#public? ⇒ Boolean
177 178 179 |
# File 'app/models/page.rb', line 177 def public? section ? section.public? : false end |
#remove_connector(connector) ⇒ Object
127 128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'app/models/page.rb', line 127 def remove_connector(connector) transaction do raise "Connector is nil" unless connector update_attributes(:version_comment => "#{connector.connectable} was removed from the '#{connector.container}' container") #The logic of this is to go ahead and let the container get copied forward, then delete the new connector if new_connector = connectors.for_page_version(version).like(connector).first new_connector.destroy else raise "Error occurred while trying to remove connector #{connector.id}" end end end |
#revert_to(version) ⇒ Object
148 149 150 151 |
# File 'app/models/page.rb', line 148 def revert_to(version) @copy_connectors_from_version = version original_revert_to(version) end |
#section ⇒ Object
161 162 163 |
# File 'app/models/page.rb', line 161 def section section_node ? section_node.section : nil end |
#section=(sec) ⇒ Object
169 170 171 172 173 174 175 |
# File 'app/models/page.rb', line 169 def section=(sec) if section_node section_node.move_to_end(sec) else build_section_node(:node => self, :section => sec) end end |
#section_id ⇒ Object
157 158 159 |
# File 'app/models/page.rb', line 157 def section_id section ? section.id : nil end |
#section_id=(sec_id) ⇒ Object
165 166 167 |
# File 'app/models/page.rb', line 165 def section_id=(sec_id) self.section = Section.find(sec_id) end |
#template ⇒ Object
This will be nil if it is a file system based template
221 222 223 |
# File 'app/models/page.rb', line 221 def template PageTemplate.find_by_file_name(template_file_name) end |
#template_name ⇒ Object
225 226 227 |
# File 'app/models/page.rb', line 225 def template_name template_file_name && PageTemplate.display_name(template_file_name) end |
#top_level_section ⇒ Object
This will return the “top level section” for a page, which is the section directly below the root (a.k.a My Site) that this page is in. If this page is in root, then this will return root.
275 276 277 278 |
# File 'app/models/page.rb', line 275 def top_level_section a = ancestors (a.size > 0 && ancestors[1]) ? ancestors[1] : Section.root.first end |