Class: Oddb2xml::MedregbmExtractor

Inherits:
Extractor
  • Object
show all
Defined in:
lib/oddb2xml/extractor.rb

Instance Attribute Summary

Attributes inherited from Extractor

#xml

Instance Method Summary collapse

Constructor Details

#initialize(str, type) ⇒ MedregbmExtractor

Returns a new instance of MedregbmExtractor.



483
484
485
486
# File 'lib/oddb2xml/extractor.rb', line 483

def initialize(str, type)
  @io = StringIO.new(str)
  @type = type
end

Instance Method Details

#to_arryObject



488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
# File 'lib/oddb2xml/extractor.rb', line 488

def to_arry
  data = []
  case @type
  when :company
    while (line = @io.gets)
      row = line.chomp.split("\t")
      next if /^GLN/.match?(row[0])
      data << {
        data_origin: "medreg",
        gln: row[0].to_s.gsub(/[^0-9]/, ""), #=> GLN Betrieb
        name_1: row[1].to_s, #=> Betriebsname 1
        name_2: row[2].to_s, #=> Betriebsname 2
        address: row[3].to_s, #=> Strasse
        number: row[4].to_s, #=> Nummer
        post: row[5].to_s, #=> PLZ
        place: row[6].to_s, #=> Ort
        region: row[7].to_s, #=> Bewilligungskanton
        country: row[8].to_s, #=> Land
        type: row[9].to_s, #=> Betriebstyp
        authorization: row[10].to_s #=> BTM Berechtigung
      }
    end
  when :person
    while (line = @io.gets)
      row = line.chomp.split("\t")
      next if /^GLN/.match?(row[0])
      data << {
        data_origin: "medreg",
        gln: row[0].to_s.gsub(/[^0-9]/, ""), #=> GLN Person
        last_name: row[1].to_s, #=> Name
        first_name: row[2].to_s, #=> Vorname
        post: row[3].to_s, #=> PLZ
        place: row[4].to_s, #=> Ort
        region: row[5].to_s, #=> Bewilligungskanton
        country: row[6].to_s, #=> Land
        license: row[7].to_s, #=> Bewilligung Selbstdispensation
        certificate: row[8].to_s, #=> Diplom
        authorization: row[9].to_s #=> BTM Berechtigung
      }
    end
  end
  data
end