Source code for gs_interactive.client.status

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright 2020 Alibaba Group Holding Limited. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

from gs_interactive.api_response import ApiResponse
from gs_interactive.exceptions import ApiException
from gs_interactive.exceptions import BadRequestException
from gs_interactive.exceptions import ForbiddenException
from gs_interactive.exceptions import NotFoundException
from gs_interactive.exceptions import ServiceException

from gs_interactive.client.generated.interactive_pb2 import Code as StatusCode
from gs_interactive.models.api_response_with_code import APIResponseWithCode


[docs]class Status: """ This class represents the status of an operation. It contains the status code and the message. """
[docs] def __init__(self, status: StatusCode, message: str): """ Construct a new Status object with the specified status code and message. Args: status (StatusCode): the returnd code of the operation. message (str): the message returned by the operation. """ self.status = status self.message = message
def __str__(self): return f"Status: {self.status}, message: {self.message}" def __repr__(self): return f"Status: {self.status}, message: {self.message}"
[docs] def is_ok(self) -> bool: """ Whether the operation is successful. """ return self.status == StatusCode.OK
[docs] def is_error(self) -> bool: """ Whether the operation is failed. """ return self.status != StatusCode.OK
[docs] def get_code(self): """ Get the status code returned by the operation. """ return self.status
@property def get_message(self): """ Get the message returned by the operation. """ return self.message # static method create a server internal error object
[docs] @staticmethod def server_internal_error(message: str): """ Create a server internal error object with the specified message. """ return Status(StatusCode.INTERNAL_ERROR, message)
[docs] @staticmethod def from_exception(exception: ApiException): """ Create a Status object from an ApiException. """ # mapping from ApiException to StatusCode print("exception: ", exception) if isinstance(exception, BadRequestException): return Status(StatusCode.BAD_REQUEST, exception.body) elif isinstance(exception, ForbiddenException): return Status(StatusCode.PERMISSION_DENIED, exception.body) elif isinstance(exception, NotFoundException): return Status(StatusCode.NOT_FOUND, exception.body) elif isinstance(exception, ServiceException): if exception.status == 503: return Status(StatusCode.SERVICE_UNAVAILABLE, exception.body) else: return Status(StatusCode.INTERNAL_ERROR, exception.body) return Status( StatusCode.UNKNOWN, "Unknown Error from exception " + exception.body )
[docs] @staticmethod def from_response(response: ApiResponse): """ Create a Status object from an ApiResponse. """ # mapping from ApiResponse to StatusCode if response.status_code == 200: return Status(StatusCode.OK, "OK") else: # If the status_code is not 200, we expect APIReponseWithCode returned from server api_response_with_code = response.data if isinstance(api_response_with_code, APIResponseWithCode): return Status( api_response_with_code.code, api_response_with_code.message ) return Status(StatusCode.UNKNOWN, "Unknown Error")
[docs] @staticmethod def ok(): """ Create a successful status object. """ return Status(StatusCode.OK, "OK")