mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-20 20:22:09 +00:00
46 lines
1.7 KiB
Python
46 lines
1.7 KiB
Python
import time
|
|
import ifcopenshell
|
|
import ifcopenshell.api.owner.settings
|
|
|
|
|
|
class Usecase:
|
|
def __init__(self, file, **settings):
|
|
self.file = file
|
|
self.settings = {}
|
|
for key, value in settings.items():
|
|
self.settings[key] = value
|
|
|
|
def execute(self):
|
|
self.settings["person"] = ifcopenshell.api.owner.settings.get_person(self.file)
|
|
self.settings["organisation"] = ifcopenshell.api.owner.settings.get_organisation(self.file)
|
|
application = ifcopenshell.api.owner.settings.get_application(self.file)
|
|
if self.file.schema != "IFC2X3":
|
|
if not self.settings["person"] or not self.settings["organisation"] or not application:
|
|
return
|
|
user = self.get_user()
|
|
return self.file.create_entity(
|
|
"IfcOwnerHistory",
|
|
**{
|
|
"OwningUser": user,
|
|
"OwningApplication": application,
|
|
"State": "READWRITE",
|
|
"ChangeAction": "ADDED",
|
|
"LastModifiedDate": int(time.time()),
|
|
"LastModifyingUser": user,
|
|
"LastModifyingApplication": application,
|
|
"CreationDate": int(time.time()),
|
|
},
|
|
)
|
|
|
|
def get_user(self):
|
|
for element in self.file.by_type("IfcPersonAndOrganization"):
|
|
if (
|
|
element.ThePerson == self.settings["person"]
|
|
and element.TheOrganization == self.settings["organisation"]
|
|
):
|
|
return element
|
|
return self.file.create_entity(
|
|
"IfcPersonAndOrganization",
|
|
**{"ThePerson": self.settings["person"], "TheOrganization": self.settings["organisation"]},
|
|
)
|