Class: SportDb::NationalTeamSquadReader

Inherits:
Object
  • Object
show all
Includes:
LogUtils::Logging, FixtureHelpers, Model, TextUtils::ValueHelper
Defined in:
lib/sportdb/readers/squad_national_team.rb

Overview

squad/roster reader for national teams for now

Constant Summary

Constants included from Model

Model::City, Model::Continent, Model::Country, Model::Person, Model::Prop, Model::State

Class Method Summary collapse

Instance Method Summary collapse

Methods included from FixtureHelpers

#cut_off_end_of_line_comment!, #find_date!, #find_game_pos!, #find_ground!, #find_group_title_and_pos!, #find_leading_num!, #find_leading_pos!, #find_nationality!, #find_person!, #find_round_def_title!, #find_round_header_title!, #find_round_header_title2!, #find_round_pos!, #find_rsssf_date!, #find_scores!, #find_team!, #find_team1!, #find_team2!, #find_teams!, #is_goals?, #is_group?, #is_group_def?, #is_knockout_round?, #is_postponed?, #is_round?, #is_round_def?, #map_ground!, #map_person!, #map_team!, #map_teams!, #match_teams!

Constructor Details

#initialize(text, more_attribs = {}) ⇒ NationalTeamSquadReader

Returns a new instance of NationalTeamSquadReader.



44
45
46
47
48
# File 'lib/sportdb/readers/squad_national_team.rb', line 44

def initialize( text, more_attribs={} )
  ## todo/fix: how to add opts={} ???
  @text = text
  @more_attribs = more_attribs
end

Class Method Details

.from_file(path, more_attribs = {}) ⇒ Object



32
33
34
35
36
37
# File 'lib/sportdb/readers/squad_national_team.rb', line 32

def self.from_file( path, more_attribs={} )
  ## note: assume/enfore utf-8 encoding (with or without BOM - byte order mark)
  ## - see textutils/utils.rb
  text = File.read_utf8( path )
  self.from_string( text, more_attribs )
end

.from_string(text, more_attribs = {}) ⇒ Object



39
40
41
# File 'lib/sportdb/readers/squad_national_team.rb', line 39

def self.from_string( text, more_attribs={} )
  NationalTeamSquadReader.new( text, more_attribs )
end

.from_zip(zip_file, entry_path, more_attribs = {}) ⇒ Object



22
23
24
25
26
27
28
29
30
# File 'lib/sportdb/readers/squad_national_team.rb', line 22

def self.from_zip( zip_file, entry_path, more_attribs={} )
  ## get text content from zip
  entry = zip_file.find_entry( entry_path )

  text = entry.get_input_stream().read()
  text = text.force_encoding( Encoding::UTF_8 )

  self.from_string( text, more_attribs )
end

Instance Method Details

#readObject



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/sportdb/readers/squad_national_team.rb', line 51

def read
  ## note:
  #    event_id and team_id required!!

  # event
  @event = Event.find( @more_attribs[:event_id] )
  pp @event

  ## note: use @team - share/use in worker method
  @team = Team.find( @more_attribs[:team_id] )
  pp @team

  ### SportDb.lang.lang = LangChecker.new.analyze( name, include_path )

  reader = LineReader.from_string( @text )


  ##########
  # fix: lookup table for now assumes national team
  #   make it usable for clubs too etc. 
  country = @team.country
  pp country

  logger.info "  persons count for country: #{country.persons.count}"
  @known_persons = TextUtils.build_title_table_for( country.persons )


  read_worker( reader )

  ## Prop.create_from_fixture!( name, path )  
end

#read_worker(reader) ⇒ Object



84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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
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
# File 'lib/sportdb/readers/squad_national_team.rb', line 84

def read_worker( reader )
  ##
  ## fix: use num (optional) for offical jersey number
  #  use pos for internal use only (ordering)

  pos_counter = 999000   # pos counter for undefined players w/o pos

  reader.each_line do |line|
    logger.debug "  line: >#{line}<"

    cut_off_end_of_line_comment!( line )

    pos = find_leading_pos!( line )

    if pos.nil?
      pos_counter+=1       ## e.g. 999001,999002 etc.
      pos = pos_counter
    end

    #####
    #  - for now do NOT map team
    # map_team!( line )
    # team_key = find_team!( line )
    # team = Team.find_by_key!( team_key )

    map_person!( line )
    person_key = find_person!( line )

    logger.debug "  line2: >#{line}<"

    if person_key.nil?
      ## no person match found; try auto-add person
      logger.info "  !! no player match found; try auto-create player"

      buf = line.clone
      # remove (single match) if line starts w/ - (allow spaces)  e.g. | - or |-  note: must start line e.g. anchor ^ used
      buf = buf.sub( /^[ ]*-[ ]*/, '' )
      buf = buf.gsub( /\[[^\]]+\]/, '' )         # remove [POS] or similar
      buf = buf.gsub( /\b(GK|DF|MF|FW)\b/, '' )   # remove position marker - use sub (just single marker?)
      buf = buf.strip   # remove leading and trailing spaces

      ## assume what's left is player name
      logger.info "   player_name >#{buf}<"

      ## fix: add auto flag (for auto-created persons/players)
      ## fix: move title_to_key logic to person model etc.
      person_attribs = {
             key:   TextUtils.title_to_key( buf ),
             title: buf
      }
      logger.info "   using attribs: #{person_attribs.inspect}"

      person = Person.create!( person_attribs )
    else
      person = Person.find_by_key( person_key )

      if person.nil?
        logger.error " !!!!!! no mapping found for player in line >#{line}< for team #{@team.code} - #{@team.title}"
        next   ## skip further processing of line; can NOT save w/o person; continue w/ next record
      end
    end


    ### check if roster record exists
    roster = Roster.find_by_event_id_and_team_id_and_person_id( @event.id, @team.id, person.id )

    if roster.present?
      logger.debug "update Roster #{roster.id}:"
    else
      logger.debug "create Roster:"
      roster = Roster.new
    end

    roster_attribs = {
      pos:       pos,
      person_id: person.id,
      team_id:   @team.id,
      event_id:  @event.id   # NB: reuse/fallthrough from races - make sure load_races goes first (to setup event)
    }

    logger.debug roster_attribs.to_json

    roster.update_attributes!( roster_attribs )
  end # lines.each

end