forked from wikimedia/mediawiki-services-push-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spec.yaml
296 lines (290 loc) · 7.77 KB
/
spec.yaml
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
openapi: 3.0.0
info:
version: 1.0.0
title: push-notifications
description: A service for sending push notification messages
termsOfService: https://wikimediafoundation.org/wiki/Terms_of_Use
contact:
name: the Wikimedia Product Infrastructure team
url: https://www.mediawiki.org/wiki/Wikimedia_Product_Infrastructure_team/Push_Notifications_Infrastructure
license:
name: Apache2
url: http://www.apache.org/licenses/LICENSE-2.0
x-default-params:
domain: en.wikipedia.org
paths:
# from routes/root.ts
/robots.txt:
get:
tags:
- Admin
description: Gets robots.txt
responses:
200:
description: Success
default:
description: Error
content:
application/json:
schema:
$ref: '#/components/schemas/problem'
x-amples:
- title: robots.txt check
request: {}
response:
status: 200
/:
get:
tags:
- Admin
description: The root service end-point
responses:
200:
description: Success
default:
description: Error
content:
application/json:
schema:
$ref: '#/components/schemas/problem'
x-amples:
- title: root with no query params
request: {}
response:
status: 404
- title: spec from root
request:
query:
spec: true
response:
status: 200
- title: doc from root
request:
query:
doc: true
response:
status: 200
- title: root with wrong query param
request:
query:
fooo: true
response:
status: 404
# from routes/info.ts
/_info:
get:
tags:
- Admin
description: Gets information about the service
responses:
200:
description: OK
x-amples:
- title: retrieve service info
request: {}
response:
status: 200
headers:
content-type: application/json
body:
name: /.+/
description: /.+/
version: /.+/
home: /.+/
/_info/name:
get:
tags:
- Admin
description: Gets the name of the service
responses:
200:
description: OK
x-amples:
- title: retrieve service name
request: {}
response:
status: 200
headers:
content-type: application/json
body:
name: /.+/
/_info/version:
get:
tags:
- Admin
description: Gets the running version of the service
responses:
200:
description: OK
x-amples:
- title: retrieve service version
request: {}
response:
status: 200
headers:
content-type: application/json
body:
version: /.+/
/_info/home:
get:
tags:
- Admin
description: Redirects to the home page
responses:
301:
description: Redirect
x-amples:
- title: redirect to the home page
request: {}
response:
status: 301
# from routes/v1.ts
/v1/message/fcm:
post:
tags:
- Push notifications
summary: Send a push notification to one or more devices via FCM
description: Sends a push notification request to Firebase Cloud Messaging.
requestBody:
content:
application/json:
schema:
required:
- deviceTokens
- messageType
properties:
deviceTokens:
type: array
description: FCM device tokens identifying the device(s) to which to send the message.
example: [ __REPLACE_ME__ ]
messageType:
type: string
description: The type of message to send to the push vendor.
enum:
- checkEchoV1
dryRun:
type: boolean
description: Set this property to true if the message should not reach the target device.
example: false
required: true
x-amples:
- title: FCM message (dry-run)
request:
body:
deviceTokens: ['x-ample-fcm']
messageType: 'checkEchoV1'
dryRun: true
response:
status: 200
responses:
200:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/success'
404:
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/problem'
504:
description: Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/problem'
default:
description: Error
content:
application/json:
schema:
$ref: '#/components/schemas/problem'
/v1/message/apns:
post:
tags:
- Push notifications
summary: Send a push notification to APNS
description: Sends a push notification request to Apple Push Notification Service.
requestBody:
content:
application/json:
schema:
required:
- deviceToken
- messageType
properties:
deviceTokens:
type: array
description: APNS device tokens identifying the device(s) to which to send the message.
example: [__REPLACE_ME__]
messageType:
type: string
description: The type of message to send to the push vendor.
enum:
- checkEchoV1
topic:
type: string
description: The APNS topic (app bundle ID) to send the notification to.
dryRun:
type: boolean
description: Set this property to true if the message should not reach the target device.
example: false
required: true
x-amples:
- title: APNS message (dry-run)
request:
body:
deviceTokens: ['x-ample-apns']
messageType: 'checkEchoV1'
dryRun: true
response:
status: 200
responses:
200:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/success'
404:
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/problem'
504:
description: Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/problem'
default:
description: Error
content:
application/json:
schema:
$ref: '#/components/schemas/problem'
components:
schemas:
success:
properties:
{}
# A https://tools.ietf.org/html/draft-nottingham-http-problem
problem:
required:
- type
properties:
status:
type: integer
type:
type: string
title:
type: string
detail:
type: string
method:
type: string
uri:
type: string