Class: Page

Inherits:
ActiveRecord::Base
  • Object
show all
Includes:
Annotatable, DeprecatedTags, StandardTags, TrustyCms::Taggable
Defined in:
app/models/page.rb

Direct Known Subclasses

FileNotFoundPage

Defined Under Namespace

Classes: MissingRootPageError

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Annotatable

included

Methods included from TrustyCms::Taggable

included, #render_tag, #tag_descriptions, #tags, #warn_of_tag_deprecation

Methods included from LocalTime

#adjust_time

Instance Attribute Details

#pagination_parametersObject

Returns the value of attribute pagination_parameters.



39
40
41
# File 'app/models/page.rb', line 39

def pagination_parameters
  @pagination_parameters
end

#requestObject

Returns the value of attribute request.



39
40
41
# File 'app/models/page.rb', line 39

def request
  @request
end

#responseObject

Returns the value of attribute response.



39
40
41
# File 'app/models/page.rb', line 39

def response
  @response
end

Class Method Details

.date_column_namesObject



247
248
249
# File 'app/models/page.rb', line 247

def date_column_names
  self.columns.collect{|c| c.name if c.sql_type =~ /(date|time)/}.compact
end

.descendant_class(class_name) ⇒ Object

Raises:

  • (ArgumentError)


300
301
302
303
304
305
306
307
# File 'app/models/page.rb', line 300

def descendant_class(class_name)
  raise ArgumentError.new("argument must be a valid descendant of Page") unless is_descendant_class_name?(class_name)
  if ["", nil, "Page"].include?(class_name)
    Page
  else
    class_name.constantize
  end
end

.display_name(string = nil) ⇒ Object



251
252
253
254
255
256
257
258
259
260
261
262
263
264
# File 'app/models/page.rb', line 251

def display_name(string = nil)
  if string
    @display_name = string
  else
    @display_name ||= begin
      n = name.to_s
      n.sub!(/^(.+?)Page$/, '\1')
      n.gsub!(/([A-Z])/, ' \1')
      n.strip
    end
  end
  @display_name = @display_name + " - not installed" if missing? && @display_name !~ /not installed/
  @display_name
end

.display_name=(string) ⇒ Object



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

def display_name=(string)
  display_name(string)
end

.find_by_path(path, live = true) ⇒ Object



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

def find_by_path(path, live = true)
  raise MissingRootPageError unless root
  root.find_by_path(path, live)
end

.find_by_url(*args) ⇒ Object



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

def find_by_url(*args)
  ActiveSupport::Deprecation.warn("`find_by_url' has been deprecated; use `find_by_path' instead.", caller)
  find_by_path(*args)
end

.is_descendant_class_name?(class_name) ⇒ Boolean

Returns:

  • (Boolean)


296
297
298
# File 'app/models/page.rb', line 296

def is_descendant_class_name?(class_name)
  (Page.descendants.map(&:to_s) + [nil, "", "Page"]).include?(class_name)
end

.load_subclassesObject



270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
# File 'app/models/page.rb', line 270

def load_subclasses
  ([TRUSTY_CMS_ROOT] + TrustyCms::Extension.descendants.map(&:root)).each do |path|
    Dir["#{path}/app/models/*_page.rb"].each do |page|
      $1.camelize.constantize if page =~ %r{/([^/]+)\.rb}
    end
  end
  if ActiveRecord::Base.connection.tables.include?('pages') && Page.column_names.include?('class_name') # Assume that we have bootstrapped
    Page.connection.select_values("SELECT DISTINCT class_name FROM pages WHERE class_name <> '' AND class_name IS NOT NULL").each do |p|
      begin
        p.constantize
      rescue NameError, LoadError
        eval(%Q{class #{p} < Page; acts_as_tree; def self.missing?; true end end}, TOPLEVEL_BINDING)
      end
    end
  end
end

.missing?Boolean

Returns:

  • (Boolean)


309
310
311
# File 'app/models/page.rb', line 309

def missing?
  false
end

.new_with_defaults(config = TrustyCms::Config) ⇒ Object



287
288
289
290
291
292
293
294
# File 'app/models/page.rb', line 287

def new_with_defaults(config = TrustyCms::Config)
  page = new
  page.parts.concat default_page_parts(config)
  page.fields.concat default_page_fields(config)
  default_status = config['defaults.page.status']
  page.status = Status[default_status] if default_status
  page
end

.rootObject



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

def root
  find_by_parent_id(nil)
end

Instance Method Details

#allowed_children_lookupObject



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

def allowed_children_lookup
  [default_child, *Page.descendants.sort_by(&:name)].uniq
end

#cache?Boolean

Returns:

  • (Boolean)


62
63
64
# File 'app/models/page.rb', line 62

def cache?
  true
end

#child_path(child) ⇒ Object Also known as: child_url



66
67
68
# File 'app/models/page.rb', line 66

def child_path(child)
  clean_path(path + '/' + child.slug)
end

#default_childObject



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

def default_child
  self.class.default_child
end

#descriptionObject



54
55
56
# File 'app/models/page.rb', line 54

def description
  self["description"]
end

#description=(value) ⇒ Object



58
59
60
# File 'app/models/page.rb', line 58

def description=(value)
  self["description"] = value
end

#field(name) ⇒ Object



91
92
93
94
95
96
97
# File 'app/models/page.rb', line 91

def field(name)
  if new_record? or fields.any?(&:new_record?)
    fields.detect { |f| f.name.downcase == name.to_s.downcase }
  else
    fields.find_by_name name.to_s
  end
end

#find_by_path(path, live = true, clean = true) ⇒ Object



177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# File 'app/models/page.rb', line 177

def find_by_path(path, live = true, clean = true)
  return nil if virtual?
  path = clean_path(path) if clean
  my_path = self.path
  if (my_path == path) && (not live or published?)
    return self
  elsif (path =~ /^#{Regexp.quote(my_path)}([^\/]*)/)
    slug_child = children.find_by_slug($1)
    if slug_child
      found = slug_child.find_by_path(path, live, clean) # TODO: set to find_by_path after deprecation
      return found if found
    end
    children.each do |child|
      found = child.find_by_path(path, live, clean) # TODO: set to find_by_path after deprecation
      return found if found
    end
  end
  unless slug_child
    file_not_found_types = ([FileNotFoundPage] + FileNotFoundPage.descendants)
    file_not_found_names = file_not_found_types.collect { |x| x.name }
    condition = (['class_name = ?'] * file_not_found_names.length).join(' or ')
    condition = "status_id = #{Status[:published].id} and (#{condition})" if live
    return children.where([condition] + file_not_found_names).first
  end
  slug_child
end

#find_by_urlObject



203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
# File 'app/models/page.rb', line 203

def find_by_path(path, live = true, clean = true)
  return nil if virtual?
  path = clean_path(path) if clean
  my_path = self.path
  if (my_path == path) && (not live or published?)
    return self
  elsif (path =~ /^#{Regexp.quote(my_path)}([^\/]*)/)
    slug_child = children.find_by_slug($1)
    if slug_child
      found = slug_child.find_by_path(path, live, clean) # TODO: set to find_by_path after deprecation
      return found if found
    end
    children.each do |child|
      found = child.find_by_path(path, live, clean) # TODO: set to find_by_path after deprecation
      return found if found
    end
  end
  unless slug_child
    file_not_found_types = ([FileNotFoundPage] + FileNotFoundPage.descendants)
    file_not_found_names = file_not_found_types.collect { |x| x.name }
    condition = (['class_name = ?'] * file_not_found_names.length).join(' or ')
    condition = "status_id = #{Status[:published].id} and (#{condition})" if live
    return children.where([condition] + file_not_found_names).first
  end
  slug_child
end

#has_or_inherits_part?(name) ⇒ Boolean

Returns:

  • (Boolean)


83
84
85
# File 'app/models/page.rb', line 83

def has_or_inherits_part?(name)
  has_part?(name) || inherits_part?(name)
end

#has_part?(name) ⇒ Boolean

Returns:

  • (Boolean)


79
80
81
# File 'app/models/page.rb', line 79

def has_part?(name)
  !part(name).nil?
end

#headersObject



131
132
133
134
# File 'app/models/page.rb', line 131

def headers
  # Return a blank hash that child classes can override or merge
  { }
end

#inherits_part?(name) ⇒ Boolean

Returns:

  • (Boolean)


87
88
89
# File 'app/models/page.rb', line 87

def inherits_part?(name)
  !has_part?(name) && self.ancestors.any? { |page| page.has_part?(name) }
end

#layout_with_inheritanceObject



45
46
47
48
49
50
51
# File 'app/models/page.rb', line 45

def layout_with_inheritance
  unless layout_without_inheritance
    parent.layout if parent?
  else
    layout_without_inheritance
  end
end

#part(name) ⇒ Object



71
72
73
74
75
76
77
# File 'app/models/page.rb', line 71

def part(name)
  if new_record? or parts.to_a.any?(&:new_record?)
    parts.to_a.find {|p| p.name == name.to_s }
  else
    parts.find_by_name name.to_s
  end
end

#pathObject Also known as: url



115
116
117
118
119
120
121
# File 'app/models/page.rb', line 115

def path
  if parent?
    parent.child_path(self)
  else
    clean_path(slug)
  end
end

#process(request, response) ⇒ Object



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

def process(request, response)
  @request, @response = request, response
  set_response_headers(@response)
  @response.body = render
  @response.status = response_code
end

#published?Boolean

Returns:

  • (Boolean)


99
100
101
# File 'app/models/page.rb', line 99

def published?
  status == Status[:published]
end

#renderObject



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

def render
  if layout
    parse_object(layout)
  else
    render_part(:body)
  end
end

#render_part(part_name) ⇒ Object



164
165
166
167
168
169
170
171
# File 'app/models/page.rb', line 164

def render_part(part_name)
  part = part(part_name)
  if part
    parse_object(part)
  else
    ''
  end
end

#render_snippet(snippet) ⇒ Object



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

def render_snippet(snippet)
  parse_object(snippet)
end

#response_codeObject



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

def response_code
  200
end

#scheduled?Boolean

Returns:

  • (Boolean)


103
104
105
# File 'app/models/page.rb', line 103

def scheduled?
  status == Status[:scheduled]
end

#set_allowed_children_cacheObject



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

def set_allowed_children_cache
  self.allowed_children_cache = allowed_children_lookup.collect(&:name).join(',')
end

#statusObject



107
108
109
# File 'app/models/page.rb', line 107

def status
 Status.find(self.status_id)
end

#status=(value) ⇒ Object



111
112
113
# File 'app/models/page.rb', line 111

def status=(value)
  self.status_id = value.id
end

#to_xml(options = {}, &block) ⇒ Object



216
217
218
# File 'app/models/page.rb', line 216

def to_xml(options={}, &block)
  super(options.reverse_merge(:include => :parts), &block)
end

#update_statusObject



205
206
207
208
209
210
211
212
213
214
# File 'app/models/page.rb', line 205

def update_status
  self.published_at = Time.zone.now if published? && self.published_at == nil

  if self.published_at != nil && (published? || scheduled?)
    self[:status_id] = Status[:scheduled].id if self.published_at  > Time.zone.now
    self[:status_id] = Status[:published].id if self.published_at <= Time.zone.now
  end

  true
end