Skip to content

Commit

Permalink
Merge pull request #91 from VukManojlovic/CTX-4793
Browse files Browse the repository at this point in the history
CTX-4793: Moved request functions success and badRequest to networking.utils
  • Loading branch information
igorperic17 authored Nov 6, 2023
2 parents 2061907 + 0b4a92f commit a87f7d4
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions coretex/functions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Copyright (C) 2023 Coretex LLC

# This file is part of Coretex.ai

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.

# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

from typing import Optional, Any, Dict


def badRequest(error: str) -> Dict[str, Any]:
"""
Creates a json object for bad request
Parameters
----------
error : str
Error message
Returns
-------
dict -> Json object for bad request
"""

return {
"code": 400,
"body": {
"error": error
}
}


def success(data: Optional[Any] = None) -> Dict[str, Any]:
"""
Creates a json object for successful request
Parameters
----------
data : Optional[Any]
Response data
Returns
-------
dict -> Json object for successful request
"""

if data is None:
data = {}

return {
"code": 200,
"body": data
}

0 comments on commit a87f7d4

Please sign in to comment.