Class: BooticCli::Themes::APITheme

Inherits:
Object
  • Object
show all
Defined in:
lib/bootic_cli/themes/api_theme.rb

Defined Under Namespace

Classes: EntityErrors

Instance Method Summary collapse

Constructor Details

#initialize(theme) ⇒ APITheme

Returns a new instance of APITheme.



69
70
71
72
# File 'lib/bootic_cli/themes/api_theme.rb', line 69

def initialize(theme)
  @theme = theme
  puts "Entity has errors: #{theme.errors.map(&:messages).join(', ')}" if theme.has?(:errors)
end

Instance Method Details

#add_asset(file_name, file) ⇒ Object



143
144
145
146
147
148
# File 'lib/bootic_cli/themes/api_theme.rb', line 143

def add_asset(file_name, file)
  check_errors! theme.create_theme_asset(
    file_name: file_name,
    data: file
  )
end

#add_template(file_name, body) ⇒ Object



118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'lib/bootic_cli/themes/api_theme.rb', line 118

def add_template(file_name, body)
  params = {
    file_name: file_name,
    body: body
  }

  if ts = get_updated_on(file_name)
    params.merge!(last_updated_on: ts.to_i)
  end

  check_errors!(theme.create_template(params)).tap do |entity|
    template_updated(file_name, entity)
  end
end

#assetsObject



114
115
116
# File 'lib/bootic_cli/themes/api_theme.rb', line 114

def assets
  @assets ||= theme.assets.map { |t| APIAsset.new(t) }
end

#delete!Object



90
91
92
93
94
95
96
# File 'lib/bootic_cli/themes/api_theme.rb', line 90

def delete!
  if theme.can?(:delete_theme)
    res = theme.delete_theme
    return res.status <= 204
  end
  false
end

#dev?Boolean

Returns:

  • (Boolean)


79
80
81
# File 'lib/bootic_cli/themes/api_theme.rb', line 79

def dev?
  theme.can?(:publish_theme)
end

#pathObject



98
99
100
# File 'lib/bootic_cli/themes/api_theme.rb', line 98

def path
  theme.rels[:theme_preview].href
end

#public?Boolean

this is unique to API themes

Returns:

  • (Boolean)


75
76
77
# File 'lib/bootic_cli/themes/api_theme.rb', line 75

def public?
  !dev?
end

#publish(opts = {}) ⇒ Object



83
84
85
86
87
88
# File 'lib/bootic_cli/themes/api_theme.rb', line 83

def publish(opts = {})
  if theme.can?(:publish_theme)
    @theme = theme.publish_theme(opts)
    reload!(false)
  end
end

#reload!(refetch = true) ⇒ Object

Implement generic Theme interface



103
104
105
106
107
108
# File 'lib/bootic_cli/themes/api_theme.rb', line 103

def reload!(refetch = true)
  @templates = nil
  @assets = nil
  @theme = theme.self if refetch
  self
end

#remove_asset(file_name) ⇒ Object



150
151
152
153
154
155
156
157
158
# File 'lib/bootic_cli/themes/api_theme.rb', line 150

def remove_asset(file_name)
  asset = theme.assets.find { |t| t.file_name == file_name }
  if asset and asset.can?(:delete_theme_asset)
    res = asset.delete_theme_asset
    res.status.to_i < 300
  else
    puts "Cannot delete asset: #{file_name}"
  end
end

#remove_template(file_name) ⇒ Object



133
134
135
136
137
138
139
140
141
# File 'lib/bootic_cli/themes/api_theme.rb', line 133

def remove_template(file_name)
  tpl = theme.templates.find { |t| t.file_name == file_name }
  if tpl && tpl.can?(:delete_template)
    res = tpl.delete_template
    res.status.to_i < 300
  else
    puts "Cannot delete #{file_name}"
  end
end

#templatesObject



110
111
112
# File 'lib/bootic_cli/themes/api_theme.rb', line 110

def templates
  @templates ||= theme.templates.map { |t| ItemWithTime.new(t) }
end