2016-07-20 16:32:01 +02:00
|
|
|
# ##### 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 #####
|
|
|
|
|
2016-03-21 09:32:10 +01:00
|
|
|
"""HTTP Cache management.
|
|
|
|
|
|
|
|
This module configures a cached session for the Requests package.
|
|
|
|
It allows for filesystem-based caching of HTTP requests.
|
|
|
|
|
|
|
|
Requires the 3rd party packages CacheControl and lockfile.
|
|
|
|
"""
|
2016-03-18 14:03:25 +01:00
|
|
|
|
|
|
|
import os
|
|
|
|
import logging
|
2016-03-18 16:53:52 +01:00
|
|
|
import requests
|
|
|
|
import cachecontrol
|
|
|
|
from cachecontrol.caches import FileCache
|
2016-03-18 14:03:25 +01:00
|
|
|
|
|
|
|
from . import appdirs
|
|
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
2016-03-18 16:53:52 +01:00
|
|
|
_session = None # requests.Session object that's set up for caching by requests_session().
|
2016-03-18 14:03:25 +01:00
|
|
|
|
|
|
|
|
2016-03-22 15:20:22 +01:00
|
|
|
def cache_directory(*subdirs) -> str:
|
2016-03-18 14:03:25 +01:00
|
|
|
"""Returns an OS-specifc cache location, and ensures it exists.
|
|
|
|
|
|
|
|
Should be replaced with a call to bpy.utils.user_resource('CACHE', ...)
|
|
|
|
once https://developer.blender.org/T47684 is finished.
|
2016-03-22 15:20:22 +01:00
|
|
|
|
|
|
|
:param subdirs: extra subdirectories inside the cache directory.
|
|
|
|
|
|
|
|
>>> cache_directory()
|
|
|
|
'.../blender_cloud/your_username'
|
|
|
|
>>> cache_directory('sub1', 'sub2')
|
|
|
|
'.../blender_cloud/your_username/sub1/sub2'
|
2016-03-18 14:03:25 +01:00
|
|
|
"""
|
|
|
|
|
2016-03-22 15:20:22 +01:00
|
|
|
from . import pillar
|
|
|
|
|
2016-04-01 17:16:29 +02:00
|
|
|
profile = pillar.blender_id_profile()
|
|
|
|
if profile:
|
|
|
|
username = profile.username
|
|
|
|
else:
|
|
|
|
username = 'anonymous'
|
2016-03-18 14:03:25 +01:00
|
|
|
|
2016-03-22 15:20:22 +01:00
|
|
|
# TODO: use bpy.utils.user_resource('CACHE', ...)
|
|
|
|
# once https://developer.blender.org/T47684 is finished.
|
|
|
|
user_cache_dir = appdirs.user_cache_dir(appname='Blender', appauthor=False)
|
2016-04-01 17:16:29 +02:00
|
|
|
cache_dir = os.path.join(user_cache_dir, 'blender_cloud', username, *subdirs)
|
2016-03-18 14:03:25 +01:00
|
|
|
|
2016-03-22 15:20:22 +01:00
|
|
|
os.makedirs(cache_dir, mode=0o700, exist_ok=True)
|
2016-03-18 14:03:25 +01:00
|
|
|
|
|
|
|
return cache_dir
|
|
|
|
|
|
|
|
|
2016-03-18 16:53:52 +01:00
|
|
|
def requests_session() -> requests.Session:
|
2016-03-18 14:03:25 +01:00
|
|
|
"""Creates a Requests-Cache session object."""
|
|
|
|
|
2016-03-18 16:53:52 +01:00
|
|
|
global _session
|
2016-03-18 14:03:25 +01:00
|
|
|
|
2016-03-18 16:53:52 +01:00
|
|
|
if _session is not None:
|
|
|
|
return _session
|
2016-03-18 14:03:25 +01:00
|
|
|
|
2016-03-22 15:20:22 +01:00
|
|
|
cache_name = cache_directory('blender_cloud_http')
|
2016-03-18 16:53:52 +01:00
|
|
|
log.info('Storing cache in %s' % cache_name)
|
2016-03-18 14:03:25 +01:00
|
|
|
|
2016-03-18 16:53:52 +01:00
|
|
|
_session = cachecontrol.CacheControl(sess=requests.session(),
|
|
|
|
cache=FileCache(cache_name))
|
2016-03-18 14:03:25 +01:00
|
|
|
|
2016-03-18 16:53:52 +01:00
|
|
|
return _session
|