1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- # -*- coding:utf-8 -*-
- import logging
- from flask import request
- from flask_login import login_required, current_user
- from flask_restful import Resource, fields, marshal_with, reqparse, marshal
- from controllers.console import api
- from controllers.console.setup import setup_required
- from controllers.console.error import AccountNotLinkTenantError
- from controllers.console.wraps import account_initialization_required
- from libs.helper import TimestampField
- from extensions.ext_database import db
- from models.account import Tenant
- from services.account_service import TenantService
- from services.workspace_service import WorkspaceService
- provider_fields = {
- 'provider_name': fields.String,
- 'provider_type': fields.String,
- 'is_valid': fields.Boolean,
- 'token_is_set': fields.Boolean,
- }
- tenant_fields = {
- 'id': fields.String,
- 'name': fields.String,
- 'plan': fields.String,
- 'status': fields.String,
- 'created_at': TimestampField,
- 'role': fields.String,
- 'providers': fields.List(fields.Nested(provider_fields)),
- 'in_trail': fields.Boolean,
- 'trial_end_reason': fields.String,
- }
- tenants_fields = {
- 'id': fields.String,
- 'name': fields.String,
- 'plan': fields.String,
- 'status': fields.String,
- 'created_at': TimestampField,
- 'current': fields.Boolean
- }
- class TenantListApi(Resource):
- @setup_required
- @login_required
- @account_initialization_required
- def get(self):
- tenants = TenantService.get_join_tenants(current_user)
- for tenant in tenants:
- if tenant.id == current_user.current_tenant_id:
- tenant.current = True # Set current=True for current tenant
- return {'workspaces': marshal(tenants, tenants_fields)}, 200
- class TenantApi(Resource):
- @setup_required
- @login_required
- @account_initialization_required
- @marshal_with(tenant_fields)
- def get(self):
- if request.path == '/info':
- logging.warning('Deprecated URL /info was used.')
- tenant = current_user.current_tenant
- return WorkspaceService.get_tenant_info(tenant), 200
- class SwitchWorkspaceApi(Resource):
- @setup_required
- @login_required
- @account_initialization_required
- def post(self):
- parser = reqparse.RequestParser()
- parser.add_argument('tenant_id', type=str, required=True, location='json')
- args = parser.parse_args()
- # check if tenant_id is valid, 403 if not
- try:
- TenantService.switch_tenant(current_user, args['tenant_id'])
- except Exception:
- raise AccountNotLinkTenantError("Account not link tenant")
- new_tenant = db.session.query(Tenant).get(args['tenant_id']) # Get new tenant
- return {'result': 'success', 'new_tenant': marshal(WorkspaceService.get_tenant_info(new_tenant), tenant_fields)}
- api.add_resource(TenantListApi, '/workspaces') # GET for getting all tenants
- api.add_resource(TenantApi, '/workspaces/current', endpoint='workspaces_current') # GET for getting current tenant info
- api.add_resource(TenantApi, '/info', endpoint='info') # Deprecated
- api.add_resource(SwitchWorkspaceApi, '/workspaces/switch') # POST for switching tenant
|