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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
|
# -*- coding: utf-8 -*-
# BSD 3-Clause License
#
# Apprise - Push Notification Library.
# Copyright (c) 2023, Chris Caron <lead2gold@gmail.com>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# Signup @ https://www.opsgenie.com
#
# Generate your Integration API Key
# https://app.opsgenie.com/settings/integration/add/API/
# Knowing this, you can build your Opsgenie URL as follows:
# opsgenie://{apikey}/
# opsgenie://{apikey}/@{user}
# opsgenie://{apikey}/*{schedule}
# opsgenie://{apikey}/^{escalation}
# opsgenie://{apikey}/#{team}
#
# You can mix and match what you want to notify freely
# opsgenie://{apikey}/@{user}/#{team}/*{schedule}/^{escalation}
#
# If no target prefix is specified, then it is assumed to be a user.
#
# API Documentation: https://docs.opsgenie.com/docs/alert-api
# API Integration Docs: https://docs.opsgenie.com/docs/api-integration
import requests
from json import dumps
from .NotifyBase import NotifyBase
from ..common import NotifyType
from ..utils import validate_regex
from ..utils import is_uuid
from ..utils import parse_list
from ..utils import parse_bool
from ..AppriseLocale import gettext_lazy as _
class OpsgenieCategory(NotifyBase):
"""
We define the different category types that we can notify
"""
USER = 'user'
SCHEDULE = 'schedule'
ESCALATION = 'escalation'
TEAM = 'team'
OPSGENIE_CATEGORIES = (
OpsgenieCategory.USER,
OpsgenieCategory.SCHEDULE,
OpsgenieCategory.ESCALATION,
OpsgenieCategory.TEAM,
)
# Regions
class OpsgenieRegion:
US = 'us'
EU = 'eu'
# Opsgenie APIs
OPSGENIE_API_LOOKUP = {
OpsgenieRegion.US: 'https://api.opsgenie.com/v2/alerts',
OpsgenieRegion.EU: 'https://api.eu.opsgenie.com/v2/alerts',
}
# A List of our regions we can use for verification
OPSGENIE_REGIONS = (
OpsgenieRegion.US,
OpsgenieRegion.EU,
)
# Priorities
class OpsgeniePriority:
LOW = 1
MODERATE = 2
NORMAL = 3
HIGH = 4
EMERGENCY = 5
OPSGENIE_PRIORITIES = {
# Note: This also acts as a reverse lookup mapping
OpsgeniePriority.LOW: 'low',
OpsgeniePriority.MODERATE: 'moderate',
OpsgeniePriority.NORMAL: 'normal',
OpsgeniePriority.HIGH: 'high',
OpsgeniePriority.EMERGENCY: 'emergency',
}
OPSGENIE_PRIORITY_MAP = {
# Maps against string 'low'
'l': OpsgeniePriority.LOW,
# Maps against string 'moderate'
'm': OpsgeniePriority.MODERATE,
# Maps against string 'normal'
'n': OpsgeniePriority.NORMAL,
# Maps against string 'high'
'h': OpsgeniePriority.HIGH,
# Maps against string 'emergency'
'e': OpsgeniePriority.EMERGENCY,
# Entries to additionally support (so more like Opsgenie's API)
'1': OpsgeniePriority.LOW,
'2': OpsgeniePriority.MODERATE,
'3': OpsgeniePriority.NORMAL,
'4': OpsgeniePriority.HIGH,
'5': OpsgeniePriority.EMERGENCY,
# Support p-prefix
'p1': OpsgeniePriority.LOW,
'p2': OpsgeniePriority.MODERATE,
'p3': OpsgeniePriority.NORMAL,
'p4': OpsgeniePriority.HIGH,
'p5': OpsgeniePriority.EMERGENCY,
}
class NotifyOpsgenie(NotifyBase):
"""
A wrapper for Opsgenie Notifications
"""
# The default descriptive name associated with the Notification
service_name = 'Opsgenie'
# The services URL
service_url = 'https://opsgenie.com/'
# All notification requests are secure
secure_protocol = 'opsgenie'
# A URL that takes you to the setup/help of the specific protocol
setup_url = 'https://github.com/caronc/apprise/wiki/Notify_opsgenie'
# The maximum length of the body
body_maxlen = 15000
# If we don't have the specified min length, then we don't bother using
# the body directive
opsgenie_body_minlen = 130
# The default region to use if one isn't otherwise specified
opsgenie_default_region = OpsgenieRegion.US
# The maximum allowable targets within a notification
default_batch_size = 50
# Define object templates
templates = (
'{schema}://{apikey}',
'{schema}://{apikey}/{targets}',
)
# Define our template tokens
template_tokens = dict(NotifyBase.template_tokens, **{
'apikey': {
'name': _('API Key'),
'type': 'string',
'private': True,
'required': True,
},
'target_escalation': {
'name': _('Target Escalation'),
'prefix': '^',
'type': 'string',
'map_to': 'targets',
},
'target_schedule': {
'name': _('Target Schedule'),
'type': 'string',
'prefix': '*',
'map_to': 'targets',
},
'target_user': {
'name': _('Target User'),
'type': 'string',
'prefix': '@',
'map_to': 'targets',
},
'target_team': {
'name': _('Target Team'),
'type': 'string',
'prefix': '#',
'map_to': 'targets',
},
'targets': {
'name': _('Targets '),
'type': 'list:string',
},
})
# Define our template arguments
template_args = dict(NotifyBase.template_args, **{
'region': {
'name': _('Region Name'),
'type': 'choice:string',
'values': OPSGENIE_REGIONS,
'default': OpsgenieRegion.US,
'map_to': 'region_name',
},
'batch': {
'name': _('Batch Mode'),
'type': 'bool',
'default': False,
},
'priority': {
'name': _('Priority'),
'type': 'choice:int',
'values': OPSGENIE_PRIORITIES,
'default': OpsgeniePriority.NORMAL,
},
'entity': {
'name': _('Entity'),
'type': 'string',
},
'alias': {
'name': _('Alias'),
'type': 'string',
},
'tags': {
'name': _('Tags'),
'type': 'string',
},
'to': {
'alias_of': 'targets',
},
})
# Map of key-value pairs to use as custom properties of the alert.
template_kwargs = {
'details': {
'name': _('Details'),
'prefix': '+',
},
}
def __init__(self, apikey, targets, region_name=None, details=None,
priority=None, alias=None, entity=None, batch=False,
tags=None, **kwargs):
"""
Initialize Opsgenie Object
"""
super().__init__(**kwargs)
# API Key (associated with project)
self.apikey = validate_regex(apikey)
if not self.apikey:
msg = 'An invalid Opsgenie API Key ' \
'({}) was specified.'.format(apikey)
self.logger.warning(msg)
raise TypeError(msg)
# The Priority of the message
self.priority = NotifyOpsgenie.template_args['priority']['default'] \
if not priority else \
next((
v for k, v in OPSGENIE_PRIORITY_MAP.items()
if str(priority).lower().startswith(k)),
NotifyOpsgenie.template_args['priority']['default'])
# Store our region
try:
self.region_name = self.opsgenie_default_region \
if region_name is None else region_name.lower()
if self.region_name not in OPSGENIE_REGIONS:
# allow the outer except to handle this common response
raise
except:
# Invalid region specified
msg = 'The Opsgenie region specified ({}) is invalid.' \
.format(region_name)
self.logger.warning(msg)
raise TypeError(msg)
self.details = {}
if details:
# Store our extra details
self.details.update(details)
# Prepare Batch Mode Flag
self.batch_size = self.default_batch_size if batch else 1
# Assign our tags (if defined)
self.__tags = parse_list(tags)
# Assign our entity (if defined)
self.entity = entity
# Assign our alias (if defined)
self.alias = alias
# Initialize our Targets
self.targets = []
# Sort our targets
for _target in parse_list(targets):
target = _target.strip()
if len(target) < 2:
self.logger.debug('Ignoring Opsgenie Entry: %s' % target)
continue
if target.startswith(NotifyOpsgenie.template_tokens
['target_team']['prefix']):
self.targets.append(
{'type': OpsgenieCategory.TEAM, 'id': target[1:]}
if is_uuid(target[1:]) else
{'type': OpsgenieCategory.TEAM, 'name': target[1:]})
elif target.startswith(NotifyOpsgenie.template_tokens
['target_schedule']['prefix']):
self.targets.append(
{'type': OpsgenieCategory.SCHEDULE, 'id': target[1:]}
if is_uuid(target[1:]) else
{'type': OpsgenieCategory.SCHEDULE, 'name': target[1:]})
elif target.startswith(NotifyOpsgenie.template_tokens
['target_escalation']['prefix']):
self.targets.append(
{'type': OpsgenieCategory.ESCALATION, 'id': target[1:]}
if is_uuid(target[1:]) else
{'type': OpsgenieCategory.ESCALATION, 'name': target[1:]})
elif target.startswith(NotifyOpsgenie.template_tokens
['target_user']['prefix']):
self.targets.append(
{'type': OpsgenieCategory.USER, 'id': target[1:]}
if is_uuid(target[1:]) else
{'type': OpsgenieCategory.USER, 'username': target[1:]})
else:
# Ambiguious entry; treat it as a user but not before
# displaying a warning to the end user first:
self.logger.debug(
'Treating ambigious Opsgenie target %s as a user', target)
self.targets.append(
{'type': OpsgenieCategory.USER, 'id': target}
if is_uuid(target) else
{'type': OpsgenieCategory.USER, 'username': target})
def send(self, body, title='', notify_type=NotifyType.INFO, **kwargs):
"""
Perform Opsgenie Notification
"""
headers = {
'User-Agent': self.app_id,
'Content-Type': 'application/json',
'Authorization': 'GenieKey {}'.format(self.apikey),
}
# Prepare our URL as it's based on our hostname
notify_url = OPSGENIE_API_LOOKUP[self.region_name]
# Initialize our has_error flag
has_error = False
# Use body if title not set
title_body = body if not title else title
# Create a copy ouf our details object
details = self.details.copy()
if 'type' not in details:
details['type'] = notify_type
# Prepare our payload
payload = {
'source': self.app_desc,
'message': title_body,
'description': body,
'details': details,
'priority': 'P{}'.format(self.priority),
}
# Use our body directive if we exceed the minimum message
# limitation
if len(payload['message']) > self.opsgenie_body_minlen:
payload['message'] = '{}...'.format(
title_body[:self.opsgenie_body_minlen - 3])
if self.__tags:
payload['tags'] = self.__tags
if self.entity:
payload['entity'] = self.entity
if self.alias:
payload['alias'] = self.alias
length = len(self.targets) if self.targets else 1
for index in range(0, length, self.batch_size):
if self.targets:
# If there were no targets identified, then we simply
# just iterate once without the responders set
payload['responders'] = \
self.targets[index:index + self.batch_size]
# Some Debug Logging
self.logger.debug(
'Opsgenie POST URL: {} (cert_verify={})'.format(
notify_url, self.verify_certificate))
self.logger.debug('Opsgenie Payload: {}' .format(payload))
# Always call throttle before any remote server i/o is made
self.throttle()
try:
r = requests.post(
notify_url,
data=dumps(payload),
headers=headers,
verify=self.verify_certificate,
timeout=self.request_timeout,
)
if r.status_code not in (
requests.codes.accepted, requests.codes.ok):
status_str = \
NotifyBase.http_response_code_lookup(
r.status_code)
self.logger.warning(
'Failed to send Opsgenie notification:'
'{}{}error={}.'.format(
status_str,
', ' if status_str else '',
r.status_code))
self.logger.debug(
'Response Details:\r\n{}'.format(r.content))
# Mark our failure
has_error = True
continue
# If we reach here; the message was sent
self.logger.info('Sent Opsgenie notification')
self.logger.debug(
'Response Details:\r\n{}'.format(r.content))
except requests.RequestException as e:
self.logger.warning(
'A Connection error occurred sending Opsgenie '
'notification.')
self.logger.debug('Socket Exception: %s' % str(e))
# Mark our failure
has_error = True
return not has_error
def url(self, privacy=False, *args, **kwargs):
"""
Returns the URL built dynamically based on specified arguments.
"""
# Define any URL parameters
params = {
'region': self.region_name,
'priority':
OPSGENIE_PRIORITIES[self.template_args['priority']['default']]
if self.priority not in OPSGENIE_PRIORITIES
else OPSGENIE_PRIORITIES[self.priority],
'batch': 'yes' if self.batch_size > 1 else 'no',
}
# Assign our entity value (if defined)
if self.entity:
params['entity'] = self.entity
# Assign our alias value (if defined)
if self.alias:
params['alias'] = self.alias
# Assign our tags (if specifed)
if self.__tags:
params['tags'] = ','.join(self.__tags)
# Append our details into our parameters
params.update({'+{}'.format(k): v for k, v in self.details.items()})
# Extend our parameters
params.update(self.url_parameters(privacy=privacy, *args, **kwargs))
# A map allows us to map our target types so they can be correctly
# placed back into your URL below. Hence map the 'user' -> '@'
__map = {
OpsgenieCategory.USER:
NotifyOpsgenie.template_tokens['target_user']['prefix'],
OpsgenieCategory.SCHEDULE:
NotifyOpsgenie.template_tokens['target_schedule']['prefix'],
OpsgenieCategory.ESCALATION:
NotifyOpsgenie.template_tokens['target_escalation']['prefix'],
OpsgenieCategory.TEAM:
NotifyOpsgenie.template_tokens['target_team']['prefix'],
}
return '{schema}://{apikey}/{targets}/?{params}'.format(
schema=self.secure_protocol,
apikey=self.pprint(self.apikey, privacy, safe=''),
targets='/'.join(
[NotifyOpsgenie.quote('{}{}'.format(
__map[x['type']],
x.get('id', x.get('name', x.get('username')))))
for x in self.targets]),
params=NotifyOpsgenie.urlencode(params))
def __len__(self):
"""
Returns the number of targets associated with this notification
"""
#
# Factor batch into calculation
#
targets = len(self.targets)
if self.batch_size > 1:
targets = int(targets / self.batch_size) + \
(1 if targets % self.batch_size else 0)
return targets if targets > 0 else 1
@staticmethod
def parse_url(url):
"""
Parses the URL and returns enough arguments that can allow
us to re-instantiate this object.
"""
results = NotifyBase.parse_url(url, verify_host=False)
if not results:
# We're done early as we couldn't load the results
return results
# The API Key is stored in the hostname
results['apikey'] = NotifyOpsgenie.unquote(results['host'])
# Get our Targets
results['targets'] = NotifyOpsgenie.split_path(results['fullpath'])
# Add our Meta Detail keys
results['details'] = {NotifyBase.unquote(x): NotifyBase.unquote(y)
for x, y in results['qsd+'].items()}
# Set our priority
if 'priority' in results['qsd'] and len(results['qsd']['priority']):
results['priority'] = \
NotifyOpsgenie.unquote(results['qsd']['priority'])
# Get Batch Boolean (if set)
results['batch'] = \
parse_bool(
results['qsd'].get(
'batch',
NotifyOpsgenie.template_args['batch']['default']))
if 'apikey' in results['qsd'] and len(results['qsd']['apikey']):
results['apikey'] = \
NotifyOpsgenie.unquote(results['qsd']['apikey'])
if 'tags' in results['qsd'] and len(results['qsd']['tags']):
# Extract our tags
results['tags'] = \
parse_list(NotifyOpsgenie.unquote(results['qsd']['tags']))
if 'region' in results['qsd'] and len(results['qsd']['region']):
# Extract our region
results['region_name'] = \
NotifyOpsgenie.unquote(results['qsd']['region'])
if 'entity' in results['qsd'] and len(results['qsd']['entity']):
# Extract optional entity field
results['entity'] = \
NotifyOpsgenie.unquote(results['qsd']['entity'])
if 'alias' in results['qsd'] and len(results['qsd']['alias']):
# Extract optional alias field
results['alias'] = \
NotifyOpsgenie.unquote(results['qsd']['alias'])
# Handle 'to' email address
if 'to' in results['qsd'] and len(results['qsd']['to']):
results['targets'].append(results['qsd']['to'])
return results
|