Source code for api.currentuser.v1.picture
"""Autogenerated API"""
from argus_cli.plugin import register_command
[docs]@register_command(extending=("currentuser","v1","picture"))
def get_profile_picture(
json: bool = True,
verify: bool = True,
apiKey: str = None,
authentication: dict = {}
) -> dict:
"""Get current user's profile picture (PUBLIC)
:raises AuthenticationFailedException: on 401
:raises AccessDeniedException: on 403
:raises ProfilePictureNotFoundException: on 404
:returns: {}
"""
from requests import get
from argus_api.exceptions import http
url = "https://portal.mnemonic.no/web/api/currentuser/v1/picture".format()
headers = {
'Content-Type': 'application/json',
'User-Agent': 'ArgusToolbelt/'
}
if apiKey:
headers["Argus-API-Key"] = apiKey
elif authentication and isinstance(authentication, dict):
headers.update(authentication)
elif callable(authentication):
headers.update(authentication(url))
body = {
}
response = get(url,
json=body if body else None,
verify=verify,
headers=headers
)
if response.status_code == 401:
raise http.AuthenticationFailedException(response)
elif response.status_code == 403:
raise http.AccessDeniedException(response)
elif response.status_code == 412:
raise http.ValidationErrorException(response)
elif response.status_code == 404:
raise http.ObjectNotFoundException(response)
return response.json() if json else response
[docs]@register_command(extending=("currentuser","v1","picture"))
def update_profile_picture(
picture: str = None,
json: bool = True,
verify: bool = True,
apiKey: str = None,
authentication: dict = {}
) -> dict:
"""Set current user's profile picture (PUBLIC)
:param str picture: Image data url
:raises AuthenticationFailedException: on 401
:raises AccessDeniedException: on 403
:returns: {'offset': 867, 'limit': 417, 'responseCode': 200, 'count': 96, 'metaData': {'additionalProperties': {}}, 'messages': [{'message': 'Let force center lot wrong pull.', 'messageTemplate': 'Improve tend major.', 'field': 'Type despite force because rich eight.', 'parameter': {}, 'timestamp': 806781491}], 'currentPage': 155, 'size': 154}
"""
from requests import put
from argus_api.exceptions import http
url = "https://portal.mnemonic.no/web/api/currentuser/v1/picture".format()
headers = {
'Content-Type': 'application/json',
'User-Agent': 'ArgusToolbelt/'
}
if apiKey:
headers["Argus-API-Key"] = apiKey
elif authentication and isinstance(authentication, dict):
headers.update(authentication)
elif callable(authentication):
headers.update(authentication(url))
body = {
"picture": picture
}
response = put(url,
json=body if body else None,
verify=verify,
headers=headers
)
if response.status_code == 401:
raise http.AuthenticationFailedException(response)
elif response.status_code == 403:
raise http.AccessDeniedException(response)
elif response.status_code == 412:
raise http.ValidationErrorException(response)
elif response.status_code == 404:
raise http.ObjectNotFoundException(response)
return response.json() if json else response