Class: Uniword::CLI
- Inherits:
-
Thor
- Object
- Thor
- Uniword::CLI
- Includes:
- CLIHelpers
- Defined in:
- lib/uniword/cli/main.rb
Overview
Command-line interface for Uniword.
Provides commands for document conversion, inspection, validation, building, checking, batch processing, metadata, and verification.
Subcommands:
- theme → ThemeCLI
- styleset → StyleSetCLI
- resources → ResourcesCLI
Instance Method Summary collapse
- #batch(pattern, output_dir) ⇒ Object
- #build(template_path, output_path) ⇒ Object
- #check(path) ⇒ Object
- #convert(input_path, output_path) ⇒ Object
- #info(path) ⇒ Object
- #metadata(path) ⇒ Object
- #validate(path) ⇒ Object
- #verify(path) ⇒ Object
- #version ⇒ Object
Methods included from CLIHelpers
Instance Method Details
#batch(pattern, output_dir) ⇒ Object
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
# File 'lib/uniword/cli/main.rb', line 225 def batch(pattern, output_dir) require "fileutils" FileUtils.mkdir_p(output_dir) files = Dir.glob(pattern) if files.empty? say("No files found matching '#{pattern}'", :yellow) return end say("Processing #{files.count} files...", :green) if [:verbose] success = 0 errors = [] files.each do |input_path| basename = File.basename(input_path, ".*") ext = [:format] == "mhtml" ? ".mhtml" : ".docx" output_path = File.join(output_dir, "#{basename}#{ext}") begin doc = DocumentFactory.from_file(input_path) doc.save(output_path, format: [:format].to_sym) say(" #{File.basename(input_path)} -> #{File.basename(output_path)}") if [:verbose] success += 1 rescue StandardError => e errors << "#{File.basename(input_path)}: #{e.}" if [:verbose] say(" Error: #{File.basename(input_path)}: #{e.}", :red) end end end say("\nBatch complete: #{success} converted, #{errors.count} errors", :green) return if errors.empty? say("Errors:", :red) errors.each { |e| say(" - #{e}", :red) } rescue StandardError => e say "Error: #{e.}", :red exit 1 end |
#build(template_path, output_path) ⇒ Object
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
# File 'lib/uniword/cli/main.rb', line 142 def build(template_path, output_path) unless File.exist?(template_path) say("Template not found: #{template_path}", :red) exit 1 end template = Uniword::Template::Template.load(template_path) if [:verbose] say("Loaded template: #{template_path}", :cyan) say(" Markers found: #{template.markers.count}") end data = load_build_data document = template.render(data) document.save(output_path) say("Built document: #{output_path}", :green) rescue Uniword::Error => e handle_error(e) rescue StandardError => e handle_error(e, verbose: [:verbose]) end |
#check(path) ⇒ Object
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 207 208 209 210 |
# File 'lib/uniword/cli/main.rb', line 180 def check(path) doc = load_document(path) check_type = [:type] reports = {} if %w[all quality].include?(check_type) checker = Quality::DocumentChecker.new reports[:quality] = checker.check(doc) end if %w[all accessibility].include?(check_type) checker = Accessibility::AccessibilityChecker.new reports[:accessibility] = checker.check(doc) end if [:json] require "json" output = reports.transform_values do |r| { valid: r.valid?, issues: r.is_a?(Uniword::Quality::CheckReport) ? r.issues.count : 0 } end puts JSON.pretty_generate(output) else display_check_reports(reports) end rescue Uniword::Error => e handle_error(e) rescue StandardError => e handle_error(e) end |
#convert(input_path, output_path) ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/uniword/cli/main.rb', line 35 def convert(input_path, output_path) from_format = [:from]&.to_sym || :auto to_format = [:to]&.to_sym || :auto if [:verbose] say "Converting #{input_path} to #{output_path}...", :green end doc = DocumentFactory.from_file(input_path, format: from_format) if [:verbose] say " Loaded document:", :cyan say " Paragraphs: #{doc.paragraphs.count}" say " Tables: #{doc.tables.count}" say " Styles: #{doc.styles_configuration&.styles&.count || 0}" end doc.save(output_path, format: to_format) say "Conversion complete!", :green if [:verbose] rescue Uniword::Error => e handle_error(e) rescue StandardError => e handle_error(e, verbose: [:verbose]) end |
#info(path) ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/uniword/cli/main.rb', line 71 def info(path) say "Analyzing #{path}...", :green detector = ::Uniword::FormatDetector.new format = detector.detect(path) say "\nFormat: #{format.to_s.upcase}", :cyan doc = load_document(path) say "\nDocument Statistics:", :cyan say " Paragraphs: #{doc.paragraphs.count}" say " Tables: #{doc.tables.count}" say " Text length: #{doc.text.length} characters" say " Styles: #{doc.styles_configuration.styles.count}" if doc.styles_configuration&.styles&.any? display_verbose_info(doc) if [:verbose] say "\nAnalysis complete!", :green rescue Uniword::Error => e handle_error(e) rescue StandardError => e handle_error(e) end |
#metadata(path) ⇒ Object
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'lib/uniword/cli/main.rb', line 287 def (path) doc = load_document(path) cp = doc.core_properties updated = (cp) if updated output_path = [:output] unless output_path say("Error: --output is required when setting metadata", :red) exit 1 end doc.save(output_path) say("Metadata updated and saved to #{output_path}", :green) return end (cp) rescue Uniword::Error => e handle_error(e) rescue StandardError => e handle_error(e) end |
#validate(path) ⇒ Object
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/uniword/cli/main.rb', line 104 def validate(path) say "Validating #{path}...", :green doc = load_document(path) say "File format is valid", :green if doc.valid? say "Document structure is valid", :green else say "Document has structural issues", :yellow end if doc.paragraphs.any? || doc.tables.any? say "Document contains content", :green else say "Document appears to be empty", :yellow end display_detailed_validation(doc) if [:verbose] say "\nValidation complete!", :green rescue Uniword::Error => e handle_error(e) rescue StandardError => e handle_error(e) end |
#verify(path) ⇒ Object
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 |
# File 'lib/uniword/cli/main.rb', line 330 def verify(path) unless File.exist?(path) say(Rainbow(" File not found: #{path}").red.bright) exit 1 end orchestrator = Uniword::Validation::VerifyOrchestrator.new( xsd_validation: [:xsd], ) report = orchestrator.verify(path) if [:json] puts report.to_json elsif [:yaml] require "yaml" puts YAML.dump(JSON.parse(report.to_json)) else formatter = Uniword::Validation::Report::TerminalFormatter.new puts formatter.format(report, verbose: [:verbose]) end exit report.valid ? 0 : 1 rescue StandardError => e say(Rainbow(" Error: #{e.}").red.bright) exit 1 end |