mondaynightpinball / main

Main website for MNP
GNU General Public License v3.0
3 stars 8 forks source link

Player search #6

Open geoffsimons opened 6 years ago

geoffsimons commented 6 years ago

When adding subs to lineups, it would be nice to have a dynamic player search that would color code suggested results based on ratings points, or if they are a roster player.

geoffsimons commented 6 years ago

Removing from Opening Night milestone, as there is a link to Adcock's player search page. It's not ideal to rely on this external site for such an important part of the site, but we should get API access to that service at some point, which will allow for more direct integration (for instance, in a lineup editor).

geoffsimons commented 6 years ago

Example API call to fetch player info:

http://pinballstats.info/search/iprsearch.pl?json=dave%20stewart

With response:

{
   "IFPA" : {
      "54" : "Dave Stewart"
   },
   "players" : {
      "Dave Stewart" : {
         "IFPA_ID" : "54",
         "IFPA_RANK" : "33",
         "IFPA_dateupdated" : "2018-02-07",
         "IPR" : 6,
         "MP_LB" : 1676,
         "MP_RD" : 31,
         "MP_dateupdated" : "2018-01-30"
      }
   },
   "thresholds" : {
      "IFPA21" : 5000,
      "IFPA3" : 2500,
      "IFPA4" : 1000,
      "IFPA5" : 500,
      "IFPA6" : 150,
      "MP21" : 1251,
      "MP3" : 1346,
      "MP4" : 1432,
      "MP5" : 1497,
      "MP6" : 1591
   }
}