selfprivacy-rest-api/selfprivacy_api/resources/services/nextcloud.py

67 lines
1.5 KiB
Python
Raw Normal View History

2021-11-11 20:31:28 +02:00
#!/usr/bin/env python3
2021-11-16 18:14:01 +02:00
"""Nextcloud management module"""
from flask_restful import Resource
2021-11-11 20:31:28 +02:00
from selfprivacy_api.resources.services import api
2021-11-22 18:50:50 +02:00
from selfprivacy_api.utils import WriteUserData
2021-11-11 20:31:28 +02:00
2021-11-16 18:14:01 +02:00
2021-11-11 20:31:28 +02:00
class EnableNextcloud(Resource):
2021-11-16 18:14:01 +02:00
"""Enable Nextcloud"""
2021-11-11 20:31:28 +02:00
def post(self):
2021-11-16 18:14:01 +02:00
"""
Enable Nextcloud
---
tags:
- Nextcloud
security:
- bearerAuth: []
responses:
200:
description: Nextcloud enabled
401:
description: Unauthorized
"""
2021-11-22 18:50:50 +02:00
with WriteUserData() as data:
if "nextcloud" not in data:
data["nextcloud"] = {}
data["nextcloud"]["enable"] = True
2021-11-11 20:31:28 +02:00
return {
"status": 0,
"message": "Nextcloud enabled",
}
class DisableNextcloud(Resource):
2021-11-16 18:14:01 +02:00
"""Disable Nextcloud"""
2021-11-11 20:31:28 +02:00
def post(self):
2021-11-16 18:14:01 +02:00
"""
Disable Nextcloud
---
tags:
- Nextcloud
security:
- bearerAuth: []
responses:
200:
description: Nextcloud disabled
401:
description: Unauthorized
"""
2021-11-22 18:50:50 +02:00
with WriteUserData() as data:
if "nextcloud" not in data:
data["nextcloud"] = {}
data["nextcloud"]["enable"] = False
2021-11-11 20:31:28 +02:00
return {
"status": 0,
"message": "Nextcloud disabled",
}
api.add_resource(EnableNextcloud, "/nextcloud/enable")
api.add_resource(DisableNextcloud, "/nextcloud/disable")