Compare commits
51 Commits
version-1.
...
public
Author | SHA1 | Date | |
---|---|---|---|
a81c1c80a8 | |||
e777d67922 | |||
7edeff5ee1 | |||
63b976cb44 | |||
73a62da8da | |||
2c70ceb489 | |||
38ccb54b50 | |||
1df113ca01 | |||
887a9cc697 | |||
143456ae1d | |||
f41ea8c5a3 | |||
7d90a92e24 | |||
2388f800dc | |||
38a3bcba71 | |||
2cf400a74c | |||
54ebb0bf5d | |||
9e84d2a416 | |||
772e6b0b1b | |||
b6232c8c13 | |||
6d4ba51c6c | |||
b9caecfce9 | |||
4ce8db88c6 | |||
dfff0cb55b | |||
1a515bfbda | |||
a47dfa8f32 | |||
8890ad5421 | |||
f0d42ed2cc | |||
76ca59251b | |||
b33ec74347 | |||
b5e33c52c1 | |||
8b56918989 | |||
99257bd88b | |||
c2363d248b | |||
3776246d70 | |||
9bc8c30443 | |||
56b622a723 | |||
8edf9c7428 | |||
10bf3e62ec | |||
3ec1a3d26d | |||
3ce89ad5f4 | |||
7cf858855e | |||
a10b4a804c | |||
514968de40 | |||
c73dce169f | |||
369e082880 | |||
6cd9cb1713 | |||
37f701edaf | |||
b04f9adb40 | |||
70a0aba10a | |||
f6d05c4c84 | |||
8e9d62b5c5 |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,10 +1,10 @@
|
|||||||
*.pyc
|
*.pyc
|
||||||
*.swp
|
*.swp
|
||||||
*.blend
|
/*.blend*
|
||||||
*.blend[1-9]
|
|
||||||
blender_cloud/wheels/*.whl
|
blender_cloud/wheels/*.whl
|
||||||
/textures*/
|
/textures*/
|
||||||
/test_*.py
|
/test_*.py
|
||||||
/dist/
|
/dist/
|
||||||
/build/
|
/build/
|
||||||
/addon-bundle/*.zip
|
/addon-bundle/*.zip
|
||||||
|
__pycache__
|
||||||
|
@@ -1,10 +1,30 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# ##### END GPL LICENSE BLOCK #####
|
||||||
|
|
||||||
cd $(dirname $(readlink -f $0))
|
cd $(dirname $(readlink -f $0))
|
||||||
|
|
||||||
BCLOUD=$(ls ../dist/blender_cloud-*.addon.zip | tail -n 1)
|
BCLOUD=$(ls ../dist/blender_cloud-*.addon.zip | tail -n 1)
|
||||||
BID=$(ls ../../../blender-id-addon/dist/blender_id-*.addon.zip | tail -n 1)
|
BID=$(ls ../../../blender-id-addon/dist/blender_id-*.addon.zip | tail -n 1)
|
||||||
|
|
||||||
|
[ -z "$BCLOUD" ] && echo "BCloud addon not found" >&2
|
||||||
|
[ -z "$BID" ] && echo "B'ID addon not found" >&2
|
||||||
|
|
||||||
cp -va $BCLOUD $BID .
|
cp -va $BCLOUD $BID .
|
||||||
|
|
||||||
BUNDLE=$(basename $BCLOUD)
|
BUNDLE=$(basename $BCLOUD)
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
bl_info = {
|
bl_info = {
|
||||||
'name': 'Blender Cloud',
|
'name': 'Blender Cloud',
|
||||||
'author': 'Sybren A. Stüvel and Francesco Siddi',
|
'author': 'Sybren A. Stüvel and Francesco Siddi',
|
||||||
'version': (1, 3, 3),
|
'version': (1, 4, 4),
|
||||||
'blender': (2, 77, 0),
|
'blender': (2, 77, 0),
|
||||||
'location': 'Addon Preferences panel, and Ctrl+Shift+Alt+A anywhere for texture browser',
|
'location': 'Addon Preferences panel, and Ctrl+Shift+Alt+A anywhere for texture browser',
|
||||||
'description': 'Texture library browser and Blender Sync. Requires the Blender ID addon '
|
'description': 'Texture library browser and Blender Sync. Requires the Blender ID addon '
|
||||||
@@ -29,7 +29,6 @@ bl_info = {
|
|||||||
'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.6/Py/'
|
'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.6/Py/'
|
||||||
'Scripts/System/BlenderCloud',
|
'Scripts/System/BlenderCloud',
|
||||||
'category': 'System',
|
'category': 'System',
|
||||||
'support': 'OFFICIAL'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
@@ -72,6 +71,7 @@ def register():
|
|||||||
|
|
||||||
reload_mod('blendfile')
|
reload_mod('blendfile')
|
||||||
reload_mod('home_project')
|
reload_mod('home_project')
|
||||||
|
reload_mod('utils')
|
||||||
|
|
||||||
blender = reload_mod('blender')
|
blender = reload_mod('blender')
|
||||||
async_loop = reload_mod('async_loop')
|
async_loop = reload_mod('async_loop')
|
||||||
|
@@ -1,3 +1,21 @@
|
|||||||
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# ##### END GPL LICENSE BLOCK #####
|
||||||
|
|
||||||
"""Manages the asyncio loop."""
|
"""Manages the asyncio loop."""
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
@@ -160,12 +178,31 @@ class AsyncModalOperatorMixin:
|
|||||||
log = logging.getLogger('%s.AsyncModalOperatorMixin' % __name__)
|
log = logging.getLogger('%s.AsyncModalOperatorMixin' % __name__)
|
||||||
|
|
||||||
_state = 'INITIALIZING'
|
_state = 'INITIALIZING'
|
||||||
|
stop_upon_exception = False
|
||||||
|
|
||||||
def invoke(self, context, event):
|
def invoke(self, context, event):
|
||||||
context.window_manager.modal_handler_add(self)
|
context.window_manager.modal_handler_add(self)
|
||||||
self.timer = context.window_manager.event_timer_add(1 / 15, context.window)
|
self.timer = context.window_manager.event_timer_add(1 / 15, context.window)
|
||||||
|
|
||||||
|
self.log.info('Starting')
|
||||||
|
self._new_async_task(self.async_execute(context))
|
||||||
|
|
||||||
return {'RUNNING_MODAL'}
|
return {'RUNNING_MODAL'}
|
||||||
|
|
||||||
|
async def async_execute(self, context):
|
||||||
|
"""Entry point of the asynchronous operator.
|
||||||
|
|
||||||
|
Implement in a subclass.
|
||||||
|
"""
|
||||||
|
return
|
||||||
|
|
||||||
|
def quit(self):
|
||||||
|
"""Signals the state machine to stop this operator from running."""
|
||||||
|
self._state = 'QUIT'
|
||||||
|
|
||||||
|
def execute(self, context):
|
||||||
|
return self.invoke(context, None)
|
||||||
|
|
||||||
def modal(self, context, event):
|
def modal(self, context, event):
|
||||||
task = self.async_task
|
task = self.async_task
|
||||||
|
|
||||||
@@ -174,6 +211,11 @@ class AsyncModalOperatorMixin:
|
|||||||
if ex is not None:
|
if ex is not None:
|
||||||
self._state = 'EXCEPTION'
|
self._state = 'EXCEPTION'
|
||||||
self.log.error('Exception while running task: %s', ex)
|
self.log.error('Exception while running task: %s', ex)
|
||||||
|
if self.stop_upon_exception:
|
||||||
|
self.quit()
|
||||||
|
self._finish(context)
|
||||||
|
return {'FINISHED'}
|
||||||
|
|
||||||
return {'RUNNING_MODAL'}
|
return {'RUNNING_MODAL'}
|
||||||
|
|
||||||
if self._state == 'QUIT':
|
if self._state == 'QUIT':
|
||||||
|
@@ -1,3 +1,21 @@
|
|||||||
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# ##### END GPL LICENSE BLOCK #####
|
||||||
|
|
||||||
"""Blender-specific code.
|
"""Blender-specific code.
|
||||||
|
|
||||||
Separated from __init__.py so that we can import & run from non-Blender environments.
|
Separated from __init__.py so that we can import & run from non-Blender environments.
|
||||||
@@ -9,11 +27,12 @@ import os.path
|
|||||||
import bpy
|
import bpy
|
||||||
from bpy.types import AddonPreferences, Operator, WindowManager, Scene, PropertyGroup
|
from bpy.types import AddonPreferences, Operator, WindowManager, Scene, PropertyGroup
|
||||||
from bpy.props import StringProperty, EnumProperty, PointerProperty, BoolProperty
|
from bpy.props import StringProperty, EnumProperty, PointerProperty, BoolProperty
|
||||||
|
import rna_prop_ui
|
||||||
|
|
||||||
from . import pillar
|
from . import pillar
|
||||||
|
|
||||||
PILLAR_SERVER_URL = 'https://cloudapi.blender.org/'
|
PILLAR_SERVER_URL = 'https://cloud.blender.org/api/'
|
||||||
# PILLAR_SERVER_URL = 'http://localhost:5000/'
|
# PILLAR_SERVER_URL = 'http://pillar:5001/api/'
|
||||||
|
|
||||||
ADDON_NAME = 'blender_cloud'
|
ADDON_NAME = 'blender_cloud'
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
@@ -229,6 +248,7 @@ class PillarCredentialsUpdate(pillar.PillarOperatorMixin,
|
|||||||
"""Updates the Pillar URL and tests the new URL."""
|
"""Updates the Pillar URL and tests the new URL."""
|
||||||
bl_idname = 'pillar.credentials_update'
|
bl_idname = 'pillar.credentials_update'
|
||||||
bl_label = 'Update credentials'
|
bl_label = 'Update credentials'
|
||||||
|
bl_description = 'Updates the Pillar URL and tests the new URL'
|
||||||
|
|
||||||
log = logging.getLogger('bpy.ops.%s' % bl_idname)
|
log = logging.getLogger('bpy.ops.%s' % bl_idname)
|
||||||
|
|
||||||
@@ -275,6 +295,7 @@ class PILLAR_OT_subscribe(Operator):
|
|||||||
"""Opens a browser to subscribe the user to the Cloud."""
|
"""Opens a browser to subscribe the user to the Cloud."""
|
||||||
bl_idname = 'pillar.subscribe'
|
bl_idname = 'pillar.subscribe'
|
||||||
bl_label = 'Subscribe to the Cloud'
|
bl_label = 'Subscribe to the Cloud'
|
||||||
|
bl_description = 'Opens a browser to subscribe the user to the Cloud'
|
||||||
|
|
||||||
def execute(self, context):
|
def execute(self, context):
|
||||||
import webbrowser
|
import webbrowser
|
||||||
@@ -285,6 +306,17 @@ class PILLAR_OT_subscribe(Operator):
|
|||||||
return {'FINISHED'}
|
return {'FINISHED'}
|
||||||
|
|
||||||
|
|
||||||
|
class PILLAR_PT_image_custom_properties(rna_prop_ui.PropertyPanel, bpy.types.Panel):
|
||||||
|
"""Shows custom properties in the image editor."""
|
||||||
|
|
||||||
|
bl_space_type = 'IMAGE_EDITOR'
|
||||||
|
bl_region_type = 'UI'
|
||||||
|
bl_label = 'Custom Properties'
|
||||||
|
|
||||||
|
_context_path = 'edit_image'
|
||||||
|
_property_type = bpy.types.Image
|
||||||
|
|
||||||
|
|
||||||
def preferences() -> BlenderCloudPreferences:
|
def preferences() -> BlenderCloudPreferences:
|
||||||
return bpy.context.user_preferences.addons[ADDON_NAME].preferences
|
return bpy.context.user_preferences.addons[ADDON_NAME].preferences
|
||||||
|
|
||||||
@@ -327,6 +359,7 @@ def register():
|
|||||||
bpy.utils.register_class(PillarCredentialsUpdate)
|
bpy.utils.register_class(PillarCredentialsUpdate)
|
||||||
bpy.utils.register_class(SyncStatusProperties)
|
bpy.utils.register_class(SyncStatusProperties)
|
||||||
bpy.utils.register_class(PILLAR_OT_subscribe)
|
bpy.utils.register_class(PILLAR_OT_subscribe)
|
||||||
|
bpy.utils.register_class(PILLAR_PT_image_custom_properties)
|
||||||
|
|
||||||
addon_prefs = preferences()
|
addon_prefs = preferences()
|
||||||
|
|
||||||
@@ -358,6 +391,7 @@ def unregister():
|
|||||||
bpy.utils.unregister_class(BlenderCloudPreferences)
|
bpy.utils.unregister_class(BlenderCloudPreferences)
|
||||||
bpy.utils.unregister_class(SyncStatusProperties)
|
bpy.utils.unregister_class(SyncStatusProperties)
|
||||||
bpy.utils.unregister_class(PILLAR_OT_subscribe)
|
bpy.utils.unregister_class(PILLAR_OT_subscribe)
|
||||||
|
bpy.utils.unregister_class(PILLAR_PT_image_custom_properties)
|
||||||
|
|
||||||
del WindowManager.last_blender_cloud_location
|
del WindowManager.last_blender_cloud_location
|
||||||
del WindowManager.blender_sync_status
|
del WindowManager.blender_sync_status
|
||||||
|
@@ -1,3 +1,21 @@
|
|||||||
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# ##### END GPL LICENSE BLOCK #####
|
||||||
|
|
||||||
"""HTTP Cache management.
|
"""HTTP Cache management.
|
||||||
|
|
||||||
This module configures a cached session for the Requests package.
|
This module configures a cached session for the Requests package.
|
||||||
|
@@ -1,3 +1,21 @@
|
|||||||
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# ##### END GPL LICENSE BLOCK #####
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
import pillarsdk
|
import pillarsdk
|
||||||
|
@@ -1,3 +1,21 @@
|
|||||||
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# ##### END GPL LICENSE BLOCK #####
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
import os.path
|
import os.path
|
||||||
import tempfile
|
import tempfile
|
||||||
@@ -89,14 +107,7 @@ class PILLAR_OT_image_share(pillar.PillarOperatorMixin,
|
|||||||
self.report({'ERROR'}, 'Datablock is dirty, save it first.')
|
self.report({'ERROR'}, 'Datablock is dirty, save it first.')
|
||||||
return {'CANCELLED'}
|
return {'CANCELLED'}
|
||||||
|
|
||||||
async_loop.AsyncModalOperatorMixin.invoke(self, context, event)
|
return async_loop.AsyncModalOperatorMixin.invoke(self, context, event)
|
||||||
|
|
||||||
self.log.info('Starting sharing')
|
|
||||||
self._new_async_task(self.async_execute(context))
|
|
||||||
return {'RUNNING_MODAL'}
|
|
||||||
|
|
||||||
def execute(self, context):
|
|
||||||
return self.invoke(context, None)
|
|
||||||
|
|
||||||
async def async_execute(self, context):
|
async def async_execute(self, context):
|
||||||
"""Entry point of the asynchronous operator."""
|
"""Entry point of the asynchronous operator."""
|
||||||
@@ -106,15 +117,15 @@ class PILLAR_OT_image_share(pillar.PillarOperatorMixin,
|
|||||||
try:
|
try:
|
||||||
# Refresh credentials
|
# Refresh credentials
|
||||||
try:
|
try:
|
||||||
self.user_id = await self.check_credentials(context,
|
db_user = await self.check_credentials(context, REQUIRES_ROLES_FOR_IMAGE_SHARING)
|
||||||
REQUIRES_ROLES_FOR_IMAGE_SHARING)
|
self.user_id = db_user['_id']
|
||||||
self.log.debug('Found user ID: %s', self.user_id)
|
self.log.debug('Found user ID: %s', self.user_id)
|
||||||
except pillar.NotSubscribedToCloudError:
|
except pillar.NotSubscribedToCloudError:
|
||||||
self.log.exception('User not subscribed to cloud.')
|
self.log.exception('User not subscribed to cloud.')
|
||||||
self.report({'ERROR'}, 'Please subscribe to the Blender Cloud.')
|
self.report({'ERROR'}, 'Please subscribe to the Blender Cloud.')
|
||||||
self._state = 'QUIT'
|
self._state = 'QUIT'
|
||||||
return
|
return
|
||||||
except pillar.CredentialsNotSyncedError:
|
except pillar.UserNotLoggedInError:
|
||||||
self.log.exception('Error checking/refreshing credentials.')
|
self.log.exception('Error checking/refreshing credentials.')
|
||||||
self.report({'ERROR'}, 'Please log in on Blender ID first.')
|
self.report({'ERROR'}, 'Please log in on Blender ID first.')
|
||||||
self._state = 'QUIT'
|
self._state = 'QUIT'
|
||||||
@@ -272,7 +283,7 @@ class PILLAR_OT_image_share(pillar.PillarOperatorMixin,
|
|||||||
async def upload_screenshot(self, context) -> pillarsdk.Node:
|
async def upload_screenshot(self, context) -> pillarsdk.Node:
|
||||||
"""Takes a screenshot, saves it to a temp file, and uploads it."""
|
"""Takes a screenshot, saves it to a temp file, and uploads it."""
|
||||||
|
|
||||||
self.name = datetime.datetime.now().strftime('Screenshot-%Y-%m-%d-%H:%M:%S.png')
|
self.name = datetime.datetime.now().strftime('Screenshot-%Y-%m-%d-%H%M%S.png')
|
||||||
self.report({'INFO'}, "Uploading %s '%s'" % (self.target.lower(), self.name))
|
self.report({'INFO'}, "Uploading %s '%s'" % (self.target.lower(), self.name))
|
||||||
|
|
||||||
with tempfile.TemporaryDirectory() as tmpdir:
|
with tempfile.TemporaryDirectory() as tmpdir:
|
||||||
|
@@ -1,4 +1,23 @@
|
|||||||
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# ##### END GPL LICENSE BLOCK #####
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
|
import datetime
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import functools
|
import functools
|
||||||
@@ -17,6 +36,9 @@ from pillarsdk.utils import sanitize_filename
|
|||||||
from . import cache
|
from . import cache
|
||||||
|
|
||||||
SUBCLIENT_ID = 'PILLAR'
|
SUBCLIENT_ID = 'PILLAR'
|
||||||
|
TEXTURE_NODE_TYPES = {'texture', 'hdri'}
|
||||||
|
|
||||||
|
RFC1123_DATE_FORMAT = '%a, %d %b %Y %H:%M:%S GMT'
|
||||||
|
|
||||||
_pillar_api = {} # will become a mapping from bool (cached/non-cached) to pillarsdk.Api objects.
|
_pillar_api = {} # will become a mapping from bool (cached/non-cached) to pillarsdk.Api objects.
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
@@ -157,6 +179,12 @@ def pillar_api(pillar_endpoint: str = None, caching=True) -> pillarsdk.Api:
|
|||||||
token=subclient['token'])
|
token=subclient['token'])
|
||||||
_noncaching_api.requests_session = uncached_session
|
_noncaching_api.requests_session = uncached_session
|
||||||
|
|
||||||
|
# Send the addon version as HTTP header.
|
||||||
|
from blender_cloud import bl_info
|
||||||
|
addon_version = '.'.join(str(v) for v in bl_info['version'])
|
||||||
|
_caching_api.global_headers['Blender-Cloud-Addon'] = addon_version
|
||||||
|
_noncaching_api.global_headers['Blender-Cloud-Addon'] = addon_version
|
||||||
|
|
||||||
_pillar_api = {
|
_pillar_api = {
|
||||||
True: _caching_api,
|
True: _caching_api,
|
||||||
False: _noncaching_api,
|
False: _noncaching_api,
|
||||||
@@ -213,7 +241,7 @@ async def check_pillar_credentials(required_roles: set):
|
|||||||
profile.save_json()
|
profile.save_json()
|
||||||
raise NotSubscribedToCloudError()
|
raise NotSubscribedToCloudError()
|
||||||
|
|
||||||
return pillar_user_id
|
return db_user
|
||||||
|
|
||||||
|
|
||||||
async def refresh_pillar_credentials(required_roles: set):
|
async def refresh_pillar_credentials(required_roles: set):
|
||||||
@@ -228,7 +256,7 @@ async def refresh_pillar_credentials(required_roles: set):
|
|||||||
import blender_id
|
import blender_id
|
||||||
|
|
||||||
from . import blender
|
from . import blender
|
||||||
pillar_endpoint = blender.preferences().pillar_server.rstrip('/')
|
pillar_endpoint = blender.preferences().pillar_server
|
||||||
|
|
||||||
# Create a subclient token and send it to Pillar.
|
# Create a subclient token and send it to Pillar.
|
||||||
# May raise a blender_id.BlenderIdCommError
|
# May raise a blender_id.BlenderIdCommError
|
||||||
@@ -288,7 +316,8 @@ async def get_nodes(project_uuid: str = None, parent_node_uuid: str = None,
|
|||||||
if isinstance(node_type, str):
|
if isinstance(node_type, str):
|
||||||
where['node_type'] = node_type
|
where['node_type'] = node_type
|
||||||
else:
|
else:
|
||||||
where['node_type'] = {'$in': node_type}
|
# Convert set & tuple to list
|
||||||
|
where['node_type'] = {'$in': list(node_type)}
|
||||||
|
|
||||||
params = {'projection': {'name': 1, 'parent': 1, 'node_type': 1, 'properties.order': 1,
|
params = {'projection': {'name': 1, 'parent': 1, 'node_type': 1, 'properties.order': 1,
|
||||||
'properties.status': 1, 'properties.files': 1,
|
'properties.status': 1, 'properties.files': 1,
|
||||||
@@ -472,7 +501,7 @@ async def fetch_texture_thumbs(parent_node_uuid: str, desired_size: str,
|
|||||||
# Download all texture nodes in parallel.
|
# Download all texture nodes in parallel.
|
||||||
log.debug('Getting child nodes of node %r', parent_node_uuid)
|
log.debug('Getting child nodes of node %r', parent_node_uuid)
|
||||||
texture_nodes = await get_nodes(parent_node_uuid=parent_node_uuid,
|
texture_nodes = await get_nodes(parent_node_uuid=parent_node_uuid,
|
||||||
node_type='texture')
|
node_type=TEXTURE_NODE_TYPES)
|
||||||
|
|
||||||
if is_cancelled(future):
|
if is_cancelled(future):
|
||||||
log.warning('fetch_texture_thumbs: Texture downloading cancelled')
|
log.warning('fetch_texture_thumbs: Texture downloading cancelled')
|
||||||
@@ -498,7 +527,7 @@ async def download_texture_thumbnail(texture_node, desired_size: str,
|
|||||||
thumbnail_loaded: callable,
|
thumbnail_loaded: callable,
|
||||||
future: asyncio.Future = None):
|
future: asyncio.Future = None):
|
||||||
# Skip non-texture nodes, as we can't thumbnail them anyway.
|
# Skip non-texture nodes, as we can't thumbnail them anyway.
|
||||||
if texture_node['node_type'] != 'texture':
|
if texture_node['node_type'] not in TEXTURE_NODE_TYPES:
|
||||||
return
|
return
|
||||||
|
|
||||||
if is_cancelled(future):
|
if is_cancelled(future):
|
||||||
@@ -526,7 +555,8 @@ async def download_texture_thumbnail(texture_node, desired_size: str,
|
|||||||
# Load the File that belongs to this texture node's picture.
|
# Load the File that belongs to this texture node's picture.
|
||||||
loop.call_soon_threadsafe(thumbnail_loading, texture_node, texture_node)
|
loop.call_soon_threadsafe(thumbnail_loading, texture_node, texture_node)
|
||||||
file_desc = await pillar_call(pillarsdk.File.find, pic_uuid, params={
|
file_desc = await pillar_call(pillarsdk.File.find, pic_uuid, params={
|
||||||
'projection': {'filename': 1, 'variations': 1, 'width': 1, 'height': 1},
|
'projection': {'filename': 1, 'variations': 1, 'width': 1, 'height': 1,
|
||||||
|
'length': 1},
|
||||||
})
|
})
|
||||||
|
|
||||||
if file_desc is None:
|
if file_desc is None:
|
||||||
@@ -555,15 +585,80 @@ async def download_texture_thumbnail(texture_node, desired_size: str,
|
|||||||
loop.call_soon_threadsafe(thumbnail_loaded, texture_node, file_desc, thumb_path)
|
loop.call_soon_threadsafe(thumbnail_loaded, texture_node, file_desc, thumb_path)
|
||||||
|
|
||||||
|
|
||||||
|
async def fetch_node_files(node: pillarsdk.Node,
|
||||||
|
*,
|
||||||
|
file_doc_loading: callable,
|
||||||
|
file_doc_loaded: callable,
|
||||||
|
future: asyncio.Future = None):
|
||||||
|
"""Fetches all files of a texture/hdri node.
|
||||||
|
|
||||||
|
@param node: Node document to fetch all file docs for.
|
||||||
|
@param file_doc_loading: callback function that takes (file_id, ) parameters,
|
||||||
|
which is called before a file document will be downloaded. This allows you to
|
||||||
|
show a "downloading" indicator.
|
||||||
|
@param file_doc_loaded: callback function that takes (file_id, pillarsdk.File object)
|
||||||
|
parameters, which is called for every thumbnail after it's been downloaded.
|
||||||
|
@param future: Future that's inspected; if it is not None and cancelled, texture downloading
|
||||||
|
is aborted.
|
||||||
|
"""
|
||||||
|
|
||||||
|
# Download all thumbnails in parallel.
|
||||||
|
if is_cancelled(future):
|
||||||
|
log.warning('fetch_texture_thumbs: Texture downloading cancelled')
|
||||||
|
return
|
||||||
|
|
||||||
|
coros = (download_file_doc(file_ref.file,
|
||||||
|
file_doc_loading=file_doc_loading,
|
||||||
|
file_doc_loaded=file_doc_loaded,
|
||||||
|
future=future)
|
||||||
|
for file_ref in node.properties.files)
|
||||||
|
|
||||||
|
# raises any exception from failed handle_texture_node() calls.
|
||||||
|
await asyncio.gather(*coros)
|
||||||
|
|
||||||
|
log.info('fetch_node_files: Done downloading %i files', len(node.properties.files))
|
||||||
|
|
||||||
|
|
||||||
|
async def download_file_doc(file_id,
|
||||||
|
*,
|
||||||
|
file_doc_loading: callable,
|
||||||
|
file_doc_loaded: callable,
|
||||||
|
future: asyncio.Future = None):
|
||||||
|
|
||||||
|
if is_cancelled(future):
|
||||||
|
log.debug('fetch_texture_thumbs cancelled before finding File for file_id %s', file_id)
|
||||||
|
return
|
||||||
|
|
||||||
|
loop = asyncio.get_event_loop()
|
||||||
|
|
||||||
|
# Load the File that belongs to this texture node's picture.
|
||||||
|
loop.call_soon_threadsafe(file_doc_loading, file_id)
|
||||||
|
file_desc = await pillar_call(pillarsdk.File.find, file_id, params={
|
||||||
|
'projection': {'filename': 1, 'variations': 1, 'width': 1, 'height': 1,
|
||||||
|
'length': 1},
|
||||||
|
})
|
||||||
|
|
||||||
|
if file_desc is None:
|
||||||
|
log.warning('Unable to find File for file_id %s', file_id)
|
||||||
|
|
||||||
|
loop.call_soon_threadsafe(file_doc_loaded, file_id, file_desc)
|
||||||
|
|
||||||
|
|
||||||
async def download_file_by_uuid(file_uuid,
|
async def download_file_by_uuid(file_uuid,
|
||||||
target_directory: str,
|
target_directory: str,
|
||||||
metadata_directory: str,
|
metadata_directory: str,
|
||||||
*,
|
*,
|
||||||
|
filename: str = None,
|
||||||
map_type: str = None,
|
map_type: str = None,
|
||||||
file_loading: callable = None,
|
file_loading: callable = None,
|
||||||
file_loaded: callable = None,
|
file_loaded: callable = None,
|
||||||
file_loaded_sync: callable = None,
|
file_loaded_sync: callable = None,
|
||||||
future: asyncio.Future):
|
future: asyncio.Future):
|
||||||
|
"""Downloads a file from Pillar by its UUID.
|
||||||
|
|
||||||
|
:param filename: overrules the filename in file_doc['filename'] if given.
|
||||||
|
The extension from file_doc['filename'] is still used, though.
|
||||||
|
"""
|
||||||
if is_cancelled(future):
|
if is_cancelled(future):
|
||||||
log.debug('download_file_by_uuid(%r) cancelled.', file_uuid)
|
log.debug('download_file_by_uuid(%r) cancelled.', file_uuid)
|
||||||
return
|
return
|
||||||
@@ -572,15 +667,18 @@ async def download_file_by_uuid(file_uuid,
|
|||||||
|
|
||||||
# Find the File document.
|
# Find the File document.
|
||||||
file_desc = await pillar_call(pillarsdk.File.find, file_uuid, params={
|
file_desc = await pillar_call(pillarsdk.File.find, file_uuid, params={
|
||||||
'projection': {'link': 1, 'filename': 1},
|
'projection': {'link': 1, 'filename': 1, 'length': 1},
|
||||||
})
|
})
|
||||||
|
|
||||||
# Save the file document to disk
|
# Save the file document to disk
|
||||||
metadata_file = os.path.join(metadata_directory, 'files', '%s.json' % file_uuid)
|
metadata_file = os.path.join(metadata_directory, 'files', '%s.json' % file_uuid)
|
||||||
save_as_json(file_desc, metadata_file)
|
save_as_json(file_desc, metadata_file)
|
||||||
|
|
||||||
|
# Let the caller override the filename root.
|
||||||
root, ext = os.path.splitext(file_desc['filename'])
|
root, ext = os.path.splitext(file_desc['filename'])
|
||||||
if map_type is None or root.endswith(map_type):
|
if filename:
|
||||||
|
root, _ = os.path.splitext(filename)
|
||||||
|
if not map_type or root.endswith(map_type):
|
||||||
target_filename = '%s%s' % (root, ext)
|
target_filename = '%s%s' % (root, ext)
|
||||||
else:
|
else:
|
||||||
target_filename = '%s-%s%s' % (root, map_type, ext)
|
target_filename = '%s-%s%s' % (root, map_type, ext)
|
||||||
@@ -589,7 +687,7 @@ async def download_file_by_uuid(file_uuid,
|
|||||||
file_url = file_desc['link']
|
file_url = file_desc['link']
|
||||||
# log.debug('Texture %r:\n%s', file_uuid, pprint.pformat(file_desc.to_dict()))
|
# log.debug('Texture %r:\n%s', file_uuid, pprint.pformat(file_desc.to_dict()))
|
||||||
if file_loading is not None:
|
if file_loading is not None:
|
||||||
loop.call_soon_threadsafe(file_loading, file_path, file_desc)
|
loop.call_soon_threadsafe(file_loading, file_path, file_desc, map_type)
|
||||||
|
|
||||||
# Cached headers are stored in the project space
|
# Cached headers are stored in the project space
|
||||||
header_store = os.path.join(metadata_directory, 'files',
|
header_store = os.path.join(metadata_directory, 'files',
|
||||||
@@ -598,9 +696,9 @@ async def download_file_by_uuid(file_uuid,
|
|||||||
await download_to_file(file_url, file_path, header_store=header_store, future=future)
|
await download_to_file(file_url, file_path, header_store=header_store, future=future)
|
||||||
|
|
||||||
if file_loaded is not None:
|
if file_loaded is not None:
|
||||||
loop.call_soon_threadsafe(file_loaded, file_path, file_desc)
|
loop.call_soon_threadsafe(file_loaded, file_path, file_desc, map_type)
|
||||||
if file_loaded_sync is not None:
|
if file_loaded_sync is not None:
|
||||||
await file_loaded_sync(file_path, file_desc)
|
await file_loaded_sync(file_path, file_desc, map_type)
|
||||||
|
|
||||||
|
|
||||||
async def download_texture(texture_node,
|
async def download_texture(texture_node,
|
||||||
@@ -610,18 +708,25 @@ async def download_texture(texture_node,
|
|||||||
texture_loading: callable,
|
texture_loading: callable,
|
||||||
texture_loaded: callable,
|
texture_loaded: callable,
|
||||||
future: asyncio.Future):
|
future: asyncio.Future):
|
||||||
if texture_node['node_type'] != 'texture':
|
node_type_name = texture_node['node_type']
|
||||||
raise TypeError("Node type should be 'texture', not %r" % texture_node['node_type'])
|
if node_type_name not in TEXTURE_NODE_TYPES:
|
||||||
|
raise TypeError("Node type should be in %r, not %r" %
|
||||||
|
(TEXTURE_NODE_TYPES, node_type_name))
|
||||||
|
|
||||||
|
filename = '%s.taken_from_file' % sanitize_filename(texture_node['name'])
|
||||||
|
|
||||||
# Download every file. Eve doesn't support embedding from a list-of-dicts.
|
# Download every file. Eve doesn't support embedding from a list-of-dicts.
|
||||||
downloaders = (download_file_by_uuid(file_info['file'],
|
downloaders = []
|
||||||
|
for file_info in texture_node['properties']['files']:
|
||||||
|
dlr = download_file_by_uuid(file_info['file'],
|
||||||
target_directory,
|
target_directory,
|
||||||
metadata_directory,
|
metadata_directory,
|
||||||
map_type=file_info['map_type'],
|
filename=filename,
|
||||||
|
map_type=file_info.map_type or file_info.resolution,
|
||||||
file_loading=texture_loading,
|
file_loading=texture_loading,
|
||||||
file_loaded=texture_loaded,
|
file_loaded=texture_loaded,
|
||||||
future=future)
|
future=future)
|
||||||
for file_info in texture_node['properties']['files'])
|
downloaders.append(dlr)
|
||||||
|
|
||||||
return await asyncio.gather(*downloaders, return_exceptions=True)
|
return await asyncio.gather(*downloaders, return_exceptions=True)
|
||||||
|
|
||||||
@@ -675,15 +780,16 @@ def is_cancelled(future: asyncio.Future) -> bool:
|
|||||||
|
|
||||||
class PillarOperatorMixin:
|
class PillarOperatorMixin:
|
||||||
async def check_credentials(self, context, required_roles) -> bool:
|
async def check_credentials(self, context, required_roles) -> bool:
|
||||||
"""Checks credentials with Pillar, and if ok returns the user ID.
|
"""Checks credentials with Pillar, and if ok returns the user document from Pillar/MongoDB.
|
||||||
|
|
||||||
Returns None if the user cannot be found, or if the user is not a Cloud subscriber.
|
:raises UserNotLoggedInError: if the user is not logged in
|
||||||
|
:raises NotSubscribedToCloudError: if the user does not have any of the required roles
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# self.report({'INFO'}, 'Checking Blender Cloud credentials')
|
# self.report({'INFO'}, 'Checking Blender Cloud credentials')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
user_id = await check_pillar_credentials(required_roles)
|
db_user = await check_pillar_credentials(required_roles)
|
||||||
except NotSubscribedToCloudError:
|
except NotSubscribedToCloudError:
|
||||||
self._log_subscription_needed()
|
self._log_subscription_needed()
|
||||||
raise
|
raise
|
||||||
@@ -691,20 +797,22 @@ class PillarOperatorMixin:
|
|||||||
self.log.info('Credentials not synced, re-syncing automatically.')
|
self.log.info('Credentials not synced, re-syncing automatically.')
|
||||||
else:
|
else:
|
||||||
self.log.info('Credentials okay.')
|
self.log.info('Credentials okay.')
|
||||||
return user_id
|
return db_user
|
||||||
|
|
||||||
try:
|
try:
|
||||||
user_id = await refresh_pillar_credentials(required_roles)
|
db_user = await refresh_pillar_credentials(required_roles)
|
||||||
except NotSubscribedToCloudError:
|
except NotSubscribedToCloudError:
|
||||||
self._log_subscription_needed()
|
self._log_subscription_needed()
|
||||||
raise
|
raise
|
||||||
|
except CredentialsNotSyncedError:
|
||||||
|
self.log.info('Credentials not synced after refreshing, handling as not logged in.')
|
||||||
|
raise UserNotLoggedInError('Not logged in.')
|
||||||
except UserNotLoggedInError:
|
except UserNotLoggedInError:
|
||||||
self.log.error('User not logged in on Blender ID.')
|
self.log.error('User not logged in on Blender ID.')
|
||||||
|
raise
|
||||||
else:
|
else:
|
||||||
self.log.info('Credentials refreshed and ok.')
|
self.log.info('Credentials refreshed and ok.')
|
||||||
return user_id
|
return db_user
|
||||||
|
|
||||||
return None
|
|
||||||
|
|
||||||
def _log_subscription_needed(self):
|
def _log_subscription_needed(self):
|
||||||
self.log.warning(
|
self.log.warning(
|
||||||
@@ -763,6 +871,25 @@ async def attach_file_to_group(file_path: pathlib.Path,
|
|||||||
group_node_id,
|
group_node_id,
|
||||||
'file',
|
'file',
|
||||||
str(file_path),
|
str(file_path),
|
||||||
extra_where=user_id and {'user': user_id})
|
extra_where=user_id and {'user': user_id},
|
||||||
|
caching=False)
|
||||||
|
|
||||||
return node
|
return node
|
||||||
|
|
||||||
|
|
||||||
|
def node_to_id(node: pillarsdk.Node) -> dict:
|
||||||
|
"""Converts a Node to a dict we can store in an ID property.
|
||||||
|
|
||||||
|
ID properties only support a handful of Python classes, so we have
|
||||||
|
to convert datetime.datetime to a string and remove None values.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def to_rna(value):
|
||||||
|
if isinstance(value, dict):
|
||||||
|
return {k: to_rna(v) for k, v in value.items()}
|
||||||
|
if isinstance(value, datetime.datetime):
|
||||||
|
return value.strftime(RFC1123_DATE_FORMAT)
|
||||||
|
return value
|
||||||
|
|
||||||
|
as_dict = to_rna(node.to_dict())
|
||||||
|
return pillarsdk.utils.remove_none_attributes(as_dict)
|
||||||
|
@@ -1,3 +1,21 @@
|
|||||||
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# ##### END GPL LICENSE BLOCK #####
|
||||||
|
|
||||||
"""Synchronises settings & startup file with the Cloud.
|
"""Synchronises settings & startup file with the Cloud.
|
||||||
Caching is disabled on many PillarSDK calls, as synchronisation can happen
|
Caching is disabled on many PillarSDK calls, as synchronisation can happen
|
||||||
rapidly between multiple machines. This means that information can be outdated
|
rapidly between multiple machines. This means that information can be outdated
|
||||||
@@ -216,11 +234,7 @@ class PILLAR_OT_sync(pillar.PillarOperatorMixin,
|
|||||||
self.bss_report({'ERROR'}, 'No Blender version to sync for was given.')
|
self.bss_report({'ERROR'}, 'No Blender version to sync for was given.')
|
||||||
return {'CANCELLED'}
|
return {'CANCELLED'}
|
||||||
|
|
||||||
async_loop.AsyncModalOperatorMixin.invoke(self, context, event)
|
return async_loop.AsyncModalOperatorMixin.invoke(self, context, event)
|
||||||
|
|
||||||
self.log.info('Starting synchronisation')
|
|
||||||
self._new_async_task(self.async_execute(context))
|
|
||||||
return {'RUNNING_MODAL'}
|
|
||||||
|
|
||||||
def action_select(self, context):
|
def action_select(self, context):
|
||||||
"""Allows selection of the Blender version to use.
|
"""Allows selection of the Blender version to use.
|
||||||
@@ -267,14 +281,15 @@ class PILLAR_OT_sync(pillar.PillarOperatorMixin,
|
|||||||
try:
|
try:
|
||||||
# Refresh credentials
|
# Refresh credentials
|
||||||
try:
|
try:
|
||||||
self.user_id = await self.check_credentials(context, REQUIRES_ROLES_FOR_SYNC)
|
db_user = await self.check_credentials(context, REQUIRES_ROLES_FOR_SYNC)
|
||||||
|
self.user_id = db_user['_id']
|
||||||
log.debug('Found user ID: %s', self.user_id)
|
log.debug('Found user ID: %s', self.user_id)
|
||||||
except pillar.NotSubscribedToCloudError:
|
except pillar.NotSubscribedToCloudError:
|
||||||
self.log.exception('User not subscribed to cloud.')
|
self.log.exception('User not subscribed to cloud.')
|
||||||
self.bss_report({'SUBSCRIBE'}, 'Please subscribe to the Blender Cloud.')
|
self.bss_report({'SUBSCRIBE'}, 'Please subscribe to the Blender Cloud.')
|
||||||
self._state = 'QUIT'
|
self._state = 'QUIT'
|
||||||
return
|
return
|
||||||
except pillar.CredentialsNotSyncedError:
|
except pillar.UserNotLoggedInError:
|
||||||
self.log.exception('Error checking/refreshing credentials.')
|
self.log.exception('Error checking/refreshing credentials.')
|
||||||
self.bss_report({'ERROR'}, 'Please log in on Blender ID first.')
|
self.bss_report({'ERROR'}, 'Please log in on Blender ID first.')
|
||||||
self._state = 'QUIT'
|
self._state = 'QUIT'
|
||||||
@@ -427,7 +442,7 @@ class PILLAR_OT_sync(pillar.PillarOperatorMixin,
|
|||||||
self.log.info('Unable to find node on Blender Cloud for %s', fname)
|
self.log.info('Unable to find node on Blender Cloud for %s', fname)
|
||||||
return
|
return
|
||||||
|
|
||||||
async def file_downloaded(file_path: str, file_desc: pillarsdk.File):
|
async def file_downloaded(file_path: str, file_desc: pillarsdk.File, map_type: str):
|
||||||
# Allow the caller to adjust the file before we move it into place.
|
# Allow the caller to adjust the file before we move it into place.
|
||||||
|
|
||||||
if fname.lower() == 'userpref.blend':
|
if fname.lower() == 'userpref.blend':
|
||||||
|
@@ -1,23 +1,21 @@
|
|||||||
# ##### BEGIN GPL LICENSE BLOCK #####
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
||||||
#
|
#
|
||||||
# Copyright (C) 2014 Blender Aid
|
# This program is free software; you can redistribute it and/or
|
||||||
# http://www.blendearaid.com
|
# modify it under the terms of the GNU General Public License
|
||||||
# blenderaid@gmail.com
|
# as published by the Free Software Foundation; either version 2
|
||||||
|
# of the License, or (at your option) any later version.
|
||||||
# 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 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program; if not, write to the Free Software Foundation,
|
||||||
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
#
|
#
|
||||||
# ##### END GPL LICENSE BLOCK #####
|
# ##### END GPL LICENSE BLOCK #####
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
import logging
|
import logging
|
||||||
import threading
|
import threading
|
||||||
@@ -28,7 +26,7 @@ import bgl
|
|||||||
import blf
|
import blf
|
||||||
|
|
||||||
import pillarsdk
|
import pillarsdk
|
||||||
from . import async_loop, pillar, cache
|
from . import async_loop, pillar, cache, blender, utils
|
||||||
|
|
||||||
REQUIRED_ROLES_FOR_TEXTURE_BROWSER = {'subscriber', 'demo'}
|
REQUIRED_ROLES_FOR_TEXTURE_BROWSER = {'subscriber', 'demo'}
|
||||||
MOUSE_SCROLL_PIXELS_PER_TICK = 50
|
MOUSE_SCROLL_PIXELS_PER_TICK = 50
|
||||||
@@ -43,27 +41,32 @@ ITEM_PADDING_X = 5
|
|||||||
|
|
||||||
library_path = '/tmp'
|
library_path = '/tmp'
|
||||||
library_icons_path = os.path.join(os.path.dirname(__file__), "icons")
|
library_icons_path = os.path.join(os.path.dirname(__file__), "icons")
|
||||||
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class SpecialFolderNode(pillarsdk.Node):
|
class SpecialFolderNode(pillarsdk.Node):
|
||||||
pass
|
NODE_TYPE = 'SPECIAL'
|
||||||
|
|
||||||
|
|
||||||
class UpNode(SpecialFolderNode):
|
class UpNode(SpecialFolderNode):
|
||||||
|
NODE_TYPE = 'UP'
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self['_id'] = 'UP'
|
self['_id'] = 'UP'
|
||||||
self['node_type'] = 'UP'
|
self['node_type'] = self.NODE_TYPE
|
||||||
|
|
||||||
|
|
||||||
class ProjectNode(SpecialFolderNode):
|
class ProjectNode(SpecialFolderNode):
|
||||||
|
NODE_TYPE = 'PROJECT'
|
||||||
|
|
||||||
def __init__(self, project):
|
def __init__(self, project):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
assert isinstance(project, pillarsdk.Project), 'wrong type for project: %r' % type(project)
|
assert isinstance(project, pillarsdk.Project), 'wrong type for project: %r' % type(project)
|
||||||
|
|
||||||
self.merge(project.to_dict())
|
self.merge(project.to_dict())
|
||||||
self['node_type'] = 'PROJECT'
|
self['node_type'] = self.NODE_TYPE
|
||||||
|
|
||||||
|
|
||||||
class MenuItem:
|
class MenuItem:
|
||||||
@@ -81,7 +84,8 @@ class MenuItem:
|
|||||||
'SPINNER': os.path.join(library_icons_path, 'spinner.png'),
|
'SPINNER': os.path.join(library_icons_path, 'spinner.png'),
|
||||||
}
|
}
|
||||||
|
|
||||||
SUPPORTED_NODE_TYPES = {'UP', 'PROJECT', 'group_texture', 'texture'}
|
FOLDER_NODE_TYPES = {'group_texture', 'group_hdri', UpNode.NODE_TYPE, ProjectNode.NODE_TYPE}
|
||||||
|
SUPPORTED_NODE_TYPES = {'texture', 'hdri'}.union(FOLDER_NODE_TYPES)
|
||||||
|
|
||||||
def __init__(self, node, file_desc, thumb_path: str, label_text):
|
def __init__(self, node, file_desc, thumb_path: str, label_text):
|
||||||
self.log = logging.getLogger('%s.MenuItem' % __name__)
|
self.log = logging.getLogger('%s.MenuItem' % __name__)
|
||||||
@@ -97,8 +101,8 @@ class MenuItem:
|
|||||||
self.label_text = label_text
|
self.label_text = label_text
|
||||||
self._thumb_path = ''
|
self._thumb_path = ''
|
||||||
self.icon = None
|
self.icon = None
|
||||||
self._is_folder = (node['node_type'] == 'group_texture' or
|
self._is_folder = node['node_type'] in self.FOLDER_NODE_TYPES
|
||||||
isinstance(node, SpecialFolderNode))
|
self._is_spinning = False
|
||||||
|
|
||||||
# Determine sorting order.
|
# Determine sorting order.
|
||||||
# by default, sort all the way at the end and folders first.
|
# by default, sort all the way at the end and folders first.
|
||||||
@@ -124,6 +128,8 @@ class MenuItem:
|
|||||||
|
|
||||||
@thumb_path.setter
|
@thumb_path.setter
|
||||||
def thumb_path(self, new_thumb_path: str):
|
def thumb_path(self, new_thumb_path: str):
|
||||||
|
self._is_spinning = new_thumb_path == 'SPINNER'
|
||||||
|
|
||||||
self._thumb_path = self.DEFAULT_ICONS.get(new_thumb_path, new_thumb_path)
|
self._thumb_path = self.DEFAULT_ICONS.get(new_thumb_path, new_thumb_path)
|
||||||
if self._thumb_path:
|
if self._thumb_path:
|
||||||
self.icon = bpy.data.images.load(filepath=self._thumb_path)
|
self.icon = bpy.data.images.load(filepath=self._thumb_path)
|
||||||
@@ -134,7 +140,13 @@ class MenuItem:
|
|||||||
def node_uuid(self) -> str:
|
def node_uuid(self) -> str:
|
||||||
return self.node['_id']
|
return self.node['_id']
|
||||||
|
|
||||||
def update(self, node, file_desc, thumb_path: str, label_text):
|
def represents(self, node) -> bool:
|
||||||
|
"""Returns True iff this MenuItem represents the given node."""
|
||||||
|
|
||||||
|
node_uuid = node['_id']
|
||||||
|
return self.node_uuid == node_uuid
|
||||||
|
|
||||||
|
def update(self, node, file_desc, thumb_path: str, label_text=None):
|
||||||
# We can get updated information about our Node, but a MenuItem should
|
# We can get updated information about our Node, but a MenuItem should
|
||||||
# always represent one node, and it shouldn't be shared between nodes.
|
# always represent one node, and it shouldn't be shared between nodes.
|
||||||
if self.node_uuid != node['_id']:
|
if self.node_uuid != node['_id']:
|
||||||
@@ -143,12 +155,18 @@ class MenuItem:
|
|||||||
self.node = node
|
self.node = node
|
||||||
self.file_desc = file_desc # pillarsdk.File object, or None if a 'folder' node.
|
self.file_desc = file_desc # pillarsdk.File object, or None if a 'folder' node.
|
||||||
self.thumb_path = thumb_path
|
self.thumb_path = thumb_path
|
||||||
|
|
||||||
|
if label_text is not None:
|
||||||
self.label_text = label_text
|
self.label_text = label_text
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def is_folder(self) -> bool:
|
def is_folder(self) -> bool:
|
||||||
return self._is_folder
|
return self._is_folder
|
||||||
|
|
||||||
|
@property
|
||||||
|
def is_spinning(self) -> bool:
|
||||||
|
return self._is_spinning
|
||||||
|
|
||||||
def update_placement(self, x, y, width, height):
|
def update_placement(self, x, y, width, height):
|
||||||
"""Use OpenGL to draw this one menu item."""
|
"""Use OpenGL to draw this one menu item."""
|
||||||
|
|
||||||
@@ -220,11 +238,14 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
# This contains a stack of Node objects that lead up to the currently browsed node.
|
# This contains a stack of Node objects that lead up to the currently browsed node.
|
||||||
path_stack = []
|
path_stack = []
|
||||||
|
|
||||||
|
# This contains a stack of MenuItem objects that lead up to the currently browsed node.
|
||||||
|
menu_item_stack = []
|
||||||
|
|
||||||
timer = None
|
timer = None
|
||||||
log = logging.getLogger('%s.BlenderCloudBrowser' % __name__)
|
log = logging.getLogger('%s.BlenderCloudBrowser' % __name__)
|
||||||
|
|
||||||
_menu_item_lock = threading.Lock()
|
_menu_item_lock = threading.Lock()
|
||||||
current_display_content = []
|
current_display_content = [] # list of MenuItems currently displayed
|
||||||
loaded_images = set()
|
loaded_images = set()
|
||||||
thumbnails_cache = ''
|
thumbnails_cache = ''
|
||||||
maximized_area = False
|
maximized_area = False
|
||||||
@@ -237,8 +258,9 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
scroll_offset_space_left = 0
|
scroll_offset_space_left = 0
|
||||||
|
|
||||||
def invoke(self, context, event):
|
def invoke(self, context, event):
|
||||||
# Refuse to start if the file hasn't been saved.
|
# Refuse to start if the file hasn't been saved. It's okay if
|
||||||
if context.blend_data.is_dirty:
|
# it's dirty, we just need to know where '//' points to.
|
||||||
|
if not os.path.exists(context.blend_data.filepath):
|
||||||
self.report({'ERROR'}, 'Please save your Blend file before using '
|
self.report({'ERROR'}, 'Please save your Blend file before using '
|
||||||
'the Blender Cloud addon.')
|
'the Blender Cloud addon.')
|
||||||
return {'CANCELLED'}
|
return {'CANCELLED'}
|
||||||
@@ -267,10 +289,7 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
self._scroll_reset()
|
self._scroll_reset()
|
||||||
|
|
||||||
context.window.cursor_modal_set('DEFAULT')
|
context.window.cursor_modal_set('DEFAULT')
|
||||||
async_loop.AsyncModalOperatorMixin.invoke(self, context, event)
|
return async_loop.AsyncModalOperatorMixin.invoke(self, context, event)
|
||||||
self._new_async_task(self.async_execute(context))
|
|
||||||
|
|
||||||
return {'RUNNING_MODAL'}
|
|
||||||
|
|
||||||
def modal(self, context, event):
|
def modal(self, context, event):
|
||||||
result = async_loop.AsyncModalOperatorMixin.modal(self, context, event)
|
result = async_loop.AsyncModalOperatorMixin.modal(self, context, event)
|
||||||
@@ -301,6 +320,9 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
selected = self.get_clicked()
|
selected = self.get_clicked()
|
||||||
|
|
||||||
if selected:
|
if selected:
|
||||||
|
if selected.is_spinning:
|
||||||
|
context.window.cursor_set('WAIT')
|
||||||
|
else:
|
||||||
context.window.cursor_set('HAND')
|
context.window.cursor_set('HAND')
|
||||||
else:
|
else:
|
||||||
context.window.cursor_set('DEFAULT')
|
context.window.cursor_set('DEFAULT')
|
||||||
@@ -322,15 +344,13 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
# No item clicked, ignore it.
|
# No item clicked, ignore it.
|
||||||
return {'RUNNING_MODAL'}
|
return {'RUNNING_MODAL'}
|
||||||
|
|
||||||
if selected.is_folder:
|
if selected.is_spinning:
|
||||||
self.descend_node(selected.node)
|
|
||||||
else:
|
|
||||||
if selected.file_desc is None:
|
|
||||||
# This can happen when the thumbnail information isn't loaded yet.
|
# This can happen when the thumbnail information isn't loaded yet.
|
||||||
# Just ignore the click for now.
|
|
||||||
# TODO: think of a way to handle this properly.
|
|
||||||
self.log.debug('Selected item %r has no file_desc', selected)
|
|
||||||
return {'RUNNING_MODAL'}
|
return {'RUNNING_MODAL'}
|
||||||
|
|
||||||
|
if selected.is_folder:
|
||||||
|
self.descend_node(selected)
|
||||||
|
else:
|
||||||
self.handle_item_selection(context, selected)
|
self.handle_item_selection(context, selected)
|
||||||
|
|
||||||
if event.type in {'RIGHTMOUSE', 'ESC'}:
|
if event.type in {'RIGHTMOUSE', 'ESC'}:
|
||||||
@@ -344,13 +364,13 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
self.log.debug('Checking credentials')
|
self.log.debug('Checking credentials')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
user_id = await self.check_credentials(context, REQUIRED_ROLES_FOR_TEXTURE_BROWSER)
|
db_user = await self.check_credentials(context, REQUIRED_ROLES_FOR_TEXTURE_BROWSER)
|
||||||
except pillar.NotSubscribedToCloudError:
|
except pillar.NotSubscribedToCloudError:
|
||||||
self.log.info('User not subscribed to Blender Cloud.')
|
self.log.info('User not subscribed to Blender Cloud.')
|
||||||
self._show_subscribe_screen()
|
self._show_subscribe_screen()
|
||||||
return None
|
return None
|
||||||
|
|
||||||
if user_id is None:
|
if db_user is None:
|
||||||
raise pillar.UserNotLoggedInError()
|
raise pillar.UserNotLoggedInError()
|
||||||
|
|
||||||
await self.async_download_previews()
|
await self.async_download_previews()
|
||||||
@@ -361,12 +381,13 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
self._state = 'PLEASE_SUBSCRIBE'
|
self._state = 'PLEASE_SUBSCRIBE'
|
||||||
bpy.context.window.cursor_set('HAND')
|
bpy.context.window.cursor_set('HAND')
|
||||||
|
|
||||||
def descend_node(self, node):
|
def descend_node(self, menu_item: MenuItem):
|
||||||
"""Descends the node hierarchy by visiting this node.
|
"""Descends the node hierarchy by visiting this menu item's node.
|
||||||
|
|
||||||
Also keeps track of the current node, so that we know where the "up" button should go.
|
Also keeps track of the current node, so that we know where the "up" button should go.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
node = menu_item.node
|
||||||
assert isinstance(node, pillarsdk.Node), 'Wrong type %s' % node
|
assert isinstance(node, pillarsdk.Node), 'Wrong type %s' % node
|
||||||
|
|
||||||
if isinstance(node, UpNode):
|
if isinstance(node, UpNode):
|
||||||
@@ -375,6 +396,8 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
self.current_path = self.current_path.parent
|
self.current_path = self.current_path.parent
|
||||||
if self.path_stack:
|
if self.path_stack:
|
||||||
self.path_stack.pop()
|
self.path_stack.pop()
|
||||||
|
if self.menu_item_stack:
|
||||||
|
self.menu_item_stack.pop()
|
||||||
if not self.path_stack:
|
if not self.path_stack:
|
||||||
self.project_name = ''
|
self.project_name = ''
|
||||||
else:
|
else:
|
||||||
@@ -385,6 +408,7 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
self.current_path /= node['_id']
|
self.current_path /= node['_id']
|
||||||
self.log.debug('Going down to %r', self.current_path)
|
self.log.debug('Going down to %r', self.current_path)
|
||||||
self.path_stack.append(node)
|
self.path_stack.append(node)
|
||||||
|
self.menu_item_stack.append(menu_item)
|
||||||
|
|
||||||
self.browse_assets()
|
self.browse_assets()
|
||||||
|
|
||||||
@@ -439,7 +463,7 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
# Just make this thread-safe to be on the safe side.
|
# Just make this thread-safe to be on the safe side.
|
||||||
with self._menu_item_lock:
|
with self._menu_item_lock:
|
||||||
for menu_item in self.current_display_content:
|
for menu_item in self.current_display_content:
|
||||||
if menu_item.node_uuid == node_uuid:
|
if menu_item.represents(node):
|
||||||
menu_item.update(node, *args)
|
menu_item.update(node, *args)
|
||||||
self.loaded_images.add(menu_item.icon.filepath_raw)
|
self.loaded_images.add(menu_item.icon.filepath_raw)
|
||||||
break
|
break
|
||||||
@@ -466,12 +490,6 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
self.clear_images()
|
self.clear_images()
|
||||||
self._scroll_reset()
|
self._scroll_reset()
|
||||||
|
|
||||||
def thumbnail_loading(node, texture_node):
|
|
||||||
self.add_menu_item(node, None, 'SPINNER', texture_node['name'])
|
|
||||||
|
|
||||||
def thumbnail_loaded(node, file_desc, thumb_path):
|
|
||||||
self.update_menu_item(node, file_desc, thumb_path, file_desc['filename'])
|
|
||||||
|
|
||||||
project_uuid = self.current_path.project_uuid
|
project_uuid = self.current_path.project_uuid
|
||||||
node_uuid = self.current_path.node_uuid
|
node_uuid = self.current_path.node_uuid
|
||||||
|
|
||||||
@@ -479,13 +497,13 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
# Query for sub-nodes of this node.
|
# Query for sub-nodes of this node.
|
||||||
self.log.debug('Getting subnodes for parent node %r', node_uuid)
|
self.log.debug('Getting subnodes for parent node %r', node_uuid)
|
||||||
children = await pillar.get_nodes(parent_node_uuid=node_uuid,
|
children = await pillar.get_nodes(parent_node_uuid=node_uuid,
|
||||||
node_type='group_texture')
|
node_type={'group_texture', 'group_hdri'})
|
||||||
elif project_uuid:
|
elif project_uuid:
|
||||||
# Query for top-level nodes.
|
# Query for top-level nodes.
|
||||||
self.log.debug('Getting subnodes for project node %r', project_uuid)
|
self.log.debug('Getting subnodes for project node %r', project_uuid)
|
||||||
children = await pillar.get_nodes(project_uuid=project_uuid,
|
children = await pillar.get_nodes(project_uuid=project_uuid,
|
||||||
parent_node_uuid='',
|
parent_node_uuid='',
|
||||||
node_type='group_texture')
|
node_type={'group_texture', 'group_hdri'})
|
||||||
else:
|
else:
|
||||||
# Query for projects
|
# Query for projects
|
||||||
self.log.debug('No node UUID and no project UUID, listing available projects')
|
self.log.debug('No node UUID and no project UUID, listing available projects')
|
||||||
@@ -515,6 +533,13 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
os.makedirs(directory, exist_ok=True)
|
os.makedirs(directory, exist_ok=True)
|
||||||
|
|
||||||
self.log.debug('Fetching texture thumbnails for node %r', node_uuid)
|
self.log.debug('Fetching texture thumbnails for node %r', node_uuid)
|
||||||
|
|
||||||
|
def thumbnail_loading(node, texture_node):
|
||||||
|
self.add_menu_item(node, None, 'SPINNER', texture_node['name'])
|
||||||
|
|
||||||
|
def thumbnail_loaded(node, file_desc, thumb_path):
|
||||||
|
self.update_menu_item(node, file_desc, thumb_path)
|
||||||
|
|
||||||
await pillar.fetch_texture_thumbs(node_uuid, 's', directory,
|
await pillar.fetch_texture_thumbs(node_uuid, 's', directory,
|
||||||
thumbnail_loading=thumbnail_loading,
|
thumbnail_loading=thumbnail_loading,
|
||||||
thumbnail_loaded=thumbnail_loaded,
|
thumbnail_loaded=thumbnail_loaded,
|
||||||
@@ -595,11 +620,6 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
item.draw(highlighted=item.hits(self.mouse_x, self.mouse_y))
|
item.draw(highlighted=item.hits(self.mouse_x, self.mouse_y))
|
||||||
|
|
||||||
bottom_y = min(y, bottom_y)
|
bottom_y = min(y, bottom_y)
|
||||||
bgl.glColor4f(0.24, 0.68, 0.91, 1)
|
|
||||||
bgl.glRectf(0,
|
|
||||||
bottom_y - ITEM_MARGIN_Y,
|
|
||||||
window_region.width,
|
|
||||||
bottom_y+1 - ITEM_MARGIN_Y)
|
|
||||||
self.scroll_offset_space_left = window_region.height - bottom_y
|
self.scroll_offset_space_left = window_region.height - bottom_y
|
||||||
self.scroll_offset_max = (self.scroll_offset -
|
self.scroll_offset_max = (self.scroll_offset -
|
||||||
self.scroll_offset_space_left +
|
self.scroll_offset_space_left +
|
||||||
@@ -725,23 +745,53 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
self.log.debug('Metadata will be stored at %s', meta_path)
|
self.log.debug('Metadata will be stored at %s', meta_path)
|
||||||
|
|
||||||
file_paths = []
|
file_paths = []
|
||||||
|
select_dblock = None
|
||||||
|
node = item.node
|
||||||
|
|
||||||
def texture_downloading(file_path, file_desc, *args):
|
def texture_downloading(file_path, *_):
|
||||||
self.log.info('Texture downloading to %s', file_path)
|
self.log.info('Texture downloading to %s', file_path)
|
||||||
|
|
||||||
def texture_downloaded(file_path, file_desc, *args):
|
def texture_downloaded(file_path, file_desc, map_type):
|
||||||
|
nonlocal select_dblock
|
||||||
|
|
||||||
self.log.info('Texture downloaded to %r.', file_path)
|
self.log.info('Texture downloaded to %r.', file_path)
|
||||||
|
|
||||||
|
if context.scene.local_texture_dir.startswith('//'):
|
||||||
|
file_path = bpy.path.relpath(file_path)
|
||||||
|
|
||||||
image_dblock = bpy.data.images.load(filepath=file_path)
|
image_dblock = bpy.data.images.load(filepath=file_path)
|
||||||
image_dblock['bcloud_file_uuid'] = file_desc['_id']
|
image_dblock['bcloud_file_uuid'] = file_desc['_id']
|
||||||
image_dblock['bcloud_texture_node_uuid'] = item.node_uuid
|
image_dblock['bcloud_node_uuid'] = node['_id']
|
||||||
|
image_dblock['bcloud_node_type'] = node['node_type']
|
||||||
|
image_dblock['bcloud_node'] = pillar.node_to_id(node)
|
||||||
|
|
||||||
|
if node['node_type'] == 'hdri':
|
||||||
|
# All HDRi variations should use the same image datablock, hence once name.
|
||||||
|
image_dblock.name = node['name']
|
||||||
|
else:
|
||||||
|
# All texture variations are loaded at once, and thus need the map type in the name.
|
||||||
|
image_dblock.name = '%s-%s' % (node['name'], map_type)
|
||||||
|
|
||||||
|
# Select the image in the image editor (if the context is right).
|
||||||
|
# Just set the first image we download,
|
||||||
|
if context.area.type == 'IMAGE_EDITOR':
|
||||||
|
if select_dblock is None or file_desc.map_type == 'color':
|
||||||
|
select_dblock = image_dblock
|
||||||
|
context.space_data.image = select_dblock
|
||||||
|
|
||||||
file_paths.append(file_path)
|
file_paths.append(file_path)
|
||||||
|
|
||||||
def texture_download_completed(_):
|
def texture_download_completed(_):
|
||||||
self.log.info('Texture download complete, inspect:\n%s', '\n'.join(file_paths))
|
self.log.info('Texture download complete, inspect:\n%s', '\n'.join(file_paths))
|
||||||
self._state = 'QUIT'
|
self._state = 'QUIT'
|
||||||
|
|
||||||
|
# For HDRi nodes: only download the first file.
|
||||||
|
download_node = pillarsdk.Node.new(node)
|
||||||
|
if node['node_type'] == 'hdri':
|
||||||
|
download_node.properties.files = [download_node.properties.files[0]]
|
||||||
|
|
||||||
signalling_future = asyncio.Future()
|
signalling_future = asyncio.Future()
|
||||||
self._new_async_task(pillar.download_texture(item.node, local_path,
|
self._new_async_task(pillar.download_texture(download_node, local_path,
|
||||||
metadata_directory=meta_path,
|
metadata_directory=meta_path,
|
||||||
texture_loading=texture_downloading,
|
texture_loading=texture_downloading,
|
||||||
texture_loaded=texture_downloaded,
|
texture_loaded=texture_downloaded,
|
||||||
@@ -782,19 +832,182 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
self.scroll_offset_target = self.scroll_offset = 0
|
self.scroll_offset_target = self.scroll_offset = 0
|
||||||
|
|
||||||
|
|
||||||
|
class PILLAR_OT_switch_hdri(pillar.PillarOperatorMixin,
|
||||||
|
async_loop.AsyncModalOperatorMixin,
|
||||||
|
bpy.types.Operator):
|
||||||
|
bl_idname = 'pillar.switch_hdri'
|
||||||
|
bl_label = 'Switch with another variation'
|
||||||
|
bl_description = 'Downloads the selected variation of an HDRi, ' \
|
||||||
|
'replacing the current image'
|
||||||
|
|
||||||
|
log = logging.getLogger('bpy.ops.%s' % bl_idname)
|
||||||
|
|
||||||
|
image_name = bpy.props.StringProperty(name='image_name',
|
||||||
|
description='Name of the image block to replace')
|
||||||
|
|
||||||
|
file_uuid = bpy.props.StringProperty(name='file_uuid',
|
||||||
|
description='File ID to download')
|
||||||
|
|
||||||
|
async def async_execute(self, context):
|
||||||
|
"""Entry point of the asynchronous operator."""
|
||||||
|
|
||||||
|
self.report({'INFO'}, 'Communicating with Blender Cloud')
|
||||||
|
|
||||||
|
try:
|
||||||
|
try:
|
||||||
|
db_user = await self.check_credentials(context, REQUIRED_ROLES_FOR_TEXTURE_BROWSER)
|
||||||
|
user_id = db_user['_id']
|
||||||
|
except pillar.NotSubscribedToCloudError:
|
||||||
|
self.log.exception('User not subscribed to cloud.')
|
||||||
|
self.report({'ERROR'}, 'Please subscribe to the Blender Cloud.')
|
||||||
|
self._state = 'QUIT'
|
||||||
|
return
|
||||||
|
except pillar.UserNotLoggedInError:
|
||||||
|
self.log.exception('Error checking/refreshing credentials.')
|
||||||
|
self.report({'ERROR'}, 'Please log in on Blender ID first.')
|
||||||
|
self._state = 'QUIT'
|
||||||
|
return
|
||||||
|
|
||||||
|
if not user_id:
|
||||||
|
raise pillar.UserNotLoggedInError()
|
||||||
|
|
||||||
|
await self.download_and_replace(context)
|
||||||
|
except Exception as ex:
|
||||||
|
self.log.exception('Unexpected exception caught.')
|
||||||
|
self.report({'ERROR'}, 'Unexpected error %s: %s' % (type(ex), ex))
|
||||||
|
|
||||||
|
self._state = 'QUIT'
|
||||||
|
|
||||||
|
async def download_and_replace(self, context):
|
||||||
|
from .pillar import sanitize_filename
|
||||||
|
|
||||||
|
self._state = 'DOWNLOADING_TEXTURE'
|
||||||
|
|
||||||
|
current_image = bpy.data.images[self.image_name]
|
||||||
|
node = current_image['bcloud_node']
|
||||||
|
filename = '%s.taken_from_file' % sanitize_filename(node['name'])
|
||||||
|
|
||||||
|
local_path = os.path.dirname(bpy.path.abspath(current_image.filepath))
|
||||||
|
top_texture_directory = bpy.path.abspath(context.scene.local_texture_dir)
|
||||||
|
meta_path = os.path.join(top_texture_directory, '.blender_cloud')
|
||||||
|
|
||||||
|
file_uuid = self.file_uuid
|
||||||
|
resolution = next(file_ref['resolution'] for file_ref in node['properties']['files']
|
||||||
|
if file_ref['file'] == file_uuid)
|
||||||
|
|
||||||
|
self.log.info('Downloading file %r-%s to %s', file_uuid, resolution, local_path)
|
||||||
|
self.log.debug('Metadata will be stored at %s', meta_path)
|
||||||
|
|
||||||
|
def file_loading(file_path, file_desc, map_type):
|
||||||
|
self.log.info('Texture downloading to %s (%s)',
|
||||||
|
file_path, utils.sizeof_fmt(file_desc['length']))
|
||||||
|
|
||||||
|
async def file_loaded(file_path, file_desc, map_type):
|
||||||
|
if context.scene.local_texture_dir.startswith('//'):
|
||||||
|
file_path = bpy.path.relpath(file_path)
|
||||||
|
|
||||||
|
self.log.info('Texture downloaded to %s', file_path)
|
||||||
|
current_image['bcloud_file_uuid'] = file_uuid
|
||||||
|
current_image.filepath = file_path # This automatically reloads the image from disk.
|
||||||
|
|
||||||
|
await pillar.download_file_by_uuid(file_uuid,
|
||||||
|
local_path,
|
||||||
|
meta_path,
|
||||||
|
filename=filename,
|
||||||
|
map_type=resolution,
|
||||||
|
file_loading=file_loading,
|
||||||
|
file_loaded_sync=file_loaded,
|
||||||
|
future=self.signalling_future)
|
||||||
|
|
||||||
|
self.report({'INFO'}, 'Image download complete')
|
||||||
|
|
||||||
|
|
||||||
# store keymaps here to access after registration
|
# store keymaps here to access after registration
|
||||||
addon_keymaps = []
|
addon_keymaps = []
|
||||||
|
|
||||||
|
|
||||||
def menu_draw(self, context):
|
def image_editor_menu(self, context):
|
||||||
layout = self.layout
|
self.layout.operator(BlenderCloudBrowser.bl_idname,
|
||||||
layout.separator()
|
text='Get image from Blender Cloud',
|
||||||
layout.operator(BlenderCloudBrowser.bl_idname, icon='MOD_SCREW')
|
icon_value=blender.icon('CLOUD'))
|
||||||
|
|
||||||
|
|
||||||
|
def hdri_download_panel__image_editor(self, context):
|
||||||
|
_hdri_download_panel(self, context.edit_image)
|
||||||
|
|
||||||
|
|
||||||
|
def hdri_download_panel__node_editor(self, context):
|
||||||
|
if context.active_node.type not in {'TEX_ENVIRONMENT', 'TEX_IMAGE'}:
|
||||||
|
return
|
||||||
|
|
||||||
|
_hdri_download_panel(self, context.active_node.image)
|
||||||
|
|
||||||
|
|
||||||
|
def _hdri_download_panel(self, current_image):
|
||||||
|
if not current_image:
|
||||||
|
return
|
||||||
|
if 'bcloud_node_type' not in current_image:
|
||||||
|
return
|
||||||
|
if current_image['bcloud_node_type'] != 'hdri':
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
current_variation = current_image['bcloud_file_uuid']
|
||||||
|
except KeyError:
|
||||||
|
log.warning('Image %r has a bcloud_node_type but no bcloud_file_uuid property.',
|
||||||
|
current_image.name)
|
||||||
|
return
|
||||||
|
|
||||||
|
row = self.layout.row(align=True).split(0.3)
|
||||||
|
row.label('HDRi', icon_value=blender.icon('CLOUD'))
|
||||||
|
row.prop(current_image, 'hdri_variation', text='')
|
||||||
|
|
||||||
|
if current_image.hdri_variation != current_variation:
|
||||||
|
props = row.operator(PILLAR_OT_switch_hdri.bl_idname,
|
||||||
|
text='Replace',
|
||||||
|
icon='FILE_REFRESH')
|
||||||
|
props.image_name = current_image.name
|
||||||
|
props.file_uuid = current_image.hdri_variation
|
||||||
|
|
||||||
|
|
||||||
|
# Storage for variation labels, as the strings in EnumProperty items
|
||||||
|
# MUST be kept in Python memory.
|
||||||
|
variation_label_storage = {}
|
||||||
|
|
||||||
|
|
||||||
|
def hdri_variation_choices(self, context):
|
||||||
|
if context.area.type == 'IMAGE_EDITOR':
|
||||||
|
image = context.edit_image
|
||||||
|
elif context.area.type == 'NODE_EDITOR':
|
||||||
|
image = context.active_node.image
|
||||||
|
else:
|
||||||
|
return []
|
||||||
|
|
||||||
|
if 'bcloud_node' not in image:
|
||||||
|
return []
|
||||||
|
|
||||||
|
choices = []
|
||||||
|
for file_doc in image['bcloud_node']['properties']['files']:
|
||||||
|
label = file_doc['resolution']
|
||||||
|
variation_label_storage[label] = label
|
||||||
|
choices.append((file_doc['file'], label, ''))
|
||||||
|
|
||||||
|
return choices
|
||||||
|
|
||||||
|
|
||||||
def register():
|
def register():
|
||||||
bpy.utils.register_class(BlenderCloudBrowser)
|
bpy.utils.register_class(BlenderCloudBrowser)
|
||||||
# bpy.types.INFO_MT_mesh_add.append(menu_draw)
|
bpy.utils.register_class(PILLAR_OT_switch_hdri)
|
||||||
|
bpy.types.IMAGE_MT_image.prepend(image_editor_menu)
|
||||||
|
bpy.types.IMAGE_PT_image_properties.append(hdri_download_panel__image_editor)
|
||||||
|
bpy.types.NODE_PT_active_node_properties.append(hdri_download_panel__node_editor)
|
||||||
|
|
||||||
|
# HDRi resolution switcher/chooser.
|
||||||
|
# TODO: when an image is selected, switch this property to its current resolution.
|
||||||
|
bpy.types.Image.hdri_variation = bpy.props.EnumProperty(
|
||||||
|
name='HDRi variations',
|
||||||
|
items=hdri_variation_choices,
|
||||||
|
description='Select a variation with which to replace this image'
|
||||||
|
)
|
||||||
|
|
||||||
# handle the keymap
|
# handle the keymap
|
||||||
wm = bpy.context.window_manager
|
wm = bpy.context.window_manager
|
||||||
@@ -814,4 +1027,11 @@ def unregister():
|
|||||||
km.keymap_items.remove(kmi)
|
km.keymap_items.remove(kmi)
|
||||||
addon_keymaps.clear()
|
addon_keymaps.clear()
|
||||||
|
|
||||||
|
if hasattr(bpy.types.Image, 'hdri_variation'):
|
||||||
|
del bpy.types.Image.hdri_variation
|
||||||
|
|
||||||
|
bpy.types.IMAGE_MT_image.remove(image_editor_menu)
|
||||||
|
bpy.types.IMAGE_PT_image_properties.remove(hdri_download_panel__image_editor)
|
||||||
|
bpy.types.NODE_PT_active_node_properties.remove(hdri_download_panel__node_editor)
|
||||||
bpy.utils.unregister_class(BlenderCloudBrowser)
|
bpy.utils.unregister_class(BlenderCloudBrowser)
|
||||||
|
bpy.utils.unregister_class(PILLAR_OT_switch_hdri)
|
||||||
|
31
blender_cloud/utils.py
Normal file
31
blender_cloud/utils.py
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# ##### END GPL LICENSE BLOCK #####
|
||||||
|
|
||||||
|
|
||||||
|
def sizeof_fmt(num: int, suffix='B') -> str:
|
||||||
|
"""Returns a human-readable size.
|
||||||
|
|
||||||
|
Source: http://stackoverflow.com/a/1094933/875379
|
||||||
|
"""
|
||||||
|
|
||||||
|
for unit in ['', 'Ki', 'Mi', 'Gi', 'Ti', 'Pi', 'Ei', 'Zi']:
|
||||||
|
if abs(num) < 1024:
|
||||||
|
return '%.1f %s%s' % (num, unit, suffix)
|
||||||
|
num /= 1024
|
||||||
|
|
||||||
|
return '%.1f Yi%s' % (num, suffix)
|
@@ -1,3 +1,21 @@
|
|||||||
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# ##### END GPL LICENSE BLOCK #####
|
||||||
|
|
||||||
"""External dependencies loader."""
|
"""External dependencies loader."""
|
||||||
|
|
||||||
import glob
|
import glob
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
# Primary requirements:
|
# Primary requirements:
|
||||||
-e git+https://github.com/sybrenstuvel/cachecontrol.git@sybren-filecache-delete-crash-fix#egg=CacheControl
|
-e git+https://github.com/sybrenstuvel/cachecontrol.git@sybren-filecache-delete-crash-fix#egg=CacheControl
|
||||||
lockfile==0.12.2
|
lockfile==0.12.2
|
||||||
pillarsdk==1.4.0
|
pillarsdk==1.5.0
|
||||||
wheel==0.29.0
|
wheel==0.29.0
|
||||||
|
|
||||||
# Secondary requirements:
|
# Secondary requirements:
|
||||||
|
19
setup.py
19
setup.py
@@ -1,4 +1,21 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# ##### END GPL LICENSE BLOCK #####
|
||||||
|
|
||||||
import glob
|
import glob
|
||||||
import sys
|
import sys
|
||||||
@@ -179,7 +196,7 @@ setup(
|
|||||||
'wheels': BuildWheels},
|
'wheels': BuildWheels},
|
||||||
name='blender_cloud',
|
name='blender_cloud',
|
||||||
description='The Blender Cloud addon allows browsing the Blender Cloud from Blender.',
|
description='The Blender Cloud addon allows browsing the Blender Cloud from Blender.',
|
||||||
version='1.3.3',
|
version='1.4.4',
|
||||||
author='Sybren A. Stüvel',
|
author='Sybren A. Stüvel',
|
||||||
author_email='sybren@stuvel.eu',
|
author_email='sybren@stuvel.eu',
|
||||||
packages=find_packages('.'),
|
packages=find_packages('.'),
|
||||||
|
15
update_version.sh
Executable file
15
update_version.sh
Executable file
@@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -z "$1" ]; then
|
||||||
|
echo "Usage: $0 new-version" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
BL_INFO_VER=$(echo "$1" | sed 's/\./, /g')
|
||||||
|
|
||||||
|
sed "s/version='[^']*'/version='$1'/" -i setup.py
|
||||||
|
sed "s/'version': ([^)]*)/'version': ($BL_INFO_VER)/" -i blender_cloud/__init__.py
|
||||||
|
|
||||||
|
git diff
|
||||||
|
echo
|
||||||
|
echo "Don't forget to commit!"
|
Reference in New Issue
Block a user