Newer
Older
Adam Laskowski
committed
# Copyright ETH 2018 - 2023 Zürich, Scientific IT Services
#
# 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 .openbis_object import OpenBisObject
from .property import PropertyHolder
from .utils import VERBOSE
def __init__(self, openbis_obj, type, data=None, props=None, **kwargs):
self.__dict__["entity"] = "material"
self.__dict__["openbis"] = openbis_obj
self.__dict__["type"] = type
self.__dict__["p"] = PropertyHolder(openbis_obj, type)
self.__dict__["a"] = AttrHolder(openbis_obj, "material", type)
if data is not None:
self._set_data(data)
if props is not None:
for key in props:
setattr(self.p, key, props[key])
if kwargs is not None:
for key in kwargs:
setattr(self, key, kwargs[key])
def __dir__(self):
return ["code", "description", "set_tags()", "add_tags()", "del_tags()"]
for prop_name, prop in self.props._property_names.items():
if prop["mandatory"]:
if (
getattr(self.props, prop_name) is None
or getattr(self.props, prop_name) == ""
):
raise ValueError(
f"Property '{prop_name}' is mandatory and must not be None"
props = self.p._all_props()
if self.is_new:
request = self._new_attrs()
request["params"][1][0]["properties"] = props
resp = self.openbis._post_request(self.openbis.as_v3, request)
if VERBOSE:
print("Material successfully created.")
new_material_data = self.openbis.get_tag(resp[0]["permId"], only_data=True)
self._set_data(new_material_data)
return self
else:
request = self._up_attrs()
request["params"][1][0]["properties"] = props
self.openbis._post_request(self.openbis.as_v3, request)
if VERBOSE:
print("Material successfully updated.")
new_material_data = self.openbis.get_tag(self.permId, only_data=True)
self._set_data(new_material_data)
def delete(self, reason="no reason"):
self.openbis.delete_entity(entity=self.entity, id=self.permId, reason=reason)
if VERBOSE:
print(f"Material {self.permId} successfully deleted.")