Class: Fontist::CLI
Defined Under Namespace
Modules: ClassOptions
Constant Summary
collapse
- STATUS_SUCCESS =
0
- STATUS_UNKNOWN_ERROR =
1
- STATUS_NON_SUPPORTED_FONT_ERROR =
2
- STATUS_MISSING_FONT_ERROR =
3
- STATUS_LICENSING_ERROR =
4
- STATUS_MANIFEST_COULD_NOT_BE_FOUND_ERROR =
5
- STATUS_MANIFEST_COULD_NOT_BE_READ_ERROR =
6
- STATUS_FONT_INDEX_CORRUPTED =
7
- STATUS_REPO_NOT_FOUND =
8
- STATUS_MAIN_REPO_NOT_FOUND =
9
- STATUS_REPO_COULD_NOT_BE_UPDATED =
10
- STATUS_MANUAL_FONT_ERROR =
11
- STATUS_SIZE_LIMIT_ERROR =
12
- STATUS_FORMULA_NOT_FOUND =
13
- STATUS_FONTCONFIG_NOT_FOUND =
14
- STATUS_FONTCONFIG_FILE_NOT_FOUND =
15
- STATUS_FONTIST_VERSION_ERROR =
15
- STATUS_INVALID_CONFIG_ATTRIBUTE =
16
- ERROR_TO_STATUS =
{
Fontist::Errors::UnsupportedFontError => [STATUS_NON_SUPPORTED_FONT_ERROR],
Fontist::Errors::MissingFontError => [STATUS_MISSING_FONT_ERROR],
Fontist::Errors::SizeLimitError => [
STATUS_SIZE_LIMIT_ERROR,
:append,
"Please specify higher `--size-limit`, or use the `--newest` or " \
"`--smallest` options.",
],
Fontist::Errors::ManualFontError => [STATUS_MANUAL_FONT_ERROR],
Fontist::Errors::LicensingError => [STATUS_LICENSING_ERROR],
Fontist::Errors::ManifestCouldNotBeFoundError => [STATUS_MANIFEST_COULD_NOT_BE_FOUND_ERROR,
:overwrite,
"Manifest could not be found."],
Fontist::Errors::ManifestCouldNotBeReadError => [STATUS_MANIFEST_COULD_NOT_BE_READ_ERROR,
:overwrite,
"Manifest could not be read."],
Fontist::Errors::FontIndexCorrupted => [STATUS_FONT_INDEX_CORRUPTED],
Fontist::Errors::RepoNotFoundError => [STATUS_REPO_NOT_FOUND],
Fontist::Errors::MainRepoNotFoundError => [STATUS_MAIN_REPO_NOT_FOUND],
Fontist::Errors::FormulaNotFoundError => [STATUS_FORMULA_NOT_FOUND],
Fontist::Errors::FontconfigNotFoundError => [STATUS_FONTCONFIG_NOT_FOUND],
Fontist::Errors::FontconfigFileNotFoundError =>
[STATUS_FONTCONFIG_FILE_NOT_FOUND],
Fontist::Errors::FontistVersionError => [STATUS_FONTIST_VERSION_ERROR],
}.freeze
Class Method Summary
collapse
Instance Method Summary
collapse
extended, start
#handle_class_options, included, #log_level
Class Method Details
.exit_on_failure? ⇒ Boolean
56
57
58
|
# File 'lib/fontist/cli.rb', line 56
def self.exit_on_failure?
false
end
|
Instance Method Details
342
343
344
345
346
347
|
# File 'lib/fontist/cli.rb', line 342
def create_formula(url)
handle_class_options(options)
name = Fontist::Import::CreateFormula.new(url, options).call
Fontist.ui.say("#{name} formula has been successfully created")
success
end
|
#find ⇒ Object
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
|
# File 'lib/fontist/cli.rb', line 255
def find
handle_class_options(options)
require_relative "font_finder"
require_relative "format_spec"
finder = FontFinder.new(
format_spec: FormatSpec.new(format: options[:format]),
category: options[:category],
)
results = if options[:variable]
finder.variable_fonts
elsif options[:axes]
axes = options[:axes].split(",").map(&:strip)
finder.by_axes(axes)
elsif options[:category]
finder.by_category(options[:category])
else
error("Please specify --axes, --variable, or --category",
STATUS_UNKNOWN_ERROR)
return
end
if options[:json]
Fontist.ui.say(JSON.pretty_generate(results.map(&:to_h)))
else
print_find_results(results)
end
success
rescue Fontist::Errors::GeneralError => e
handle_error(e)
end
|
#install(*fonts) ⇒ Object
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
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
203
204
205
206
|
# File 'lib/fontist/cli.rb', line 144
def install(*fonts)
handle_class_options(options)
if fonts.empty?
return error("Please specify at least one font to install.",
STATUS_UNKNOWN_ERROR)
end
if fonts.size == 1
confirmation = options[:accept_all_licenses] ? "yes" : "no"
install_options = options.to_h.transform_keys(&:to_sym)
install_options[:confirmation] = confirmation
if options[:location]
install_options[:location] =
options[:location]&.to_sym
end
Fontist::Font.install(fonts.first, install_options)
return success
end
confirmation = options[:accept_all_licenses] ? "yes" : "no"
install_options = options.to_h.transform_keys(&:to_sym)
install_options[:confirmation] = confirmation
if options[:location]
install_options[:location] =
options[:location]&.to_sym
end
result = Fontist::Font.install_many(fonts, install_options)
if result[:successes].any?
Fontist.ui.success("Successfully installed #{result[:successes].size} font(s): #{result[:successes].join(', ')}")
end
if result[:failures].any?
Fontist.ui.error("Failed to install #{result[:failures].size} font(s):")
result[:failures].each do |failure|
_, mode, message = ERROR_TO_STATUS[failure[:error].class]
text = if message && mode == :overwrite
message
elsif message
"#{failure[:error].message} #{message}"
else
failure[:error].message
end
Fontist.ui.error(" - #{failure[:font]}: #{text}")
end
end
return STATUS_SUCCESS if result[:failures].empty?
first_error = result[:failures].first[:error]
status, = ERROR_TO_STATUS[first_error.class]
status || STATUS_UNKNOWN_ERROR
rescue Fontist::Errors::GeneralError => e
handle_error(e)
end
|
#list(font = nil) ⇒ Object
235
236
237
238
239
240
241
242
|
# File 'lib/fontist/cli.rb', line 235
def list(font = nil)
handle_class_options(options)
formulas = Fontist::Font.list(font)
print_list(formulas)
success
rescue Fontist::Errors::GeneralError => e
handle_error(e)
end
|
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
|
# File 'lib/fontist/cli.rb', line 306
def migrate_formulas(input, output = nil)
handle_class_options(options)
require_relative "import/v4_to_v5_migrator"
migrator = Fontist::Import::V4ToV5Migrator.new(input, output,
verbose: options[:verbose],
dry_run: options[:dry_run])
results = migrator.migrate_all
if results[:failed].positive?
Fontist.ui.error("Migration completed with #{results[:failed]} error(s)")
STATUS_UNKNOWN_ERROR
else
Fontist.ui.success("Migrated #{results[:migrated]} formula(s), " \
"skipped #{results[:skipped]} already v5 formula(s)")
success
end
rescue Fontist::Errors::GeneralError => e
handle_error(e)
end
|
#status(font = nil) ⇒ Object
#uninstall(font) ⇒ Object
209
210
211
212
213
214
215
216
217
|
# File 'lib/fontist/cli.rb', line 209
def uninstall(font)
handle_class_options(options)
fonts_paths = Fontist::Font.uninstall(font)
Fontist.ui.success("These fonts are removed:")
Fontist.ui.success(fonts_paths.join("\n"))
success
rescue Fontist::Errors::GeneralError => e
handle_error(e)
end
|