79 lines
2 KiB
Python
79 lines
2 KiB
Python
from flask import jsonify, current_app
|
|
from flask_jwt_extended import jwt_required
|
|
from flask_cors import cross_origin
|
|
|
|
from sqlalchemy import func
|
|
from config import *
|
|
from .apps_service import AppsService
|
|
from database import db
|
|
|
|
from areas import api_v1
|
|
|
|
CONFIG_DATA = [
|
|
{
|
|
"id": "values.yml",
|
|
"description": "Some user friendly description",
|
|
"raw": "cronjob:\n # Set curl to accept insecure connections when acme staging is used\n curlInsecure: false",
|
|
"fields": [
|
|
{"name": "cronjob", "type": "string", "value": ""},
|
|
{"name": "curlInsecure", "type": "boolean", "value": "false"}
|
|
]
|
|
}
|
|
]
|
|
|
|
APPS_DATA = [
|
|
{"id": 1, "name": "Nextcloud", "enabled": True, "status": "ON for everyone"},
|
|
{"id": 2, "name": "Rocketchat", "enabled": True, "status": "ON for everyone"},
|
|
{"id": 3, "name": "Wordpress", "enabled": False, "status": "ON for everyone"}
|
|
]
|
|
|
|
APP_DATA = {"id": 1, "name": "Nextcloud", "selected": True, "status": "ON for everyone", "config": CONFIG_DATA},
|
|
|
|
APP_NOT_INSTALLED_STATUS = "Not installed"
|
|
|
|
|
|
@api_v1.route('/apps', methods=['GET'])
|
|
@jwt_required()
|
|
@cross_origin()
|
|
def get_apps():
|
|
apps = AppsService.get_all_apps()
|
|
for obj in apps:
|
|
current_app.logger.info(obj['slug'])
|
|
current_app.logger.info(str(obj))
|
|
return jsonify(apps)
|
|
|
|
|
|
@api_v1.route('/apps/<string:slug>', methods=['GET'])
|
|
#@jwt_required()
|
|
def get_app(slug):
|
|
|
|
app = AppsService.get_app(slug)
|
|
return jsonify(app)
|
|
|
|
|
|
@api_v1.route('/apps', methods=['POST'])
|
|
@jwt_required()
|
|
@cross_origin()
|
|
def post_app():
|
|
return jsonify(APPS_DATA), 201
|
|
|
|
|
|
@api_v1.route('/apps/<string:slug>', methods=['PUT'])
|
|
@jwt_required()
|
|
@cross_origin()
|
|
def put_app(slug):
|
|
return jsonify(APPS_DATA)
|
|
|
|
|
|
@api_v1.route('/apps/<string:slug>/config', methods=['GET'])
|
|
@jwt_required()
|
|
@cross_origin()
|
|
def get_config(slug):
|
|
return jsonify(CONFIG_DATA)
|
|
|
|
|
|
@api_v1.route('/apps/<string:slug>/config', methods=['DELETE'])
|
|
@jwt_required()
|
|
@cross_origin()
|
|
def delete_config(slug):
|
|
return jsonify(CONFIG_DATA)
|