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 +4 -4
- data/CHANGELOG.md +1 -1
- data/config/codes_alt.csv +5 -0
- data/lib/leagues/league_codes.rb +8 -0
- data/lib/leagues/leagueset.rb +104 -28
- data/lib/leagues/timezones.rb +5 -2
- data/lib/leagues/version.rb +1 -1
- data/lib/leagues.rb +10 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 51f3a37d90c06b3b6fb5237d9a83b8f01d045be5f07f8854ece891e58c1d58ae
|
4
|
+
data.tar.gz: bb4ce11c4cba0efb9718516428eac848089a275ab12bfab1e951c77d5b89d93f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b36074ee4903210002c28b7e440464ac95c5415dc76dbd71081d6966a665d81a67bd8915cc2d4d1d9f15a4af7a7f063aa0419076950d7b7b5341747cc32cfdd
|
7
|
+
data.tar.gz: 96b993022a5b071393cb569c49ec99b0c57d0e30e7cf7a54858f3570c79ccd38f807bb8522a222aec94b7301a2ec13a6c137a3caa02358fe575a71cc2d56e13b
|
data/CHANGELOG.md
CHANGED
data/config/codes_alt.csv
CHANGED
data/lib/leagues/league_codes.rb
CHANGED
@@ -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
|
|
data/lib/leagues/leagueset.rb
CHANGED
@@ -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
|
-
|
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
|
-
|
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
|
-
|
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
|
80
|
-
|
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?
|
data/lib/leagues/timezones.rb
CHANGED
@@ -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.
|
data/lib/leagues/version.rb
CHANGED
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
|
32
|
-
|
33
|
-
|
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.
|
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-
|
11
|
+
date: 2025-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tzinfo
|