Skip to content

Determines which dice to use for a given fixture within Logactaesque

Notifications You must be signed in to change notification settings

logactaesque/dice-resolver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Logactaesque Dice Resolver

This service resolves which dice are to be employed when playing a Logactaesque match fixture. The dice it returns are aligned with dice rolled as part of the the Logactaesque Dice Roller Service

The application is a Spring Boot Java application. To run locally, clone the repository, navigate into the directory and then:

# run the application on port 8080
mvn spring-boot:run &

The service presently holds a single endpoint called resolve, hence a GET on:

localhost:8080/resolve 

with a JSON payload of:

{"homeTeam":"Liverpool", "awayTeam":"West Bromwich Albion"}

will return:

{"homeTeam":"Liverpool", "awayTeam":"West Bromwich Albion", "homeDice":"BLUE", "awayDice":"RED"}

Hence for a given match, the blue dice will be used to determine home goals, and red for away. If a home team and away team name are supplied, it will (for the moment) always return the above JSON with a response code of 200, however in the near future the resolver will have additional logic to allow dice to be selected based upon:

  • Competition
  • Recent form
  • Number of points between teams (for league matches)

If either team is missing in the request, then the response code is 400 and you will see something akin to the following error message:

{"error":"Missing away team"}

About

Determines which dice to use for a given fixture within Logactaesque

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages