mirror of
https://github.com/internetee/registry.git
synced 2025-06-07 13:15:40 +02:00
Rename util class, add first usage
This commit is contained in:
parent
45dfa57529
commit
a0d0ce3e00
5 changed files with 33 additions and 22 deletions
|
@ -1,48 +0,0 @@
|
|||
module Xsd
|
||||
class Util < ApplicationService
|
||||
SCHEMA_PATH = 'lib/schemas/'.freeze
|
||||
|
||||
attr_reader :xsd_schemas, :for_prefix
|
||||
|
||||
def initialize(params)
|
||||
schema_path = params.fetch(:schema_path, SCHEMA_PATH)
|
||||
@for_prefix = params.fetch(:for_prefix)
|
||||
@xsd_schemas = Dir.entries(schema_path).select { |f| File.file? File.join(schema_path, f) }
|
||||
end
|
||||
|
||||
def call
|
||||
latest(for_prefix)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def latest(prefix)
|
||||
schemas_by_name[prefix].last
|
||||
end
|
||||
|
||||
def basename(filename)
|
||||
File.basename(filename, '.xsd')
|
||||
end
|
||||
|
||||
def prefix(filename)
|
||||
regex = /([a-zA-Z]+-?[a-zA-Z]+)/
|
||||
|
||||
basename(filename).match(regex)[0]
|
||||
end
|
||||
|
||||
def prefixes
|
||||
xsd_schemas.map { |filename| prefix(filename) }.uniq
|
||||
end
|
||||
|
||||
def schemas_by_name
|
||||
prefixes.each_with_object({}) do |prefix, hash|
|
||||
hash[prefix] = xsd_schemas.select { |filename| prefix_check(prefix, filename) }.uniq.sort
|
||||
end
|
||||
end
|
||||
|
||||
def prefix_check(prefix, filename)
|
||||
version_regex = /\-\d+\S\d+/
|
||||
(filename.include? prefix) && (filename.sub(prefix, '')[0, 4] =~ version_regex)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue