1
|
|
|
"""Decorators for Kytos-utils.""" |
2
|
1 |
|
import logging |
3
|
1 |
|
import os |
4
|
1 |
|
import sys |
5
|
1 |
|
from getpass import getpass |
6
|
|
|
|
7
|
1 |
|
import requests |
8
|
|
|
|
9
|
1 |
|
from kytos.utils.config import KytosConfig |
10
|
|
|
|
11
|
1 |
|
LOG = logging.getLogger(__name__) |
12
|
|
|
|
13
|
|
|
|
14
|
|
|
# This class is used as decorator, so this class name is lowercase and the |
15
|
|
|
# invalid-name warning from pylint is disabled below. |
16
|
1 |
|
class kytos_auth: # pylint: disable=invalid-name |
17
|
|
|
"""Class to be used as decorator to require authentication.""" |
18
|
|
|
|
19
|
1 |
|
def __init__(self, func): |
20
|
|
|
"""Init method. |
21
|
|
|
|
22
|
|
|
Save the function on the func attribute and bootstrap a new config. |
23
|
|
|
""" |
24
|
1 |
|
self.func = func |
25
|
1 |
|
self.config = KytosConfig().config |
26
|
1 |
|
self.cls = None |
27
|
1 |
|
self.obj = None |
28
|
|
|
|
29
|
1 |
|
def __call__(self, *args, **kwargs): |
30
|
|
|
"""Code run when func is called.""" |
31
|
1 |
|
if not (self.config.has_option('napps', 'api') and |
32
|
|
|
self.config.has_option('napps', 'repo')): |
33
|
1 |
|
uri = input("Enter the kytos napps server address: ") |
34
|
1 |
|
self.config.set('napps', 'api', os.path.join(uri, 'api', '')) |
35
|
1 |
|
self.config.set('napps', 'repo', os.path.join(uri, 'repo', '')) |
36
|
|
|
|
37
|
1 |
|
if not self.config.has_option('auth', 'user'): |
38
|
1 |
|
user = input("Enter the username: ") |
39
|
1 |
|
self.config.set('auth', 'user', user) |
40
|
|
|
else: |
41
|
|
|
user = self.config.get('auth', 'user') |
42
|
|
|
|
43
|
1 |
|
if not self.config.has_option('auth', 'token'): |
44
|
1 |
|
token = self.authenticate() |
45
|
|
|
else: |
46
|
|
|
token = self.config.get('auth', 'token') |
47
|
|
|
|
48
|
|
|
# Ignore private attribute warning. We don't wanna make it public only |
49
|
|
|
# because of a decorator. |
50
|
1 |
|
config = self.obj._config # pylint: disable=protected-access |
51
|
1 |
|
config.set('auth', 'user', user) |
52
|
1 |
|
config.set('auth', 'token', token) |
53
|
1 |
|
self.func.__call__(self.obj, *args, **kwargs) |
54
|
|
|
|
55
|
1 |
|
def __get__(self, instance, owner): |
56
|
|
|
"""Deal with owner class.""" |
57
|
1 |
|
self.cls = owner |
58
|
1 |
|
self.obj = instance |
59
|
|
|
|
60
|
1 |
|
return self.__call__ |
61
|
|
|
|
62
|
1 |
|
def authenticate(self): |
63
|
|
|
"""Check the user authentication.""" |
64
|
1 |
|
endpoint = os.path.join(self.config.get('napps', 'api'), 'auth', '') |
65
|
1 |
|
username = self.config.get('auth', 'user') |
66
|
1 |
|
password = getpass("Enter the password for {}: ".format(username)) |
67
|
1 |
|
response = requests.get(endpoint, auth=(username, password)) |
68
|
1 |
|
if response.status_code != 201: |
69
|
1 |
|
LOG.error(response.content) |
70
|
1 |
|
LOG.error('ERROR: %s: %s', response.status_code, response.reason) |
71
|
1 |
|
sys.exit(1) |
72
|
|
|
else: |
73
|
1 |
|
data = response.json() |
74
|
1 |
|
KytosConfig().save_token(username, data.get('hash')) |
75
|
|
|
return data.get('hash') |
76
|
|
|
|