leagues 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c3e154b72da0c4677b811ac922b37fee501f25cb28aa57dbbba608a0bd2787ff
4
- data.tar.gz: be12dab4eceae8bcf4f375baf1680917257b1c0ccd1849004eb9357be0200b33
3
+ metadata.gz: 51f3a37d90c06b3b6fb5237d9a83b8f01d045be5f07f8854ece891e58c1d58ae
4
+ data.tar.gz: bb4ce11c4cba0efb9718516428eac848089a275ab12bfab1e951c77d5b89d93f
5
5
  SHA512:
6
- metadata.gz: 20fd53b2c9c5bbeed88ba3148cb7b6e2f92af0fb8aa6c0c5e6e9e6b8e648ba44b16dffbe33f09eb7b5cab331b258d2e94f4aeed5727cb6c5b184847208add4a9
7
- data.tar.gz: afcc3bed4307de477823689ba1d255e63815cddaa7ff5062dac7ca2a2a07cc21b049bc8c92ffe4a7a0694cfd122fd9eff8e06a308e122d6e8db704f6631f8a92
6
+ metadata.gz: 1b36074ee4903210002c28b7e440464ac95c5415dc76dbd71081d6966a665d81a67bd8915cc2d4d1d9f15a4af7a7f063aa0419076950d7b7b5341747cc32cfdd
7
+ data.tar.gz: 96b993022a5b071393cb569c49ec99b0c57d0e30e7cf7a54858f3570c79ccd38f807bb8522a222aec94b7301a2ec13a6c137a3caa02358fe575a71cc2d56e13b
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- ### 0.1.0
1
+ ### 0.1.1
2
2
 
3
3
  ### 0.0.1 / 2025-04-01
4
4
 
data/config/codes_alt.csv CHANGED
@@ -8,6 +8,11 @@ code,alt,start_season,end_season,comments
8
8
  ##
9
9
 
10
10
  at.1, aut.bl,,, ## Bundesliga
11
+ ### todo/fix - allow multiple alt codes at once e.g.
12
+ ## aut.bl | ö.1 etc.
13
+ at.1, ö.1,,,
14
+
15
+
11
16
  at.2, aut.2,,,
12
17
  at.3.o, aut.rlo,,, ## Regionalliga Ost
13
18
 
@@ -6,6 +6,7 @@
6
6
  module SportDb
7
7
  class LeagueCodes
8
8
 
9
+
9
10
  ####
10
11
  ## (public) api
11
12
  def self.valid?( code )
@@ -135,6 +136,13 @@ def find_by( code:, season: )
135
136
  end
136
137
  end
137
138
 
139
+
140
+ if rec ## (quick hack for now) auto-add timezone
141
+ ## use canoncial (league) code
142
+ rec['tz'] = find_zone!( league: rec['code'], season: season )
143
+ end
144
+
145
+
138
146
  rec ## return nil if no code record/item found
139
147
  end
140
148
 
@@ -1,5 +1,4 @@
1
1
 
2
-
3
2
  ##
4
3
  # use/find a better name
5
4
  # League Set, League Sheet,
@@ -19,13 +18,43 @@
19
18
  module SportDb
20
19
  class Leagueset
21
20
 
22
- def self.parse_args( args )
21
+
22
+ ## autofiller helper
23
+ ## - simple heuristic to find current (latest) season
24
+ ##
25
+ ## maybe move autofiller to fbup or such - why? why not?
26
+
27
+ def self.autofiller( league_query, source_path: ['.'] )
28
+ [ Season('2024/25'),
29
+ Season('2025')
30
+ ].each do |season|
31
+ league_info = LeagueCodes.find_by( code: league_query, season: season )
32
+ league_code = league_info['code']
33
+
34
+ filename = "#{season.to_path}/#{league_code}.csv"
35
+ path = find_file( filename, path: source_path )
36
+ if path
37
+ return season
38
+ end
39
+ end
40
+ nil ## return nil if not found
41
+ end
42
+
43
+
44
+
45
+
46
+ ###
47
+ ## note - requires autofill (for seasons)
48
+ ## if league querykey without season/empty season
49
+ def self.parse_args( args, autofill: nil )
23
50
  ### split args in datasets with leagues and seasons
51
+ ## e.g. at1 eng1 or
52
+ ## at1 2024/25 br1 2025 etc.
24
53
  datasets = []
25
54
  args.each do |arg|
26
55
  if arg =~ %r{^[0-9/-]+$} ## season
27
56
  if datasets.empty?
28
- puts "!! ERROR - league required before season arg; sorry"
57
+ puts "!! ERROR [leagueset.parse_args] - league required before season arg; sorry"
29
58
  exit 1
30
59
  end
31
60
 
@@ -36,11 +65,12 @@ def self.parse_args( args )
36
65
  datasets << [key, []]
37
66
  end
38
67
  end
39
- new(datasets)
68
+
69
+ new(datasets, autofill: autofill)
40
70
  end
41
71
 
42
72
 
43
- def self.parse( txt )
73
+ def self.parse( txt, autofill: nil )
44
74
  ### split args in datasets with leagues and seasons
45
75
  datasets = []
46
76
  recs = parse_csv( txt )
@@ -69,17 +99,72 @@ def self.parse( txt )
69
99
  end
70
100
  end
71
101
  end
72
- new(datasets)
102
+
103
+ new(datasets, autofill: autofill)
104
+ end
105
+
106
+ def self.read( path, autofill: nil )
107
+ parse( read_text( path ), autofill: autofill )
108
+ end
109
+
110
+
111
+
112
+ def initialize( recs, autofill: nil )
113
+ ### @org_recs = recs ## keep a record of orginal (MUST clone) - why? why not?
114
+
115
+ ##### check for empty seasons
116
+ recs = _autofill( recs, autofill: autofill )
117
+ @recs = _norm( recs )
73
118
  end
74
119
 
75
- def self.read( path ) parse( read_text( path )); end
76
120
 
121
+ def _norm( recs )
122
+ datasets = {}
123
+
124
+ recs.each do |league_query, seasons|
125
+ unless LeagueCodes.valid?( league_query )
126
+ puts "!! ERROR - (leagueset) no league (config) found for code >#{league_query}<; sorry"
127
+ exit 1
128
+ end
129
+
130
+ seasons.each do |season|
131
+ ## check league code config too - why? why not?
132
+ league_info = LeagueCodes.find_by( code: league_query, season: season )
133
+ if league_info.nil?
134
+ puts "!! ERROR - (leagueset) no league config found for code #{league_query} AND season #{season}; sorry"
135
+ exit 1
136
+ end
137
+
138
+ rec = datasets[ league_info['code'] ] ||= []
139
+ rec << season
140
+ end
141
+ end # each record
77
142
 
143
+ datasets.to_a ## convert hash to array
144
+ end
78
145
 
79
- def initialize( recs )
80
- @recs = recs
146
+ def _autofill( datasets, autofill: )
147
+ ##### check for empty seasons
148
+ datasets.each do |league_query, seasons|
149
+ ### try autofill
150
+ if seasons.empty? && autofill.is_a?(Proc)
151
+ season = autofill.call( league_query )
152
+ if season
153
+ ## note - all season as string for autfiller too
154
+ seasons << Season(season)
155
+ end
156
+ end
157
+
158
+ if seasons.empty?
159
+ puts "!! ERROR [leagueset] - empty seasons; autofill found no latest season for #{league_query}; sorry"
160
+ exit 1
161
+ end
162
+ end
81
163
  end
82
164
 
165
+
166
+
167
+
83
168
  def size() @recs.size; end
84
169
 
85
170
  def each( &blk )
@@ -89,10 +174,20 @@ def each( &blk )
89
174
  end
90
175
 
91
176
 
177
+
178
+
179
+
180
+
92
181
  ### use a function for (re)use
93
182
  ### note - may add seasons in place!! (if seasons is empty)
94
183
  ##
95
184
  ## todo/check - change source_path to (simply) path - why? why not?
185
+ ##
186
+ ##
187
+ ## add a flag for allowing empty/auto-fill of seasons - why? why not?
188
+ ## or make it a separate method e.g. complete/fix_seasons or such? - why? why not?
189
+
190
+
96
191
  def validate!( source_path: ['.'] )
97
192
  each do |league_key, seasons|
98
193
 
@@ -101,25 +196,6 @@ def validate!( source_path: ['.'] )
101
196
  exit 1
102
197
  end
103
198
 
104
-
105
- if seasons.empty?
106
- ## simple heuristic to find current season
107
- [ Season( '2024/25'), Season( '2025') ].each do |season|
108
- league_info = LeagueCodes.find_by( code: league_key, season: season )
109
- filename = "#{season.to_path}/#{league_info['code']}.csv"
110
- path = find_file( filename, path: source_path )
111
- if path
112
- seasons << season
113
- break
114
- end
115
- end
116
-
117
- if seasons.empty?
118
- puts "!! ERROR - (leagueset) no latest auto-season via source found for #{league_key}; sorry"
119
- exit 1
120
- end
121
- end
122
-
123
199
  ## check source path too upfront - why? why not?
124
200
  seasons.each do |season|
125
201
  ## check league code config too - why? why not?
@@ -159,11 +159,13 @@ def find_zone( league:, season: )
159
159
  zones
160
160
  end
161
161
 
162
-
162
+ season = Season( season )
163
+ league_code = league.to_s.downcase
164
+
165
+ =begin
163
166
  ###
164
167
  ## map code here - why? why not?
165
168
  ## or (always) require canoncial code???
166
- season = Season( season )
167
169
  league_info = LeagueCodes.find_by( code: league, season: season )
168
170
 
169
171
  league_code = if league_info
@@ -174,6 +176,7 @@ def find_zone( league:, season: )
174
176
  ## or report error in the future - why? why not?
175
177
  league.to_s.downcase
176
178
  end
179
+ =end
177
180
 
178
181
 
179
182
  ## e.g. world+2022, etc.
@@ -4,7 +4,7 @@ module Module
4
4
  module Leagues
5
5
  MAJOR = 0 ## todo: namespace inside version or something - why? why not??
6
6
  MINOR = 1
7
- PATCH = 0
7
+ PATCH = 1
8
8
  VERSION = [MAJOR,MINOR,PATCH].join('.')
9
9
 
10
10
  def self.version
data/lib/leagues.rb CHANGED
@@ -28,13 +28,20 @@ LeagueSet = Leagueset
28
28
  module LeaguesetHelper
29
29
  ###
30
30
  ### note - make read_leagueset & friends public/global by default - why? why not?
31
- def read_leagueset( path ) Leagueset.read( path ); end
32
- def parse_leagueset( txt ) Leagueset.parse( txt ); end
33
- def parse_leagueset_args( args ) Leagueset.parse_args( args ); end
31
+ def read_leagueset( path, autofill: nil )
32
+ Leagueset.read( path, autofill: autofill )
33
+ end
34
+ def parse_leagueset( txt, autofill: nil )
35
+ Leagueset.parse( txt, autofill: autofill )
36
+ end
37
+ def parse_leagueset_args( args, autofill: nil )
38
+ Leagueset.parse_args( args, autofill: autofill )
39
+ end
34
40
  end
35
41
 
36
42
 
37
43
 
44
+
38
45
  module FileHelper
39
46
  def find_file( filename, path: )
40
47
  path.each do |src_dir|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: leagues
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gerald Bauer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-04-01 00:00:00.000000000 Z
11
+ date: 2025-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tzinfo