Class: BooticCli::Themes::APITheme

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

Defined Under Namespace

Classes: EntityErrors, EntityTooLargeError, InvalidRequest, RequestFailed, UnknownResponse

Instance Method Summary collapse

Constructor Details

#initialize(theme) ⇒ APITheme

Returns a new instance of APITheme.



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

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



148
149
150
151
152
153
# File 'lib/bootic_cli/themes/api_theme.rb', line 148

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



123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/bootic_cli/themes/api_theme.rb', line 123

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



119
120
121
# File 'lib/bootic_cli/themes/api_theme.rb', line 119

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

#delete!Object



95
96
97
98
99
100
101
# File 'lib/bootic_cli/themes/api_theme.rb', line 95

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

#dev?Boolean

Returns:

  • (Boolean)


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

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

#pathObject



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

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

#public?Boolean

this is unique to API themes

Returns:

  • (Boolean)


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

def public?
  !dev?
end

#publish(opts = {}) ⇒ Object



88
89
90
91
92
93
# File 'lib/bootic_cli/themes/api_theme.rb', line 88

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



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

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

#remove_asset(file_name) ⇒ Object



155
156
157
158
159
160
161
162
163
# File 'lib/bootic_cli/themes/api_theme.rb', line 155

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



138
139
140
141
142
143
144
145
146
# File 'lib/bootic_cli/themes/api_theme.rb', line 138

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



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

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