summary refs log tree commit diff
path: root/docs/client-server/swagger_matrix/presence
blob: d52ce2164a52ca6640f166d94562dd53f5630903 (plain) (blame)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
  "apiVersion": "1.0.0",
  "swaggerVersion": "1.2",
  "basePath": "http://localhost:8080/_matrix/client/api/v1",
  "resourcePath": "/presence",
  "produces": [
    "application/json"
  ],
  "consumes": [
    "application/json"
  ],
  "apis": [
    {
      "path": "/presence/{userId}/status",
      "operations": [
        {
          "method": "PUT",
          "summary": "Update this user's presence state.",
          "notes": "This can only be done by the logged in user.",
          "type": "void",
          "nickname": "update_presence",
          "parameters": [
            {
              "name": "body",
              "description": "The new presence state",
              "required": true,
              "type": "PresenceUpdate",
              "paramType": "body"
            },
            {
              "name": "userId",
              "description": "The user whose presence to set.",
              "required": true,
              "type": "string",
              "paramType": "path"
            }
          ]
        },
        {
          "method": "GET",
          "summary": "Get this user's presence state.",
          "notes": "Get this user's presence state.",
          "type": "PresenceUpdate",
          "nickname": "get_presence",
          "parameters": [
            {
              "name": "userId",
              "description": "The user whose presence to get.",
              "required": true,
              "type": "string",
              "paramType": "path"
            }
          ]
        }
      ]
    },
    {
      "path": "/presence/list/{userId}",
      "operations": [
        {
          "method": "GET",
          "summary": "Retrieve a list of presences for all of this user's friends.",
          "notes": "",
          "type": "array",
          "items": {
            "$ref": "Presence"
          },
          "nickname": "get_presence_list",
          "parameters": [
            {
              "name": "userId",
              "description": "The user whose presence list to get.",
              "required": true,
              "type": "string",
              "paramType": "path"
            }
          ]
        },
        {
          "method": "POST",
          "summary": "Add or remove users from this presence list.",
          "notes": "Add or remove users from this presence list.",
          "type": "void",
          "nickname": "modify_presence_list",
          "parameters": [
            {
              "name": "userId",
              "description": "The user whose presence list is being modified.",
              "required": true,
              "type": "string",
              "paramType": "path"
            },
            {
              "name": "body",
              "description": "The modifications to make to this presence list.",
              "required": true,
              "type": "PresenceListModifications",
              "paramType": "body"
            }
          ]
        }
      ]
    }
  ],
  "models": {
    "PresenceUpdate": {
      "id": "PresenceUpdate",
      "properties": {
        "state": {
          "type": "string",
          "description": "Enum: The presence state.",
          "enum": [
            "offline",
            "unavailable",
            "online",
            "free_for_chat"
          ]
        },
        "status_msg": {
          "type": "string",
          "description": "The user-defined message associated with this presence state."
        }
      },
      "subTypes": [
        "Presence"
      ]
    },
    "Presence": {
      "id": "Presence",
      "properties": {
        "mtime_age": {
          "type": "integer",
          "format": "int64",
          "description": "The last time this user's presence state changed, in milliseconds."
        },
        "user_id": {
          "type": "string",
          "description": "The fully qualified user ID"
        }
      }
    },
    "PresenceListModifications": {
      "id": "PresenceListModifications",
      "properties": {
        "invite": {
          "type": "array",
          "description": "A list of user IDs to add to the list.",
          "items": {
            "type": "string",
            "description": "A fully qualified user ID."
          }
        },
        "drop": {
          "type": "array",
          "description": "A list of user IDs to remove from the list.",
          "items": {
            "type": "string",
            "description": "A fully qualified user ID."
          }
        }
      }
    }
  }
}