Class: Pageflow::PublishedEntry

Inherits:
Object
  • Object
show all
Extended by:
ActiveModel::Naming
Includes:
ActiveModel::Conversion
Defined in:
app/models/pageflow/published_entry.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(entry, revision = nil) ⇒ PublishedEntry

Returns a new instance of PublishedEntry.



26
27
28
29
30
# File 'app/models/pageflow/published_entry.rb', line 26

def initialize(entry, revision = nil)
  @entry = entry
  @revision = revision || entry.published_revision
  @custom_revision = !!revision
end

Instance Attribute Details

#entryObject (readonly)

Returns the value of attribute entry.



6
7
8
# File 'app/models/pageflow/published_entry.rb', line 6

def entry
  @entry
end

#revisionObject (readonly)

Returns the value of attribute revision.



6
7
8
# File 'app/models/pageflow/published_entry.rb', line 6

def revision
  @revision
end

#share_targetObject

Returns the value of attribute share_target.



7
8
9
# File 'app/models/pageflow/published_entry.rb', line 7

def share_target
  @share_target
end

Class Method Details

.find(id, scope = Entry) ⇒ Object



50
51
52
# File 'app/models/pageflow/published_entry.rb', line 50

def self.find(id, scope = Entry)
  PublishedEntry.new(scope.published.find(id))
end

Instance Method Details

#cache_keyObject



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

def cache_key
  "#{self.class.model_name.cache_key}/#{entry.cache_key}-#{revision.cache_key}"
end

#home_buttonObject



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

def home_button
  HomeButton.new(revision, theming)
end

#stylesheet_cache_keyObject



36
37
38
# File 'app/models/pageflow/published_entry.rb', line 36

def stylesheet_cache_key
  revision.cache_key
end

#stylesheet_modelObject



32
33
34
# File 'app/models/pageflow/published_entry.rb', line 32

def stylesheet_model
  custom_revision? ? revision : entry
end

#thumbnail_fileObject



44
45
46
47
48
# File 'app/models/pageflow/published_entry.rb', line 44

def thumbnail_file
  share_image_file ||
    pages.first.try(:thumbnail_file) ||
    PositionedFile.null
end

#thumbnail_url(*args) ⇒ Object



40
41
42
# File 'app/models/pageflow/published_entry.rb', line 40

def thumbnail_url(*args)
  thumbnail_file.thumbnail_url(*args)
end