WebAPI

From UFO:AI
Revision as of 21:00, 1 January 2014 by Mattn (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

General

The game allows players to share their data with other players or just backup their savegames and teams. For this to work, they need a forum account and log into it from within the game.

Webserver

The current implementation of the server side is written in php and is located in Template:Path.

Authentication

We are using a SimpleMachines API for doing the authentication against the forum user credentials.

Client

The client side code is located in Template:Path. There are some console commands available for the file management. They are all prefixed by web_ (as well as the available cvars). Available commands are:

  • web_uploadcgame
  • web_deletecgame
  • web_downloadcgame
  • web_listcgame

Their usage should be printed to the game console when they are issued without any parameters.

Every user could theoretically run it's own webserver with the webapi installed and just redirect the webapi calls by changing the cvars:

  • web_cgamedownloadurl
  • web_cgamelisturl
  • web_cgamedeleteurl
  • web_cgameuploadurl

These cvars can contain placeholders for the current selected cgame, the userid, the category (for example savegame or team) and the file. Available placeholders:

  • $cgame$
  • $userid$
  • $category$
  • $file$

An example download url could be:

http://myserver.com/cgame/$cgame$/$userid$/$category$/$file$

The corresponding upload url could be:

http://myserver.com/api/cgameupload.php?cgame=$cgame$&category=$category$