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