Class: Pageflow::DraftEntry

Inherits:
Object
  • Object
show all
Includes:
ActiveModel::Conversion
Defined in:
app/models/pageflow/draft_entry.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(entry, draft = nil) ⇒ DraftEntry

Returns a new instance of DraftEntry.



25
26
27
28
# File 'app/models/pageflow/draft_entry.rb', line 25

def initialize(entry, draft = nil)
  @entry = entry
  @draft = draft || entry.draft
end

Instance Attribute Details

#draftObject (readonly)

Returns the value of attribute draft.



5
6
7
# File 'app/models/pageflow/draft_entry.rb', line 5

def draft
  @draft
end

#entryObject (readonly)

Returns the value of attribute entry.



5
6
7
# File 'app/models/pageflow/draft_entry.rb', line 5

def entry
  @entry
end

Class Method Details

.accessible_by(ability, action) ⇒ Object



66
67
68
69
70
# File 'app/models/pageflow/draft_entry.rb', line 66

def self.accessible_by(ability, action)
  Entry.accessible_by(ability, action).map do |entry|
    DraftEntry.new(entry)
  end
end

.find(id) ⇒ Object



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

def self.find(id)
  new(Entry.find(id))
end

.for_file_usage(usage) ⇒ Object



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

def self.for_file_usage(usage)
  new(usage.revision.entry)
end

Instance Method Details

#add_file(file) ⇒ Object



46
47
48
# File 'app/models/pageflow/draft_entry.rb', line 46

def add_file(file)
  draft.file_usages.create!(:file => file)
end

#create_file(model, attributes) ⇒ Object



30
31
32
33
34
35
36
37
38
39
# File 'app/models/pageflow/draft_entry.rb', line 30

def create_file(model, attributes)
  file = model.create(attributes) do |f|
    f.entry = entry
  end

  usage = @draft.file_usages.create(:file => file)
  file.usage_id = usage.id

  file
end

#home_buttonObject



80
81
82
# File 'app/models/pageflow/draft_entry.rb', line 80

def home_button
  HomeButton.new(draft, theming)
end

#remove_file(file) ⇒ Object



41
42
43
44
# File 'app/models/pageflow/draft_entry.rb', line 41

def remove_file(file)
  draft.file_usages.where(file: file).destroy_all
  file.destroy if file.usages.empty?
end

#save!Object



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

def save!
  draft.save!
end

#stylesheet_cache_keyObject



76
77
78
# File 'app/models/pageflow/draft_entry.rb', line 76

def stylesheet_cache_key
  draft.cache_key
end

#stylesheet_modelObject



72
73
74
# File 'app/models/pageflow/draft_entry.rb', line 72

def stylesheet_model
  draft
end

#update_meta_data!(attributes) ⇒ Object



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

def update_meta_data!(attributes)
  draft.update_attributes!(attributes)
end