Class: Page

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/page.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.find_live_by_path(path) ⇒ Object



261
262
263
# File 'app/models/page.rb', line 261

def self.find_live_by_path(path)
  published.not_archived.first(:conditions => {:path => path})
end

Instance Method Details

#after_build_new_version(new_version) ⇒ Object



57
58
59
60
61
62
63
64
# File 'app/models/page.rb', line 57

def after_build_new_version(new_version)
  copy_connectors(
    :from_version_number => @copy_connectors_from_version || (new_version.version - 1),
    :to_version_number => new_version.version
  )
  @copy_connectors_from_version = nil
  true
end

#after_publishObject

Publish all



67
68
69
70
71
72
73
74
# File 'app/models/page.rb', line 67

def after_publish
  self.reload # Get's the correct version number loaded
  self.connectors.for_page_version(self.version).all(:order => "position").each do |c| 
    if c.connectable_type.constantize.publishable? && con = c.connectable
      con.publish
    end
  end
end

#ancestorsObject



237
238
239
# File 'app/models/page.rb', line 237

def ancestors
  section_node.ancestors
end

#append_leading_slash_to_pathObject



210
211
212
213
214
215
216
# File 'app/models/page.rb', line 210

def append_leading_slash_to_path
  if path.blank?
    self.path = "/"
  elsif path[0,1] != "/"
    self.path = "/#{path}"
  end
end

#assigned_toObject



287
288
289
# File 'app/models/page.rb', line 287

def assigned_to
  current_task ? current_task.assigned_to : nil
end

#assigned_to?(user) ⇒ Boolean

Returns:

  • (Boolean)


291
292
293
# File 'app/models/page.rb', line 291

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



257
258
259
# File 'app/models/page.rb', line 257

def connectable_count_for_container(container)
  connectors.for_page_version(version).in_container(container.to_s).count
end

#connectables_by_connectorObject



156
157
158
159
160
161
162
163
164
165
# File 'app/models/page.rb', line 156

def connectables_by_connector
  @connectables_by_connector ||= connectors.for_page_version(version).inject({}) do |mem, connector|
    connectable = connector.connectable_with_deleted
    if connectable.class.versioned?
      connectable = connectable.as_of_version(connector.connectable_version)
    end
    mem[connector] = connectable
    mem
  end
end

#container_published?(container) ⇒ Boolean

Returns true if the block attached to each connector in the given container are published

Returns:

  • (Boolean)


250
251
252
253
254
# File 'app/models/page.rb', line 250

def container_published?(container)
  connectors.for_page_version(draft.version).in_container(container.to_s).all? do |c| 
    c.connectable_type.constantize.publishable? ? c.connectable.live? : true
  end
end

#copy_connectors(options = {}) ⇒ Object



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'app/models/page.rb', line 76

def copy_connectors(options={})
  connectors.for_page_version(options[:from_version_number]).all(:order => "connectors.container, connectors.position").each do |c|
    # The connector won't have a connectable if it has been deleted
    # Also need to see if the draft has been deleted,
    # in which case we are in the process of deleting it
    if c.should_be_copied?
      connectable = c.connectable_type.constantize.versioned? ? c.connectable.as_of_version(c.connectable_version) : c.connectable
    
      #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.version != connectable.draft.version)
        connectable = connectable.class.find(connectable.id)
        connectable.updated_by_page = self
        connectable.revert_to(c.connectable_version)
      end      
    
      new_connector = connectors.build(
        :page_version => options[:to_version_number], 
        :connectable => connectable, 
        :connectable_version => connectable.class.versioned? ? connectable.version : nil,         
        :container => c.container, 
        :position => c.position
      )
    end
  end
  true
end

#create_connector(connectable, container) ⇒ Object



104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'app/models/page.rb', line 104

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)))
    connectors.create(
      :page_version => draft.version,
      :connectable => connectable,
      :connectable_version => connectable.class.versioned? ? connectable.version : nil, 
      :container => container)      
  end
end

#current_taskObject



283
284
285
# File 'app/models/page.rb', line 283

def current_task
  tasks.incomplete.first
end

#delete_connectorsObject



152
153
154
# File 'app/models/page.rb', line 152

def delete_connectors
  connectors.for_page_version(version).all.each{|c| c.destroy }
end

#delete_section_nodeObject



198
199
200
# File 'app/models/page.rb', line 198

def delete_section_node
  section_node.destroy if section_node
end

#file_sizeObject



174
175
176
# File 'app/models/page.rb', line 174

def file_size
  "?"
end

#in_section?(section_or_section_name) ⇒ Boolean

Returns:

  • (Boolean)


241
242
243
244
245
246
247
# File 'app/models/page.rb', line 241

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

#internal_nameObject

returns current page name, lowercase, with spaces replaced by underscores



271
272
273
# File 'app/models/page.rb', line 271

def internal_name
  name.downcase.gsub(/ /, '_')
end

#layoutObject



224
225
226
# File 'app/models/page.rb', line 224

def layout
  template_file_name && "templates/#{template_file_name.split('.').first}"
end

#move_connector(connector, direction) ⇒ Object



122
123
124
125
126
127
128
129
130
# File 'app/models/page.rb', line 122

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(draft.version).like(connector).first.send("move_#{direction}")
  end    
end

#name_with_section_pathObject



265
266
267
268
# File 'app/models/page.rb', line 265

def name_with_section_path
  a = ancestors
  (a[1..a.size].map{|a| a.name} + [name]).join(" / ")
end

#page_titleObject



206
207
208
# File 'app/models/page.rb', line 206

def page_title
  title.blank? ? name : title
end

#path_not_reservedObject



218
219
220
221
222
# File 'app/models/page.rb', line 218

def path_not_reserved
  if Cms.reserved_paths.include?(path)
    errors.add(:path, "is invalid, '#{path}' a reserved path")
  end
end

#public?Boolean

Returns:

  • (Boolean)


202
203
204
# File 'app/models/page.rb', line 202

def public?
  section ? section.public? : false
end

#remove_connector(connector) ⇒ Object



138
139
140
141
142
143
144
145
146
147
148
149
150
# File 'app/models/page.rb', line 138

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(draft.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

This is done to let copy_connectors know which version to pull from copy_connectors will get called later as an after_update callback



169
170
171
172
# File 'app/models/page.rb', line 169

def revert_to(version)
  @copy_connectors_from_version = version
  super(version)
end

#sectionObject



182
183
184
# File 'app/models/page.rb', line 182

def section
  section_node ? section_node.section : nil
end

#section=(sec) ⇒ Object



190
191
192
193
194
195
196
# File 'app/models/page.rb', line 190

def section=(sec)
  if section_node
    section_node.move_to_end(sec)
  else
    build_section_node(:node => self, :section => sec)
  end      
end

#section_idObject



178
179
180
# File 'app/models/page.rb', line 178

def section_id
  section ? section.id : nil
end

#section_id=(sec_id) ⇒ Object



186
187
188
# File 'app/models/page.rb', line 186

def section_id=(sec_id)
  self.section = Section.find(sec_id)
end

#templateObject

This will be nil if it is a file system based template



229
230
231
# File 'app/models/page.rb', line 229

def template
  PageTemplate.find_by_file_name(template_file_name)
end

#template_nameObject



233
234
235
# File 'app/models/page.rb', line 233

def template_name
  template_file_name && PageTemplate.display_name(template_file_name)
end

#top_level_sectionObject

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.



278
279
280
281
# File 'app/models/page.rb', line 278

def top_level_section
  a = ancestors
  (a.size > 0 && ancestors[1]) ? ancestors[1] : Section.root.first
end