blob: 0d7fdf84a616f5b453e6e69f3ac7cc24618f558e (
plain)
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
|
# Copyright (C) 2020-2021 Soleta Networks <info@soleta.eu>
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the
# Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
from ogcp import app
import requests
import json
class OGServer:
def __init__(self, ip=app.config['IP'],
port=app.config['PORT'],
api_token=app.config['API_TOKEN']):
self.ip = ip
self.port = port
self.api_token = api_token
self._prepare_requests()
def _prepare_requests(self):
self.URL = f'http://{self.ip}:{self.port}'
self.HEADERS = {'Authorization' : self.api_token}
def get(self, path, payload=None):
r = requests.get(f'{self.URL}{path}',
headers=self.HEADERS,
json=payload)
return r
def post(self, path, payload):
r = requests.post(f'{self.URL}{path}',
headers=self.HEADERS,
json=payload)
return r
|