1
|
|
|
# Licensed to the StackStorm, Inc ('StackStorm') under one or more |
2
|
|
|
# contributor license agreements. See the NOTICE file distributed with |
3
|
|
|
# this work for additional information regarding copyright ownership. |
4
|
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0 |
5
|
|
|
# (the "License"); you may not use this file except in compliance with |
6
|
|
|
# the License. You may obtain a copy of the License at |
7
|
|
|
# |
8
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0 |
9
|
|
|
# |
10
|
|
|
# Unless required by applicable law or agreed to in writing, software |
11
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, |
12
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13
|
|
|
# See the License for the specific language governing permissions and |
14
|
|
|
# limitations under the License. |
15
|
|
|
|
16
|
|
|
from lib.actions import CloudflareBaseAction |
17
|
|
|
|
18
|
|
|
|
19
|
|
|
class GetIPs(CloudflareBaseAction): |
20
|
|
|
def run(self): |
21
|
|
|
""" |
22
|
|
|
Get CloudFlare IPs |
23
|
|
|
|
24
|
|
|
Args: |
25
|
|
|
None. |
26
|
|
|
|
27
|
|
|
Raises: |
28
|
|
|
ValueError: On HTTP Error or Invaild JSON. |
29
|
|
|
requests.exceptions.MissingSchema: If https:// missing from |
30
|
|
|
api_host. |
31
|
|
|
Exception: On "success": false from API. |
32
|
|
|
|
33
|
|
|
Returns: |
34
|
|
|
dict: containing 'ipv4_cidrs' and 'ipv6_cidrs' |
35
|
|
|
""" |
36
|
|
|
|
37
|
|
|
results = {} |
38
|
|
|
|
39
|
|
|
url = "{}/client/v4/ips".format(self.api_host) |
40
|
|
|
payload = {} |
41
|
|
|
headers = {"Content-Type": "application/json"} |
42
|
|
|
|
43
|
|
|
data = self._get(url, headers, payload) |
44
|
|
|
|
45
|
|
|
if data['success'] is True: |
46
|
|
|
results['messages'] = data['messages'] |
47
|
|
|
results['ipv4_cidrs'] = data['result']['ipv4_cidrs'] |
48
|
|
|
results['ipv6_cidrs'] = data['result']['ipv6_cidrs'] |
49
|
|
|
|
50
|
|
|
return results |
51
|
|
|
else: |
52
|
|
|
for error in data['errors']: |
53
|
|
|
self.send_user_error(error) |
54
|
|
|
|
55
|
|
|
raise Exception("Error from Cloudflare: {}".format(data['errors'])) |
56
|
|
|
|