File size: 26,781 Bytes
a0cd72f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 |
#!/usr/bin/env python3
import argparse
import configparser
import logging
import os
import subprocess
import sys
import tempfile
import time
import yaml
logger = logging.getLogger(__name__)
# See http://docs.python.org/3.3/howto/logging.html#configuring-logging-for-a-library
logging.getLogger(__name__).addHandler(logging.NullHandler())
def get_collection_folder(adminUser, collName, folderName):
from girder.models.collection import Collection
from girder.models.folder import Folder
if Collection().findOne({'lowerName': collName.lower()}) is None:
logger.info('Create collection %s', collName)
Collection().createCollection(collName, adminUser)
collection = Collection().findOne({'lowerName': collName.lower()})
if Folder().findOne({
'parentId': collection['_id'], 'lowerName': folderName.lower()}) is None:
logger.info('Create folder %s in %s', folderName, collName)
Folder().createFolder(collection, folderName, parentType='collection',
public=True, creator=adminUser)
folder = Folder().findOne({'parentId': collection['_id'], 'lowerName': folderName.lower()})
return folder
def get_sample_data(adminUser, collName='Sample Images', folderName='Images'):
"""
As needed, download sample data.
:param adminUser: a user to create and modify collections and folders.
:param collName: the collection name where the data will be added.
:param folderName: the folder name where the data will be added.
:returns: the folder where the sample data is located.
"""
try:
import girder_client
except ImportError:
logger.error('girder_client is unavailable. Cannot get sample data.')
return
from girder.models.item import Item
from girder.models.upload import Upload
from girder_large_image.models.image_item import ImageItem
folder = get_collection_folder(adminUser, collName, folderName)
remote = girder_client.GirderClient(apiUrl='https://data.kitware.com/api/v1')
remoteFolder = remote.resourceLookup('/collection/HistomicsTK/Deployment test images')
sampleItems = []
for remoteItem in remote.listItem(remoteFolder['_id']):
item = Item().findOne({'folderId': folder['_id'], 'name': remoteItem['name']})
if item and len(list(Item().childFiles(item, limit=1))):
sampleItems.append(item)
continue
if not item:
item = Item().createItem(remoteItem['name'], creator=adminUser, folder=folder)
for remoteFile in remote.listFile(remoteItem['_id']):
with tempfile.NamedTemporaryFile() as tf:
fileName = tf.name
tf.close()
logger.info('Downloading %s', remoteFile['name'])
remote.downloadFile(remoteFile['_id'], fileName)
Upload().uploadFromFile(
open(fileName, 'rb'), os.path.getsize(fileName),
name=remoteItem['name'], parentType='item',
parent=item, user=adminUser)
sampleItems.append(item)
for item in sampleItems:
if 'largeImage' not in item:
logger.info('Making large_item %s', item['name'])
try:
ImageItem().createImageItem(item, createJob=False)
except Exception:
pass
logger.info('done')
return folder
def value_from_resource(value, adminUser):
"""
If a value is a string that startwith 'resource:', it is a path to an
existing resource. Fetch it an return the string of the _id.
:param value: a value
:returns: the original value it is not a resource, or the string id of the
resource.
"""
import girder.utility.path as path_util
if str(value) == 'resourceid:admin':
value = str(adminUser['_id'])
elif str(value).startswith('resourceid:'):
resource = path_util.lookUpPath(value.split(':', 1)[1], force=True)['document']
value = str(resource['_id'])
elif str(value) == 'resource:admin':
value = adminUser
elif str(value).startswith('resource:'):
value = path_util.lookUpPath(value.split(':', 1)[1], force=True)['document']
return value
def provision_resources(resources, adminUser):
"""
Given a dictionary of resources, add them to the system. The resource is
only added if a resource of that name with the same parent object does not
exist.
:param resources: a list of resources to add.
:param adminUser: the admin user to use for provisioning.
"""
from girder.utility.model_importer import ModelImporter
for entry in resources:
entry = {k: value_from_resource(v, adminUser) for k, v in entry.items()}
modelName = entry.pop('model')
metadata = entry.pop('metadata', None)
metadata_update = entry.pop('metadata_update', True)
metadata_key = entry.pop('metadata_key', 'meta')
model = ModelImporter.model(modelName)
key = 'name' if model != 'user' else 'login'
query = {}
if key in entry:
query[key] = entry[key]
owners = {'folder': 'parent', 'item': 'folder', 'file': 'item'}
ownerKey = owners.get(modelName)
if ownerKey and ownerKey in entry and isinstance(
entry[ownerKey], dict) and '_id' in entry[ownerKey]:
query[ownerKey + 'Id'] = entry[ownerKey]['_id']
if query and model.findOne(query):
result = model.findOne(query)
logger.debug('Has %s (%r)', modelName, entry)
else:
createFunc = getattr(model, 'create%s' % modelName.capitalize())
logger.info('Creating %s (%r)', modelName, entry)
result = createFunc(**entry)
if isinstance(metadata, dict) and hasattr(model, 'setMetadata'):
if metadata_key not in metadata or metadata_update:
if metadata_key not in result:
result[metadata_key] = {}
result[metadata_key].update(metadata.items())
for key in metadata:
if metadata[key] is None:
del result[metadata_key][key]
model.validateKeys(result[metadata_key])
result = model.save(result)
def get_slicer_images(imageList, adminUser):
"""
Load a list of cli docker images into the system.
:param imageList: a list of docker images.
:param adminUser: an admin user for permissions.
"""
import threading
from girder import logger
from girder.models.setting import Setting
from girder_jobs.constants import JobStatus
from girder_jobs.models.job import Job
from slicer_cli_web.config import PluginSettings
from slicer_cli_web.docker_resource import DockerResource
from slicer_cli_web.image_job import jobPullAndLoad
imageList = [entry for entry in imageList if entry and len(entry)]
if not len(imageList):
return
logger.info('Pulling and installing slicer_cli images: %r', imageList)
job = Job().createLocalJob(
module='slicer_cli_web.image_job',
function='jobPullAndLoad',
kwargs={
'nameList': imageList,
'folder': Setting().get(PluginSettings.SLICER_CLI_WEB_TASK_FOLDER),
},
title='Pulling and caching docker images',
type=DockerResource.jobType,
user=adminUser,
public=True,
asynchronous=True
)
job = Job().save(job)
t = threading.Thread(target=jobPullAndLoad, args=(job, ))
t.start()
logpos = 0
logger.info('Result:\n')
while job['status'] not in {JobStatus.SUCCESS, JobStatus.ERROR, JobStatus.CANCELED}:
time.sleep(0.1)
job = Job().load(id=job['_id'], user=adminUser, includeLog=True)
if 'log' in job:
while logpos < len(job['log']):
logger.info(job['log'][logpos].rstrip())
logpos += 1
t.join()
if 'log' not in job:
logger.warning('Job record: %r', job)
if job['status'] != JobStatus.SUCCESS:
raise Exception('Failed to pull and load images')
def preprovision(opts):
"""
Preprovision the instance. This includes installing python modules with
pip and rebuilding the girder client if desired.
:param opts: the argparse options.
"""
if getattr(opts, 'pip', None) and len(opts.pip):
for entry in opts.pip:
cmd = 'pip install %s' % entry
logger.info('Installing: %s', cmd)
subprocess.check_call(cmd, shell=True)
if getattr(opts, 'shell', None) and len(opts.shell):
for entry in opts.shell:
cmd = entry
logger.info('Running: %s', cmd)
subprocess.check_call(cmd, shell=True)
if getattr(opts, 'rebuild-client', None):
cmd = 'girder build'
if str(getattr(opts, 'rebuild-client', None)).lower().startswith('dev'):
cmd += ' --dev'
logger.info('Rebuilding girder client: %s', cmd)
cmd = ('NPM_CONFIG_FUND=false NPM_CONFIG_AUDIT=false '
'NPM_CONFIG_AUDIT_LEVEL=high NPM_CONFIG_LOGLEVEL=error '
'NPM_CONFIG_PROGRESS=false NPM_CONFIG_PREFER_OFFLINE=true ' + cmd)
subprocess.check_call(cmd, shell=True)
def provision(opts): # noqa
"""
Provision the instance.
:param opts: the argparse options.
"""
from girder.models.assetstore import Assetstore
from girder.models.setting import Setting
from girder.models.user import User
# If there is are no admin users, create an admin user
if User().findOne({'admin': True}) is None:
adminParams = dict({
'login': 'admin',
'password': 'password',
'firstName': 'Admin',
'lastName': 'Admin',
'email': 'admin@nowhere.nil',
'public': True,
}, **(opts.admin if opts.admin else {}))
User().createUser(admin=True, **adminParams)
adminUser = User().findOne({'admin': True})
# Make sure we have an assetstore
assetstoreParams = opts.assetstore or {'name': 'Assetstore', 'root': '/assetstore'}
if not isinstance(assetstoreParams, list):
assetstoreParams = [assetstoreParams]
if Assetstore().findOne() is None:
for params in assetstoreParams:
method = params.pop('method', 'createFilesystemAssetstore')
getattr(Assetstore(), method)(**params)
# Make sure we have a demo collection and download some demo files
if getattr(opts, 'samples', None):
get_sample_data(
adminUser,
getattr(opts, 'sample-collection', 'Samples'),
getattr(opts, 'sample-folder', 'Images'))
if opts.resources:
provision_resources(opts.resources, adminUser)
settings = dict({}, **(opts.settings or {}))
force = getattr(opts, 'force', None) or []
for key, value in settings.items():
if (value != '__SKIP__' and (
force is True or key in force or
Setting().get(key) is None or
Setting().get(key) == Setting().getDefault(key))):
value = value_from_resource(value, adminUser)
logger.info('Setting %s to %r', key, value)
Setting().set(key, value)
if getattr(opts, 'slicer-cli-image', None):
try:
get_slicer_images(getattr(opts, 'slicer-cli-image', None), adminUser)
except Exception:
logger.info('Cannot fetch slicer-cli-images.')
def preprovision_worker(opts):
"""
Preprovision the worker.
"""
settings = dict({}, **(opts.worker or {}))
if settings.get('pip') and len(settings['pip']):
for entry in settings['pip']:
cmd = 'pip install %s' % entry
logger.info('Installing: %s', cmd)
subprocess.check_call(cmd, shell=True)
if settings.get('shell') and len(settings['shell']):
for entry in settings['shell']:
cmd = entry
logger.info('Running: %s', cmd)
subprocess.check_call(cmd, shell=True)
def provision_worker(opts):
"""
Provision the worker. There are a few top-level settings, but others
should be in the worker sub-field.
"""
settings = dict({}, **(opts.worker or {}))
for key in dir(opts):
if key.startswith('worker-'):
mainkey = key.split('worker-', 1)[1]
if settings.get(mainkey) is None:
settings[mainkey] = getattr(opts, key)
if not settings.get('rabbitmq-host'):
return
conf = configparser.ConfigParser()
conf.read([settings['config']])
conf.set('celery', 'broker', 'amqp://%s:%s@%s/' % (
settings['rabbitmq-user'], settings['rabbitmq-pass'], settings['host']))
conf.set('celery', 'backend', 'rpc://%s:%s@%s/' % (
settings['rabbitmq-user'], settings['rabbitmq-pass'], settings['host']))
with open(settings['config'], 'w') as fptr:
conf.write(fptr)
def merge_environ_opts(opts):
"""
Merge environment options, overriding other settings.
:param opts: the options parsed from the command line.
:return opts: the modified options.
"""
keyDict = {
'RABBITMQ_USER': 'worker_rabbitmq_user',
'RABBITMQ_PASS': 'worker_rabbitmq_pass',
'DSA_RABBITMQ_HOST': 'worker_rabbitmq_host',
}
for key, value in os.environ.items():
if not value or not value.strip():
continue
if key == 'DSA_WORKER_API_URL':
key = 'worker.api_url'
elif key.startswith('DSA_SETTING_'):
key = key.split('DSA_SETTING_', 1)[1]
elif key in keyDict:
key = keyDict[key]
else:
continue
opts.settings[key] = value
if not opts.force:
opts.force = {key}
elif opts.force is not True:
opts.force.add(key)
return opts
def merge_yaml_opts(opts, parser):
"""
Parse a yaml file of provisioning options. Modify the options used for
provisioning.
:param opts: the options parsed from the command line.
:param parser: command line parser used to check if the options are the
default values.
:return opts: the modified options.
"""
yamlfile = os.environ.get('DSA_PROVISION_YAML') if getattr(
opts, 'yaml', None) is None else opts.yaml
if yamlfile:
logger.debug('Parse yaml file: %r', yamlfile)
if not yamlfile or not os.path.exists(yamlfile):
return opts
defaults = parser.parse_args(args=[])
if getattr(opts, 'use-defaults', None) is not False:
defaults = merge_default_opts(defaults)
yamlopts = yaml.safe_load(open(yamlfile).read())
for key, value in yamlopts.items():
key = key.replace('_', '-')
if getattr(opts, key, None) is None or getattr(
opts, key, None) == getattr(defaults, key, None):
if key == 'settings' and getattr(opts, key, None) and isinstance(value, dict):
getattr(opts, key).update(value)
else:
setattr(opts, key, value)
logger.debug('Arguments after adding yaml: %r', opts)
return opts
def merge_default_opts(opts):
"""
Add the defaults to the options.
:param opts: the options parsed from the command line.
:return opts: the modified options.
"""
settings = dict({}, **(opts.settings or {}))
settings.update({
'worker.broker': 'amqp://guest:guest@rabbitmq',
'worker.backend': 'rpc://guest:guest@rabbitmq',
'worker.api_url': 'http://girder:8080/api/v1',
'worker.direct_path': True,
'core.brand_name': 'Digital Slide Archive',
'histomicsui.webroot_path': 'histomics',
'histomicsui.alternate_webroot_path': 'histomicstk',
'histomicsui.delete_annotations_after_ingest': True,
'homepage.markdown': """# Digital Slide Archive
---
## Bioinformatics Platform
Welcome to the **Digital Slide Archive**.
Developers who want to use the Girder REST API should check out the
[interactive web API docs](api/v1).
The [HistomicsUI](histomics) application is enabled.""",
'slicer_cli_web.task_folder': 'resourceid:collection/Tasks/Slicer CLI Web Tasks',
})
opts.settings = settings
if getattr(opts, 'slicer-cli-image', None) is None:
setattr(opts, 'slicer-cli-image', ['dsarchive/histomicstk:latest'])
if getattr(opts, 'assetstore', None) is None:
opts.assetstore = {
'name': 'Assetstore',
'root': '/assetstore',
'method': 'createFilesystemAssetstore',
}
if getattr(opts, 'admin', None) is None:
opts.admin = {
'login': 'admin',
'password': 'password',
'firstName': 'Admin',
'lastName': 'Admin',
'email': 'admin@nowhere.nil',
'public': True,
}
resources = opts.resources or []
resources.extend([{
'model': 'collection',
'name': 'Tasks',
'creator': 'resource:admin',
'public': True,
}, {
'model': 'folder',
'parent': 'resource:collection/Tasks',
'parentType': 'collection',
'name': 'Slicer CLI Web Tasks',
'creator': 'resource:admin',
'public': True,
}])
opts.resources = resources
return opts
class YamlAction(argparse.Action):
def __init__(self, option_strings, dest, nargs=None, **kwargs):
"""Parse a yaml entry"""
if nargs is not None:
raise ValueError('nargs not allowed')
super().__init__(option_strings, dest, **kwargs)
def __call__(self, parser, namespace, values, option_string=None):
setattr(namespace, self.dest, yaml.safe_load(values))
if __name__ == '__main__': # noqa
parser = argparse.ArgumentParser(description='Provision a Digital Slide Archive instance')
parser.add_argument(
'--force', action='store_true',
help='Reset all settings. This does not change the admin user or the '
'default assetstore if those already exist. Otherwise, settings are '
'only added or modified if they do not exist or are the default '
'value.')
parser.add_argument(
'--samples', '--data', '--sample-data',
action='store_true', help='Download sample data')
parser.add_argument(
'--sample-collection', dest='sample-collection', default='Samples',
help='Sample data collection name')
parser.add_argument(
'--sample-folder', dest='sample-folder', default='Images',
help='Sample data folder name')
parser.add_argument(
'--admin', action=YamlAction,
help='A yaml dictionary of parameters used to create a default admin '
'user. If any of login, password, firstName, lastName, email, or '
'public are not specified, some default values are used. If any '
'admin user already exists, no modifications are made.')
parser.add_argument(
'--assetstore', action=YamlAction,
help='A yaml dictionary (or list of dictionaries) of parameters used '
'to create a default assetstore. This can include "method" which '
'includes the creation method, such as "createFilesystemAssetstore" '
'or "createS3Assetstore". Otherwise, this is a list of parameters '
'passed to the creation method. For filesystem assetstores, these '
'parameters are name, root, and perms. For S3 assetstores, these are '
'name, bucket, accessKeyId, secret, prefix, service, readOnly, '
'region, inferCredentials, and serverSideEncryption. If unspecified, '
'a filesystem assetstore is created.')
parser.add_argument(
'--settings', action=YamlAction,
help='A yaml dictionary of settings to change in the Girder '
'database. This is merged with the default settings dictionary. '
'Settings are only changed if they are their default values, the '
'force option is used, or they are specified by an environment '
'variable. If a setting has a value of "__SKIP__", it will not be '
'changed (this can prevent setting a default setting '
'option to any value).')
parser.add_argument(
'--resources', action=YamlAction,
help='A yaml list of resources to add by name to the Girder '
'database. Each entry is a dictionary including "model" with the '
'resource model and a dictionary of values to pass to the '
'appropriate create(resource) function. A value of '
'"resource:<path>" is converted to the resource document with that '
'resource path. "resource:admin" uses the default admin, '
'"resourceid:<path>" is the string id for the resource path.')
parser.add_argument(
'--yaml',
help='Specify parameters for this script in a yaml file. If no value '
'is specified, this defaults to the environment variable of '
'DSA_PROVISION_YAML. No error is thrown if the file does not exist. '
'The yaml file is a dictionary of keys as would be passed to the '
'command line.')
parser.add_argument(
'--no-mongo-compat', action='store_false', dest='mongo-compat',
default=True, help='Do not automatically set the mongo feature '
'compatibility version to the current server version.')
parser.add_argument(
'--no-defaults', action='store_false', dest='use-defaults',
default=None, help='Do not use default settings; start with a minimal '
'number of parameters.')
parser.add_argument(
'--pip', action='append', help='A list of modules to pip install. If '
'any are specified that include girder client plugins, also specify '
'--rebuild-client. Each specified value is passed to pip install '
'directly, so additional options are needed, these can be added (such '
'as --find-links). The actual values need to be escaped '
'appropriately for a bash shell.')
parser.add_argument(
'--rebuild-client', dest='rebuild-client', action='store_true',
default=False, help='Rebuild the girder client.')
parser.add_argument(
'--slicer-cli-image', dest='slicer-cli-image', action='append',
help='Install slicer_cli images.')
parser.add_argument(
'--rabbitmq-user', default='guest', dest='worker-rabbitmq-user',
help='Worker: RabbitMQ user name.')
parser.add_argument(
'--rabbitmq-pass', default='guest', dest='worker-rabbitmq-pass',
help='Worker: RabbitMQ password.')
parser.add_argument(
'--rabbitmq-host', dest='worker-rabbitmq-host',
help='Worker: RabbitMQ host.')
parser.add_argument(
'--config', dest='worker-config',
default='/opt/girder_worker/girder_worker/worker.local.cfg',
help='Worker: Path to the worker config file.')
parser.add_argument(
'--worker', action=YamlAction,
help='A yaml dictionary of worker settings.')
parser.add_argument(
'--worker-main', dest='portion', action='store_const',
const='worker-main',
help='Provision a worker, not the main process.')
parser.add_argument(
'--worker-pre', dest='portion', action='store_const',
const='worker-pre',
help='Pre-provision a worker, not the main process.')
parser.add_argument(
'--pre', dest='portion', action='store_const', const='pre',
help='Only do preprovisioning (install optional python modules and '
'optionally build the girder client).')
parser.add_argument(
'--main', dest='portion', action='store_const', const='main',
help='Only do main provisioning.')
parser.add_argument(
'--verbose', '-v', action='count', default=0, help='Increase verbosity')
parser.add_argument(
'--dry-run', '-n', dest='dry-run', action='store_true',
help='Report merged options but do not actually apply them')
opts = parser.parse_args(args=sys.argv[1:])
logger.addHandler(logging.StreamHandler(sys.stderr))
logger.setLevel(max(1, logging.WARNING - 10 * opts.verbose))
try:
logger.info('Provision file date: %s; size: %d',
time.ctime(os.path.getmtime(__file__)),
os.path.getsize(__file__))
except Exception:
pass
logger.debug('Parsed arguments: %r', opts)
if getattr(opts, 'use-defaults', None) is not False:
opts = merge_default_opts(opts)
opts = merge_yaml_opts(opts, parser)
opts = merge_environ_opts(opts)
logger.debug('Merged arguments: %r', opts)
if getattr(opts, 'dry-run'):
print(yaml.dump({k: v for k, v in vars(opts).items() if v is not None}))
sys.exit(0)
# Worker provisioning
if getattr(opts, 'portion', None) == 'worker-pre':
preprovision_worker(opts)
sys.exit(0)
if getattr(opts, 'portion', None) == 'worker-main':
provision_worker(opts)
sys.exit(0)
if getattr(opts, 'portion', None) in {'pre', None}:
# Run provisioning that has to happen before configuring the server.
preprovision(opts)
if getattr(opts, 'portion', None) == 'pre':
sys.exit(0)
if getattr(opts, 'portion', None) in {'main', None}:
# This loads plugins, allowing setting validation. We want the import
# to be after the preprovision step.
from girder.utility.server import configureServer
configureServer()
if getattr(opts, 'mongo-compat', None) is not False:
from girder.models import getDbConnection
try:
db = getDbConnection()
except Exception:
logger.warning('Could not connect to mongo.')
try:
db.admin.command({'setFeatureCompatibilityVersion': '.'.join(
db.server_info()['version'].split('.')[:2]), 'confirm': True})
except Exception:
try:
db.admin.command({'setFeatureCompatibilityVersion': '.'.join(
db.server_info()['version'].split('.')[:2])})
except Exception:
logger.warning('Could not set mongo feature compatibility version.')
try:
# Also attempt to upgrade old version 2 image sources
db.girder.item.update_many(
{'largeImage.sourceName': 'svs'},
{'$set': {'largeImage.sourceName': 'openslide'}})
except Exception:
logger.warning('Could not update old source names.')
provision(opts)
|