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
|
# -*- coding: utf-8 -*-
#
# Copyright (C) 2020 Chris Caron <lead2gold@gmail.com>
# All rights reserved.
#
# This code is licensed under the MIT License.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files(the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions :
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
# Official API reference: https://developer.gitter.im/docs/user-resource
import re
import requests
from json import dumps
from .NotifyBase import NotifyBase
from ..common import NotifyType
from ..utils import validate_regex
from ..AppriseLocale import gettext_lazy as _
# Used to break path apart into list of targets
TARGET_LIST_DELIM = re.compile(r'[ \t\r\n,\\/]+')
# Priorities
class ParsePlatformDevice:
# All Devices
ALL = 'all'
# Apple IOS (APNS)
IOS = 'ios'
# Android/Firebase (FCM)
ANDROID = 'android'
PARSE_PLATFORM_DEVICES = (
ParsePlatformDevice.ALL,
ParsePlatformDevice.IOS,
ParsePlatformDevice.ANDROID,
)
class NotifyParsePlatform(NotifyBase):
"""
A wrapper for Parse Platform Notifications
"""
# The default descriptive name associated with the Notification
service_name = 'Parse Platform'
# The services URL
service_url = ' https://parseplatform.org/'
# insecure notifications (using http)
protocol = 'parsep'
# Secure notifications (using https)
secure_protocol = 'parseps'
# A URL that takes you to the setup/help of the specific protocol
setup_url = 'https://github.com/caronc/apprise/wiki/Notify_parseplatform'
# Define object templates
templates = (
'{schema}://{app_id}:{master_key}@{host}',
'{schema}://{app_id}:{master_key}@{host}:{port}',
)
# Define our template tokens
template_tokens = dict(NotifyBase.template_tokens, **{
'host': {
'name': _('Hostname'),
'type': 'string',
'required': True,
},
'port': {
'name': _('Port'),
'type': 'int',
'min': 1,
'max': 65535,
},
'app_id': {
'name': _('App ID'),
'type': 'string',
'private': True,
'required': True,
},
'master_key': {
'name': _('Master Key'),
'type': 'string',
'private': True,
'required': True,
},
})
# Define our template arguments
template_args = dict(NotifyBase.template_args, **{
'device': {
'name': _('Device'),
'type': 'choice:string',
'values': PARSE_PLATFORM_DEVICES,
'default': ParsePlatformDevice.ALL,
},
'app_id': {
'alias_of': 'app_id',
},
'master_key': {
'alias_of': 'master_key',
},
})
def __init__(self, app_id, master_key, device=None, **kwargs):
"""
Initialize Parse Platform Object
"""
super(NotifyParsePlatform, self).__init__(**kwargs)
self.fullpath = kwargs.get('fullpath')
if not isinstance(self.fullpath, str):
self.fullpath = '/'
# Application ID
self.application_id = validate_regex(app_id)
if not self.application_id:
msg = 'An invalid Parse Platform Application ID ' \
'({}) was specified.'.format(app_id)
self.logger.warning(msg)
raise TypeError(msg)
# Master Key
self.master_key = validate_regex(master_key)
if not self.master_key:
msg = 'An invalid Parse Platform Master Key ' \
'({}) was specified.'.format(master_key)
self.logger.warning(msg)
raise TypeError(msg)
# Initialize Devices Array
self.devices = []
if device:
self.device = device.lower()
if device not in PARSE_PLATFORM_DEVICES:
msg = 'An invalid Parse Platform device ' \
'({}) was specified.'.format(device)
self.logger.warning(msg)
raise TypeError(msg)
else:
self.device = self.template_args['device']['default']
if self.device == ParsePlatformDevice.ALL:
self.devices = [d for d in PARSE_PLATFORM_DEVICES
if d != ParsePlatformDevice.ALL]
else:
# Store our device
self.devices.append(device)
return
def send(self, body, title='', notify_type=NotifyType.INFO, **kwargs):
"""
Perform Parse Platform Notification
"""
# Prepare our headers:
headers = {
'User-Agent': self.app_id,
'Content-Type': 'application/json',
'X-Parse-Application-Id': self.application_id,
'X-Parse-Master-Key': self.master_key,
}
# prepare our payload
payload = {
'where': {
'deviceType': {
'$in': self.devices,
}
},
'data': {
'title': title,
'alert': body,
}
}
# Set our schema
schema = 'https' if self.secure else 'http'
# Our Notification URL
url = '%s://%s' % (schema, self.host)
if isinstance(self.port, int):
url += ':%d' % self.port
url += self.fullpath.rstrip('/') + '/parse/push/'
self.logger.debug('Parse Platform POST URL: %s (cert_verify=%r)' % (
url, self.verify_certificate,
))
self.logger.debug('Parse Platform Payload: %s' % str(payload))
# Always call throttle before any remote server i/o is made
self.throttle()
try:
r = requests.post(
url,
data=dumps(payload),
headers=headers,
verify=self.verify_certificate,
)
if r.status_code != requests.codes.ok:
# We had a problem
status_str = NotifyParsePlatform.\
http_response_code_lookup(r.status_code)
self.logger.warning(
'Failed to send Parse Platform notification: '
'{}{}error={}.'.format(
status_str,
', ' if status_str else '',
r.status_code))
self.logger.debug('Response Details:\r\n{}'.format(r.content))
# Return; we're done
return False
else:
self.logger.info('Sent Parse Platform notification.')
except requests.RequestException as e:
self.logger.warning(
'A Connection error occured sending Parse Platform '
'notification to %s.' % self.host)
self.logger.debug('Socket Exception: %s' % str(e))
# Return; we're done
return False
return True
def url(self, privacy=False, *args, **kwargs):
"""
Returns the URL built dynamically based on specified arguments.
"""
# Define any arguments set
params = {
'device': self.device,
}
# Extend our parameters
params.update(self.url_parameters(privacy=privacy, *args, **kwargs))
default_port = 443 if self.secure else 80
return \
'{schema}://{app_id}:{master_key}@' \
'{hostname}{port}{fullpath}/?{params}'.format(
schema=self.secure_protocol if self.secure else self.protocol,
app_id=self.pprint(self.application_id, privacy, safe=''),
master_key=self.pprint(self.master_key, privacy, safe=''),
hostname=NotifyParsePlatform.quote(self.host, safe=''),
port='' if self.port is None or self.port == default_port
else ':{}'.format(self.port),
fullpath=NotifyParsePlatform.quote(self.fullpath, safe='/'),
params=NotifyParsePlatform.urlencode(params))
@staticmethod
def parse_url(url):
"""
Parses the URL and returns enough arguments that can allow
us to substantiate this object.
"""
results = NotifyBase.parse_url(url)
if not results:
# We're done early as we couldn't load the results
return results
# App ID is retrieved from the user
results['app_id'] = NotifyParsePlatform.unquote(results['user'])
# Master Key is retrieved from the password
results['master_key'] = \
NotifyParsePlatform.unquote(results['password'])
# Device support override
if 'device' in results['qsd'] and len(results['qsd']['device']):
results['device'] = results['qsd']['device']
# Allow app_id attribute over-ride
if 'app_id' in results['qsd'] and len(results['qsd']['app_id']):
results['app_id'] = results['qsd']['app_id']
# Allow master_key attribute over-ride
if 'master_key' in results['qsd'] \
and len(results['qsd']['master_key']):
results['master_key'] = results['qsd']['master_key']
return results
|