222 lines
8.4 KiB
Python
222 lines
8.4 KiB
Python
from fastapi import APIRouter, Depends, HTTPException, Query
|
|
from typing import List, Optional, Literal
|
|
import logging
|
|
import pydantic
|
|
|
|
from ..db_engine import db, PitchingStat, Team, Player, Current, model_to_dict, chunked, fn, per_season_weeks
|
|
from ..dependencies import oauth2_scheme, valid_token
|
|
|
|
router = APIRouter(
|
|
prefix='/api/v3/pitchingstats',
|
|
tags=['pitchingstats']
|
|
)
|
|
|
|
|
|
class PitStatModel(pydantic.BaseModel):
|
|
player_id: int
|
|
team_id: int
|
|
ip: Optional[float] = 0.0
|
|
hit: Optional[int] = 0
|
|
run: Optional[int] = 0
|
|
erun: Optional[int] = 0
|
|
so: Optional[int] = 0
|
|
bb: Optional[int] = 0
|
|
hbp: Optional[int] = 0
|
|
wp: Optional[int] = 0
|
|
balk: Optional[int] = 0
|
|
hr: Optional[int] = 0
|
|
gs: Optional[int] = 0
|
|
win: Optional[int] = 0
|
|
loss: Optional[int] = 0
|
|
hold: Optional[int] = 0
|
|
sv: Optional[int] = 0
|
|
bsv: Optional[int] = 0
|
|
ir: Optional[int] = 0
|
|
irs: Optional[int] = 0
|
|
week: int
|
|
game: int
|
|
season: int
|
|
|
|
|
|
class PitStatList(pydantic.BaseModel):
|
|
count: int
|
|
stats: List[PitStatModel]
|
|
|
|
|
|
@router.get('')
|
|
async def get_pitstats(
|
|
season: int, s_type: Optional[str] = 'regular', team_abbrev: list = Query(default=None),
|
|
player_name: list = Query(default=None), player_id: list = Query(default=None),
|
|
week_start: Optional[int] = None, week_end: Optional[int] = None, game_num: list = Query(default=None),
|
|
limit: Optional[int] = None, sort: Optional[str] = None, short_output: Optional[bool] = True):
|
|
if 'post' in s_type.lower():
|
|
all_stats = PitchingStat.post_season(season)
|
|
if all_stats.count() == 0:
|
|
db.close()
|
|
return {'count': 0, 'stats': []}
|
|
elif s_type.lower() in ['combined', 'total', 'all']:
|
|
all_stats = PitchingStat.combined_season(season)
|
|
if all_stats.count() == 0:
|
|
db.close()
|
|
return {'count': 0, 'stats': []}
|
|
else:
|
|
all_stats = PitchingStat.regular_season(season)
|
|
if all_stats.count() == 0:
|
|
db.close()
|
|
return {'count': 0, 'stats': []}
|
|
|
|
if team_abbrev is not None:
|
|
t_query = Team.select().where(Team.abbrev << [x.upper() for x in team_abbrev])
|
|
all_stats = all_stats.where(PitchingStat.team << t_query)
|
|
if player_name is not None or player_id is not None:
|
|
if player_id:
|
|
all_stats = all_stats.where(PitchingStat.player_id << player_id)
|
|
else:
|
|
p_query = Player.select_season(season).where(fn.Lower(Player.name) << [x.lower() for x in player_name])
|
|
all_stats = all_stats.where(PitchingStat.player << p_query)
|
|
if game_num:
|
|
all_stats = all_stats.where(PitchingStat.game == game_num)
|
|
|
|
start = 1
|
|
end = Current.get(Current.season == season).week
|
|
if week_start is not None:
|
|
start = week_start
|
|
if week_end is not None:
|
|
end = min(week_end, end)
|
|
if start > end:
|
|
db.close()
|
|
raise HTTPException(
|
|
status_code=404,
|
|
detail=f'Start week {start} is after end week {end} - cannot pull stats'
|
|
)
|
|
all_stats = all_stats.where(
|
|
(PitchingStat.week >= start) & (PitchingStat.week <= end)
|
|
)
|
|
|
|
if limit:
|
|
all_stats = all_stats.limit(limit)
|
|
if sort:
|
|
if sort == 'newest':
|
|
all_stats = all_stats.order_by(-PitchingStat.week, -PitchingStat.game)
|
|
|
|
return_stats = {
|
|
'count': all_stats.count(),
|
|
'stats': [model_to_dict(x, recurse=not short_output) for x in all_stats]
|
|
}
|
|
|
|
db.close()
|
|
return return_stats
|
|
|
|
|
|
@router.get('/season/{season}')
|
|
async def get_seasonstats(
|
|
season: int, s_type: Literal['regular', 'post', 'total'] = 'regular', team_abbrev: list = Query(default=None),
|
|
team_id: list = Query(default=None), player_name: list = Query(default=None),
|
|
player_id: list = Query(default=None), full_player: Optional[bool] = False):
|
|
weeks = per_season_weeks(season, s_type)
|
|
all_stats = (
|
|
PitchingStat
|
|
.select(PitchingStat.player, fn.SUM(PitchingStat.ip).alias('sum_ip'),
|
|
fn.SUM(PitchingStat.hit).alias('sum_hit'), fn.SUM(PitchingStat.run).alias('sum_run'),
|
|
fn.SUM(PitchingStat.erun).alias('sum_erun'), fn.SUM(PitchingStat.so).alias('sum_so'),
|
|
fn.SUM(PitchingStat.bb).alias('sum_bb'), fn.SUM(PitchingStat.hbp).alias('sum_hbp'),
|
|
fn.SUM(PitchingStat.wp).alias('sum_wp'), fn.SUM(PitchingStat.balk).alias('sum_balk'),
|
|
fn.SUM(PitchingStat.hr).alias('sum_hr'), fn.SUM(PitchingStat.ir).alias('sum_ir'),
|
|
fn.SUM(PitchingStat.win).alias('sum_win'), fn.SUM(PitchingStat.loss).alias('sum_loss'),
|
|
fn.SUM(PitchingStat.hold).alias('sum_hold'), fn.SUM(PitchingStat.sv).alias('sum_sv'),
|
|
fn.SUM(PitchingStat.bsv).alias('sum_bsv'), fn.SUM(PitchingStat.irs).alias('sum_irs'),
|
|
fn.SUM(PitchingStat.gs).alias('sum_gs'))
|
|
.where((PitchingStat.week >= weeks['start']) & (PitchingStat.week <= weeks['end']) &
|
|
(PitchingStat.season == season))
|
|
.order_by(PitchingStat.player)
|
|
.group_by(PitchingStat.player)
|
|
)
|
|
|
|
if team_abbrev is None and team_id is None and player_name is None and player_id is None:
|
|
raise HTTPException(
|
|
status_code=400,
|
|
detail=f'Must include team_id/team_abbrev and/or player_name/player_id'
|
|
)
|
|
|
|
if team_id is not None:
|
|
all_teams = Team.select().where(Team.id << team_id)
|
|
all_stats = all_stats.where(PitchingStat.team << all_teams)
|
|
elif team_abbrev is not None:
|
|
all_teams = Team.select().where(fn.Lower(Team.abbrev) << [x.lower() for x in team_abbrev])
|
|
all_stats = all_stats.where(PitchingStat.team << all_teams)
|
|
|
|
if player_name is not None:
|
|
all_players = Player.select().where(fn.Lower(Player.name) << [x.lower() for x in player_name])
|
|
all_stats = all_stats.where(PitchingStat.player << all_players)
|
|
elif player_id is not None:
|
|
all_players = Player.select().where(Player.id << player_id)
|
|
all_stats = all_stats.where(PitchingStat.player << all_players)
|
|
|
|
return_stats = {
|
|
'count': all_stats.count(),
|
|
'stats': [{
|
|
'player': model_to_dict(x.player, recurse=False) if full_player else x.player_id,
|
|
'ip': x.sum_ip,
|
|
'hit': x.sum_hit,
|
|
'run': x.sum_run,
|
|
'erun': x.sum_erun,
|
|
'so': x.sum_so,
|
|
'bb': x.sum_bb,
|
|
'hbp': x.sum_hbp,
|
|
'wp': x.sum_wp,
|
|
'balk': x.sum_balk,
|
|
'hr': x.sum_hr,
|
|
'ir': x.sum_ir,
|
|
'irs': x.sum_irs,
|
|
'gs': x.sum_gs,
|
|
'win': x.sum_win,
|
|
'loss': x.sum_loss,
|
|
'hold': x.sum_hold,
|
|
'sv': x.sum_sv,
|
|
'bsv': x.sum_bsv
|
|
} for x in all_stats]
|
|
}
|
|
db.close()
|
|
return return_stats
|
|
|
|
|
|
@router.patch('/{stat_id}')
|
|
async def patch_pitstats(stat_id: int, new_stats: PitStatModel, token: str = Depends(oauth2_scheme)):
|
|
if not valid_token(token):
|
|
logging.warning(f'patch_pitstats - Bad Token: {token}')
|
|
raise HTTPException(status_code=401, detail='Unauthorized')
|
|
|
|
if PitchingStat.get_or_none(PitchingStat.id == stat_id) is None:
|
|
raise HTTPException(status_code=404, detail=f'Stat ID {stat_id} not found')
|
|
|
|
PitchingStat.update(**new_stats.dict()).where(PitchingStat.id == stat_id).execute()
|
|
r_stat = model_to_dict(PitchingStat.get_by_id(stat_id))
|
|
db.close()
|
|
return r_stat
|
|
|
|
|
|
@router.post('')
|
|
async def post_pitstats(s_list: PitStatList, token: str = Depends(oauth2_scheme)):
|
|
if not valid_token(token):
|
|
logging.warning(f'post_pitstats - Bad Token: {token}')
|
|
raise HTTPException(status_code=401, detail='Unauthorized')
|
|
|
|
all_stats = []
|
|
|
|
for x in s_list.stats:
|
|
team = Team.get_or_none(Team.id == x.team_id)
|
|
this_player = Player.get_or_none(Player.id == x.player_id)
|
|
if team is None:
|
|
raise HTTPException(status_code=404, detail=f'Team ID {x.team_id} not found')
|
|
if this_player is None:
|
|
raise HTTPException(status_code=404, detail=f'Player ID {x.player_id} not found')
|
|
|
|
all_stats.append(PitchingStat(**x.dict()))
|
|
|
|
with db.atomic():
|
|
for batch in chunked(all_stats, 15):
|
|
PitchingStat.insert_many(batch).on_conflict_replace().execute()
|
|
|
|
db.close()
|
|
return f'Added {len(all_stats)} batting lines'
|