aboutsummaryrefslogtreecommitdiffstats
path: root/moon_manager/moon_manager/api/auth.py
blob: a60fd72706074b597efa5fa3cdf9a11e4172bc36 (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
37
38
39
40
41
42
# Software Name: MOON

# Version: 5.4

# SPDX-FileCopyrightText: Copyright (c) 2018-2020 Orange and its contributors
# SPDX-License-Identifier: Apache-2.0

# This software is distributed under the 'Apache License 2.0',
# the text of which is available at 'http://www.apache.org/licenses/LICENSE-2.0.txt'
# or see the "LICENSE" file for more details.


"""Auth API"""
from falcon import HTTP_204, HTTP_400
import hug
import logging
from moon_utilities.auth_functions import basic_authentication, api_key_authentication
from moon_utilities.auth_functions import get_api_key_for_user, del_api_key_for_user

logger = logging.getLogger("moon.manager.api.status")


@hug.get("/auth/", requires=basic_authentication)
def get_api_key(authed_user: hug.directives.user = None):
    """
    Get API key
    :return: API key
    """
    return get_api_key_for_user(authed_user)


@hug.delete("/auth/", requires=api_key_authentication)
def del_api_key(response, authed_user: hug.directives.user = None):
    """
    Delete API key
    :return: None
    """
    if del_api_key_for_user(authed_user):
        response.status = HTTP_204
    else:
        response.status = HTTP_400
    return