mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-19 14:41:25 +00:00
145 lines
5.1 KiB
Python
145 lines
5.1 KiB
Python
# Bonsai - OpenBIM Blender Add-on
|
|
# Copyright (C) 2020, 2021 Dion Moult <dion@thinkmoult.com>
|
|
#
|
|
# This file is part of Bonsai.
|
|
#
|
|
# Bonsai 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 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Bonsai 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 Bonsai. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import os
|
|
import bpy
|
|
import string
|
|
import random
|
|
import shutil
|
|
import requests
|
|
import tempfile
|
|
import datetime
|
|
import blenderbim.tool as tool
|
|
|
|
|
|
class AuginLogin(bpy.types.Operator):
|
|
bl_idname = "bim.augin_login"
|
|
bl_label = "Login to Augin"
|
|
bl_options = {"REGISTER", "UNDO"}
|
|
|
|
def execute(self, context):
|
|
props = context.scene.AuginProperties
|
|
|
|
url = "https://server.auge.pro.br/API/v3/augin_rest.php/user_login"
|
|
payload = {"email": props.username, "password": props.password}
|
|
response = requests.request("POST", url, data=payload)
|
|
result = response.json()
|
|
|
|
if result["success_feedback"]["success"]:
|
|
props.token = result["token"]
|
|
else:
|
|
self.report({"ERROR"}, "Login failed :(")
|
|
return {"FINISHED"}
|
|
|
|
|
|
class AuginReset(bpy.types.Operator):
|
|
bl_idname = "bim.augin_reset"
|
|
bl_label = "Upload Another Project"
|
|
bl_options = {"REGISTER", "UNDO"}
|
|
|
|
def execute(self, context):
|
|
props = context.scene.AuginProperties
|
|
props.is_success = False
|
|
return {"FINISHED"}
|
|
|
|
|
|
class AuginCreateNewModel(bpy.types.Operator):
|
|
bl_idname = "bim.augin_create_new_model"
|
|
bl_label = "Create New Augin Model"
|
|
bl_options = {"REGISTER", "UNDO"}
|
|
|
|
def execute(self, context):
|
|
import boto3
|
|
from botocore.config import Config
|
|
|
|
props = context.scene.AuginProperties
|
|
|
|
# Create project
|
|
url = "https://server.auge.pro.br/API/v3/augin_rest.php/new_model"
|
|
|
|
chars = string.ascii_uppercase + string.ascii_lowercase + string.digits
|
|
props.project_filename = "BBM{}{}".format(
|
|
datetime.datetime.now().strftime("%Y%m%d%H%M%S"), "".join(random.choice(chars) for _ in range(6))
|
|
)
|
|
addon_version = tool.Blender.get_blenderbim_version()
|
|
|
|
payload = {
|
|
"user_token": props.token,
|
|
"partner_token": "Mmf2zpxdgrkHaUNRm6Cv7GLJdBAeb7Rn",
|
|
"project_name": props.project_name,
|
|
"model_filename": props.project_filename + ".ifc",
|
|
"thumb_filename": props.project_filename + ".png",
|
|
"app_name": "BlenderBIM",
|
|
"sw_version": bpy.app.version_string,
|
|
"plugin_version": addon_version,
|
|
}
|
|
response = requests.request("POST", url, data=payload)
|
|
result = response.json()
|
|
|
|
# Upload to S3
|
|
my_config = Config(
|
|
region_name=result["s3_region"],
|
|
)
|
|
|
|
client = boto3.client(
|
|
"s3",
|
|
aws_access_key_id=result["s3_key"],
|
|
aws_secret_access_key=result["s3_secret"],
|
|
aws_session_token=result["s3_token"],
|
|
config=my_config,
|
|
)
|
|
|
|
# Generate thumb
|
|
old_file_format = context.scene.render.image_settings.file_format
|
|
old_filepath = context.scene.render.filepath
|
|
|
|
cam = bpy.data.cameras.new("Camera")
|
|
cam_obj = bpy.data.objects.new("Camera", cam)
|
|
context.scene.collection.objects.link(cam_obj)
|
|
context.scene.camera = cam_obj
|
|
|
|
tmpdir = tempfile.mkdtemp()
|
|
thumb_path = os.path.join(tmpdir, "thumb.png")
|
|
context.scene.render.image_settings.file_format = "PNG"
|
|
context.scene.render.filepath = thumb_path
|
|
bpy.ops.render.opengl(write_still=True)
|
|
|
|
context.scene.render.image_settings.file_format = old_file_format
|
|
context.scene.render.filepath = old_filepath
|
|
|
|
client.upload_file(context.scene.BIMProperties.ifc_file, result["s3_bucket"], result["model_path"])
|
|
client.upload_file(thumb_path, result["s3_bucket"], result["thumb_path"])
|
|
|
|
# Notify done
|
|
url = "https://server.auge.pro.br/API/v3/augin_rest.php/files_uploaded"
|
|
payload = {
|
|
"user_token": props.token,
|
|
"ifc_filesize": os.path.getsize(context.scene.BIMProperties.ifc_file),
|
|
"model_filesize": os.path.getsize(context.scene.BIMProperties.ifc_file),
|
|
"thumb_filesize": os.path.getsize(thumb_path),
|
|
"model_upload_path": result["model_path"],
|
|
"thumb_upload_path": result["thumb_path"],
|
|
"model_id": result["model_id"],
|
|
}
|
|
headers = {"Content-Type": "application/x-www-form-urlencoded"}
|
|
response = requests.request("POST", url, headers=headers, data=payload)
|
|
|
|
shutil.rmtree(tmpdir)
|
|
props.is_success = True
|
|
return {"FINISHED"}
|