mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 14:40:27 +00:00
d25a22272e
This change permits to proxy pdns zone notify api requests (which are expected to be with empty body)
40 lines
1.0 KiB
Python
40 lines
1.0 KiB
Python
import requests
|
|
from urllib.parse import urljoin
|
|
from flask import request, current_app
|
|
|
|
from ..models import Setting
|
|
|
|
|
|
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, silent=True))
|
|
current_app.logger.debug(msg)
|
|
data = request.get_json(force=True, silent=True)
|
|
|
|
verify = False
|
|
|
|
headers = {
|
|
'user-agent': 'powerdns-admin/api',
|
|
'pragma': 'no-cache',
|
|
'cache-control': 'no-cache',
|
|
'accept': 'application/json; q=1',
|
|
'X-API-KEY': pdns_api_key
|
|
}
|
|
|
|
url = urljoin(pdns_api_url, request.full_path)
|
|
|
|
resp = requests.request(request.method,
|
|
url,
|
|
headers=headers,
|
|
verify=verify,
|
|
json=data)
|
|
|
|
return resp
|