PowerDNS-Admin/powerdnsadmin/lib/helper.py

40 lines
1 KiB
Python
Raw Normal View History

2019-03-01 23:49:31 +01:00
import requests
from urllib.parse import urljoin
from flask import request, current_app
2019-03-01 23:49:31 +01:00
from ..models import Setting
2019-03-01 23:49:31 +01:00
def forward_request():
pdns_api_url = Setting().get('pdns_api_url')
pdns_api_key = Setting().get('pdns_api_key')
headers = {}
data = None
msg_str = "Sending request to powerdns API {0}"
if request.method != 'GET' and request.method != 'DELETE':
msg = msg_str.format(request.get_json(force=True))
current_app.logger.debug(msg)
2019-03-01 23:49:31 +01:00
data = request.get_json(force=True)
verify = False
headers = {
'user-agent': 'powerdns-admin/api',
2019-03-01 23:49:31 +01:00
'pragma': 'no-cache',
'cache-control': 'no-cache',
'accept': 'application/json; q=1',
'X-API-KEY': pdns_api_key
}
url = urljoin(pdns_api_url, request.path)
resp = requests.request(request.method,
url,
headers=headers,
verify=verify,
json=data)
2019-03-01 23:49:31 +01:00
return resp