-
Notifications
You must be signed in to change notification settings - Fork 11
/
jellyfin_webhook_ntfy.handlebars
507 lines (501 loc) · 22.7 KB
/
jellyfin_webhook_ntfy.handlebars
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
This is a ntfy.sh template for the Jellyfin Webhook plugin.
I got most of the inspiration from the examples here:
https://github.com/jellyfin/jellyfin-plugin-webhook/tree/master/Jellyfin.Plugin.Webhook/Templates
I've tried most of the notifications, but let me know if something isn't working.
I'm pretty sure AuthenticationSuccess and AuthenticationFailure doesn't work at all, since there isn't any mention of them on the Notifications page on Jellyfin. If anyone has any ideas, an issue or a PR would be awesome.
I'm sure it's possible to slim down this template quite a bit, but this is what we got for the moment. :)
To enable the notifications, install the Webhook plugin, then click "Add Generic Destination" on the settings page.
Set the "Webook URL" to your ntfy server, for example: ntfy.sh
Check the boxes you want notifications from. (Make sure they are checked on the "Notifications" page as well.)
Click "Add Request Header" (If you need to login) and enter "Authorization" in the Key field.
In the "Value" field you need to enter a base64 encoded string of your username:password, prepended by "Basic"
See https://docs.ntfy.sh/publish/#username-password , the oneliner you need is probably:
echo "Basic $(echo -n 'testuser:fakepassword' | base64)"
Paste everything below this in the "Template" box, and click save. Do not forget to edit the "topic" field.
{
"topic": "jellyfin",
"tags": ["octopus"],
"icon": "{{ServerUrl}}/web/favicon.png",
{{#if_equals NotificationType 'Generic'}}
"title": "Jellyfin: Generic notification",
"message": "{{Name}}",
"actions": [
{
"action": "view",
"label": "Open Jellyfin",
"url": "{{ServerUrl}}",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'ItemAdded'}}
"attach": "{{ServerUrl}}/Items/{{ItemId}}/Images/Primary",
{{~#if_exist Provider_imdb~}}
"title": "Jellyfin: Item added",
"actions": [
{
"action": "view",
"label": "Open Jellyfin",
"url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}",
"clear": true
},
{
"action": "view",
"label": "IMDb",
"url": "https://www.imdb.com/title/{{Provider_imdb}}/",
"clear": true
}
],
{{~/if_exist~}}
{{~#if_exist Provider_tvdb~}}
{{~#if_equals ItemType 'Movie'~}}
"title": "Jellyfin: Movie added",
"actions": [
{
"action": "view",
"label": "Open Jellyfin",
"url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}",
"clear": true
},
{
"action": "view",
"label": "tvdb",
"url": "https://thetvdb.com/dereferrer/movie/{{Provider_tvdb}}",
"clear": true
}
],
{{~else~}}
{{~#if_equals ItemType 'Season'~}}
"title": "Jellyfin: Season added",
"actions": [
{
"action": "view",
"label": "Open Jellyfin",
"url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}",
"clear": true
},
{
"action": "view",
"label": "tvdb",
"url": "https://thetvdb.com/dereferrer/season/{{Provider_tvdb}}",
"clear": true
}
],
{{~else~}}
"title": "Jellyfin: Episode added",
"actions": [
{
"action": "view",
"label": "Open Jellyfin",
"url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}",
"clear": true
},
{
"action": "view",
"label": "tvdb",
"url": "https://thetvdb.com/dereferrer/episode/{{Provider_tvdb}}",
"clear": true
}
],
{{~/if_equals~}}
{{~/if_equals~}}
{{~/if_exist~}}
{{~#if_exist Provider_tmdb~}}
{{~#if_equals ItemType 'Movie'~}}
"title": "Jellyfin: Movie added",
"actions": [
{
"action": "view",
"label": "Open Jellyfin",
"url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}",
"clear": true
},
{
"action": "view",
"label": "TMDb",
"url": "https://www.themoviedb.org/movie/{{Provider_tmdb}}",
"clear": true
}
],
{{~else~}}
"title": "Jellyfin: Episode added",
"actions": [
{
"action": "view",
"label": "Open Jellyfin",
"url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}",
"clear": true
},
{
"action": "view",
"label": "TMDb",
"url": "https://www.themoviedb.org/tv/{{Provider_tmdb}}",
"clear": true
}
],
{{~/if_equals~}}
{{~/if_exist~}}
{{~#if_exist Provider_musicbrainzartist~}}
"title": "Jellyfin: Music added",
"actions": [
{
"action": "view",
"label": "Open Jellyfin",
"url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}",
"clear": true
},
{
"action": "view",
"label": "MusicBrainz",
"url": "https://musicbrainz.org/artist/{{Provider_musicbrainzartist}}",
"clear": true
}
],
{{~/if_exist~}}
{{#if_exist Provider_audiodbartist}}
"title": "Jellyfin: Music added",
"actions": [
{
"action": "view",
"label": "Open Jellyfin",
"url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}",
"clear": true
},
{
"action": "view",
"label": "AudioDb",
"url": "https://theaudiodb.com/artist/{{Provider_audiodbartist}}",
"clear": true
}
],
{{~/if_exist~}}
{{~#if_exist Provider_musicbrainztrack~}}
"title": "Jellyfin: Music added",
"actions": [
{
"action": "view",
"label": "Open Jellyfin",
"url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}",
"clear": true
},
{
"action": "view",
"label": "MusicBrainz Track",
"url": "https://musicbrainz.org/track/{{Provider_musicbrainztrack}}",
"clear": true
}
],
{{~/if_exist~}}
{{~#if_exist Provider_musicbrainzalbum~}}
"title": "Jellyfin: Music album added",
"actions": [
{
"action": "view",
"label": "Open Jellyfin",
"url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}",
"clear": true
},
{
"action": "view",
"label": "MusicBrainz Album",
"url": "https://musicbrainz.org/release/{{Provider_musicbrainzalbum}}",
"clear": true
}
],
{{~/if_exist~}}
{{#if_exist Provider_theaudiodbalbum}}
"title": "Jellyfin: Music album added",
"actions": [
{
"action": "view",
"label": "Open Jellyfin",
"url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}",
"clear": true
},
{
"action": "view",
"label": "TADb Album",
"url": "https://theaudiodb.com/album/{{Provider_theaudiodbalbum}}",
"clear": true
}
],
{{~/if_exist~}}
{{#if_equals ItemType 'Episode'}}
"message": "{{SeriesName}} - S{{SeasonNumber00}}E{{EpisodeNumber00}} - {{Name}}"
{{else}}
{{#if_equals ItemType 'Season'}}
"message": "{{SeriesName}} - {{Name}}"
{{else}}
"message": "{{Name}} - ({{Year}}) - {{RunTime}}"
{{/if_equals}}
{{/if_equals}}
{{/if_equals}}
{{#if_equals NotificationType 'PlaybackStart'}}
"title": "Jellyfin: Playback start",
{{#if_equals ItemType 'Episode'}}
"message": "User {{NotificationUsername}} started playing:\n{{SeriesName}} S{{SeasonNumber00}}E{{EpisodeNumber00}} {{Name}}",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{else}}
"message": "User {{NotificationUsername}} started playing:\n{{Name}} ({{Year}}) {{RunTime}}",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{/if_equals}}
{{/if_equals}}
{{#if_equals NotificationType 'PlaybackProgress'}}
"title": "Jellyfin: Playback progress",
{{#if_equals ItemType 'Episode'}}
"message": "User {{NotificationUsername}} is playing:\n{{SeriesName}} S{{SeasonNumber00}}E{{EpisodeNumber00}} {{Name}}, at position {{PlaybackPosition}} of {{RunTime}}",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{else}}
"message": "User {{NotificationUsername}} is playing:\n{{Name}} ({{Year}}) at position {{PlaybackPosition}} of {{RunTime}}",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{/if_equals}}
{{/if_equals}}
{{#if_equals NotificationType 'PlaybackStop'}}
"title": "Jellyfin: Playback stop",
{{#if_equals ItemType 'Episode'}}
"message": "User {{NotificationUsername}} stopped playing:\n{{SeriesName}} S{{SeasonNumber00}}E{{EpisodeNumber00}} {{Name}}",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{else}}
"message": "User {{NotificationUsername}} stopped playing:\n{{Name}} ({{Year}})",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{/if_equals}}
{{/if_equals}}
{{#if_equals NotificationType 'SubtitleDownloadFailure'}}
"title": "Jellyfin: Subtitle download failure",
{{#if_equals ItemType 'Episode'}}
"message": "Warning: Subtitle failed to download:\n{{SeriesName}} - S{{SeasonNumber00}}E{{EpisodeNumber00}} - {{Name}}"
{{else}}
"message": "Warning: Subtitle failed to download:\n{{Name}} - ({{Year}})"
{{/if_equals}}
{{/if_equals}}
{{#if_equals NotificationType 'TaskCompleted'}}
"title": "Jellyfin: Task completed",
"message": "Task completed with status {{ResultStatus}}, check logs for details",
"actions": [
{
"action": "view",
"label": "Open logs",
"url": "{{ServerUrl}}/web/index.html#!/log.html",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'PendingRestart'}}
"title": "Jellyfin: Server needs to be restarted",
"message": "Check logs for details"
{{/if_equals}}
{{#if_equals NotificationType 'PluginInstallationCancelled'}}
"title": "Jellyfin: Plugin installation cancelled",
"message": "Check logs for details",
"actions": [
{
"action": "view",
"label": "Open logs",
"url": "{{ServerUrl}}/web/index.html#!/log.html",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'PluginInstallationFailed'}}
"title": "Jellyfin: Plugin installation failed",
"message": "Check logs for details",
"actions": [
{
"action": "view",
"label": "Open logs",
"url": "{{ServerUrl}}/web/index.html#!/log.html",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'PluginInstalled'}}
"title": "Jellyfin: Plugin successfully installed",
"message": "Server restart needed",
"actions": [
{
"action": "view",
"label": "Open logs",
"url": "{{ServerUrl}}/web/index.html#!/log.html",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'PluginInstalling'}}
"title": "Jellyfin: Plugin is installing now",
"message": "Check logs for details"
{{/if_equals}}
{{#if_equals NotificationType 'PluginUninstalled'}}
"title": "Jellyfin: Plugin successfully uninstalled",
"message": "Check logs for details",
"actions": [
{
"action": "view",
"label": "Open logs",
"url": "{{ServerUrl}}/web/index.html#!/log.html",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'PluginUpdated'}}
"title": "Jellyfin: Plugin successfully updated",
"message": "Check logs for details",
"actions": [
{
"action": "view",
"label": "Open logs",
"url": "{{ServerUrl}}/web/index.html#!/log.html",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'SessionStart'}}
"title": "Jellyfin: User active",
"message": "User {{NotificationUsername}} now active.\nClient: {{ClientName}}\nDevice: {{DeviceName}}",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'UserCreated'}}
"title": "Jellyfin: User created",
"message": "User {{NotificationUsername}} was added successfully",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'UserDeleted'}}
"title": "Jellyfin: User deleted",
"message": "User {{NotificationUsername}} was deleted",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'UserLockedOut'}}
"title": "Jellyfin: User locked out",
"message": "Warning: User {{NotificationUsername}} was locked out.",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'UserPasswordChanged'}}
"title": "Jellyfin: User password changed",
"message": "User {{NotificationUsername}} password changed successfully",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'UserUpdated'}}
"title": "Jellyfin: User updated",
"message": "User {{NotificationUsername}} was updated successfully",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'UserDataSaved'}}
"title": "Jellyfin: User data saved",
"message": "User {{NotificationUsername}} data was saved",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'AuthenticationSuccess'}}
"title": "Jellyfin: Authentication success",
"message": "User {{NotificationUsername}} successfully logged on. Client: {{ClientName}} Device: {{DeviceName}}",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{/if_equals}}
{{#if_equals NotificationType 'AuthenticationFailure'}}
"title": "Jellyfin: Authentication failed",
"message": "Warning: User {{NotificationUsername}} failed to authenticate. Client: {{ClientName}} Device: {{DeviceName}}, check server logs for details",
"actions": [
{
"action": "view",
"label": "Manage user",
"url": "{{ServerUrl}}/web/index.html#!/useredit.html?userId={{UserId}}",
"clear": true
}
]
{{/if_equals}}
}