erp5_jio_connector: create Business Template
`erp5_jio_connector` allows making requests to ERP5 APIs as defined in the `erp5_api_style` BT5.
Showing
# -*- coding: utf-8 -*- | |||
############################################################################## | |||
# | |||
# Copyright (c) 2024 Nexedi SA and Contributors. All Rights Reserved. | |||
# | |||
# WARNING: This program as such is intended to be used by professional | |||
# programmers who take the whole responsibility of assessing all potential | |||
# consequences resulting from its eventual inadequacies and bugs | |||
# End users who are looking for a ready-to-use solution with commercial | |||
# guarantees and support are strongly adviced to contract a Free Software | |||
# Service Company | |||
# | |||
# This program is Free Software; you can redistribute it and/or | |||
# modify it under the terms of the GNU General Public License | |||
# as published by the Free Software Foundation; either version 2 | |||
# 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 General Public License for more details. | |||
# | |||
# You should have received a copy of the GNU General Public License | |||
# along with this program; if not, write to the Free Software | |||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |||
# | |||
############################################################################## | |||
from AccessControl import ClassSecurityInfo | |||
from Products.ERP5Type import Permissions, PropertySheet | |||
from Products.ERP5Type.XMLObject import XMLObject | |||
import requests | |||
class JioApiConnector(XMLObject): | |||
# CMF Type Definition | |||
meta_type = 'jIO API Connector' | |||
portal_type = 'jIO API Connector' | |||
# Declarative security | |||
security = ClassSecurityInfo() | |||
security.declareObjectProtected(Permissions.AccessContentsInformation) | |||
# Declarative properties | |||
property_sheets = ( PropertySheet.Base | |||
, PropertySheet.XMLObject | |||
, PropertySheet.CategoryCore | |||
, PropertySheet.DublinCore | |||
) | |||
def _sendToApi(self, path, request_dict): | |||
get_url = self.getUrlString() + path | |||
user_credentials = (self.getUserId(), self.getPassword()) | |||
r = requests.post(get_url, json=request_dict, auth=user_credentials) | |||
|
|||
if r.status_code not in [200, 201]: | |||
return None | |||
return r.json() | |||
def getFromApi(self, request_dict): | |||
return self._sendToApi("/get", request_dict) | |||
def postToApi(self, request_dict): | |||
return self._sendToApi("/post", request_dict) | |||
def putToApi(self, request_dict): | |||
return self._sendToApi("/put", request_dict) |
This diff is collapsed.