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
64
65
66
|
# File 'lib/fontist/cli.rb', line 64
def self.exit_on_failure?
false
end
|
Instance Method Details
250
251
252
253
254
255
256
|
# File 'lib/fontist/cli.rb', line 250
def create_formula(url)
handle_class_options(options)
require "fontist/import/create_formula"
name = Fontist::Import::CreateFormula.new(url, options).call
Fontist.ui.say("#{name} formula has been successfully created")
success
end
|
#install(*fonts) ⇒ Object
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
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
|
# File 'lib/fontist/cli.rb', line 127
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
218
219
220
221
222
223
224
225
|
# File 'lib/fontist/cli.rb', line 218
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
|
#macos_catalogs ⇒ Object
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
# File 'lib/fontist/cli.rb', line 273
def macos_catalogs
handle_class_options(options)
require_relative "macos/catalog/catalog_manager"
catalogs = Fontist::Macos::Catalog::CatalogManager.available_catalogs
if catalogs.empty?
Fontist.ui.error("No macOS font catalogs found.")
Fontist.ui.say("Expected location: /System/Library/AssetsV2/")
Fontist.ui.say("\nYou can specify a catalog manually with:")
Fontist.ui.say(" fontist import macos --plist path/to/com_apple_MobileAsset_FontX.xml")
return STATUS_UNKNOWN_ERROR
end
Fontist.ui.say("Available macOS Font Catalogs:")
catalogs.each do |catalog_path|
version = Fontist::Macos::Catalog::CatalogManager.detect_version(catalog_path)
size = File.size(catalog_path)
size_str = format_bytes(size)
Fontist.ui.say(" Font#{version}: #{catalog_path} (#{size_str})")
end
Fontist.ui.say("\nTo import a catalog:")
Fontist.ui.say(" fontist import macos --plist <path>")
STATUS_SUCCESS
end
|
#status(font = nil) ⇒ Object
#uninstall(font) ⇒ Object
192
193
194
195
196
197
198
199
200
|
# File 'lib/fontist/cli.rb', line 192
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
|