Coverage for girder/models/file : 93%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
#!/usr/bin/env python # -*- coding: utf-8 -*-
############################################################################### # Copyright 2013 Kitware Inc. # # Licensed under the Apache License, Version 2.0 ( the "License" ); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ###############################################################################
""" This model represents a File, which is stored in an assetstore. """ ['itemId', 'assetstoreId', 'exts'] + assetstore_utilities.fileIndexFields())
""" Use the appropriate assetstore adapter for whatever assetstore the file is stored in, and call deleteFile on it, then delete the file record from the database. """
""" Use the appropriate assetstore adapter for whatever assetstore the file is stored in, and call downloadFile on it. If the file is a link file rather than a file in an assetstore, we redirect to it. """ else: else: # pragma: no cover raise Exception('File has no known download mechanism.')
raise ValidationException( 'File must have either an assetstore ID or a link URL.', 'linkUrl')
'Linked file URL must start with http: or https:.', 'linkUrl') raise ValidationException('File name must not be empty.', 'name')
""" Create a file that is a link to a URL rather than something we maintain in an assetstore. :param name: The local name for the file. :type name: str :param parent: The parent object for this file. :type parent: folder or item :param parentType: The parent type (folder or item) :type parentType: str :param url: The URL that this file points to :param creator: The user creating the file. :type user: user """ # Create a new item with the name of the file. name=name, creator=creator, folder=parent) elif parentType == 'item': item = parent
'created': datetime.datetime.now(), 'itemId': item['_id'], 'creatorId': creator['_id'], 'assetstoreId': None, 'name': name, 'linkUrl': url }
""" Create a new file record in the database. :param item: The parent item. :param creator: The user creating the file. :param assetstore: The assetstore this file is stored in. :param name: The filename. :type name: str :param size: The size of the file in bytes. :type size: int :param mimeType: The mimeType of the file. :type mimeType: str """ 'created': datetime.datetime.now(), 'itemId': item['_id'], 'creatorId': creator['_id'], 'assetstoreId': assetstore['_id'], 'name': name, 'mimeType': mimeType, 'size': size }
# Propagate size up to item
|