aboutsummaryrefslogtreecommitdiff
path: root/README.adoc
blob: c6d9ba25f9f16676f54256755813fab8d81d5883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
= Assetto Corsa Content Manage Update Server

This is a small project to act as https://github.com/ac-custom-shaders-patch/acc-extension-config/wiki/Unrelated-%E2%80%93-About-content-auto-updates-system-(CUP)[CUP] Server that provides automatic update information for Content Manager.

== API
=== GET /
Gives a list of all available cars, tracks, etc. mapped to their version.
The structure of the API is the same for all types, so this doc will be generic.

  {
    "car": {
      "car_name": "1.0"
    },
    "track": {}
    "luaapp": {}
    "app": {}
    "filter": {}
  }

=== GET /<type>/<name>
  {
    "name": "",
    "author": "",
    "informationUrl": "",
    "version": "1.0",
    "active": true,
    "cleanInstallation": false
  }

=== GET /<type>/<name>/get
  HTTP 302 <download url>

== Storage

Data is stored in a single json file:

  {
    "car": {
      "<name>": {
        "name": "",
        "author": "",
        "informationUrl": "",
        "version": "1.0",
        "active": true,
        "cleanInstallation": false,
        "downloadUrl": ""
      }
    }
    "track": {}
    "luaapp": {}
    "app": {}
    "filter": {}
  }