Source code for aiida.restapi.translator.data.structure

# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved.                     #
# This file is part of the AiiDA code.                                    #
#                                                                         #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida_core #
# For further information on the license, see the LICENSE.txt file        #
# For further information please visit http://www.aiida.net               #
###########################################################################
from aiida.restapi.translator.data import DataTranslator
from aiida.restapi.common.exceptions import RestInputValidationError
from aiida.common.exceptions import LicensingException
import numpy as np

[docs]class StructureDataTranslator(DataTranslator): """ Translator relative to resource 'structures' and aiida class StructureData """ # A label associated to the present class (coincides with the resource name) __label__ = "structures" # The AiiDA class one-to-one associated to the present class from aiida.orm.data.structure import StructureData _aiida_class = StructureData # The string name of the AiiDA class _aiida_type = "data.structure.StructureData" # The string associated to the AiiDA class in the query builder lexicon _qb_type = _aiida_type + '.' _result_type = __label__
[docs] def __init__(self, **kwargs): """ Initialise the parameters. Create the basic query_help """ super(StructureDataTranslator, self).__init__(Class=self.__class__, **kwargs)
[docs] @staticmethod def get_visualization_data(node, format=None): """ Returns: data in specified format. If format is not specified returns data in xsf format in order to visualize the structure with JSmol. """ response = {} response["str_viz_info"] = {} if format is None: format = 'xsf' if format in node.get_export_formats(): try: response["str_viz_info"]["data"] = node._exportstring(format)[0] response["str_viz_info"]["format"] = format except LicensingException as e: response = e.message else: raise RestInputValidationError("The format {} is not supported.".format(format)) # Add extra information response["dimensionality"] = node.get_dimensionality() response["pbc"] = node.pbc response["formula"] = node.get_formula() return response
[docs] @staticmethod def get_downloadable_data(node, format=None): """ Generic function extented for structure data :param node: node object that has to be visualized :param format: file extension format :returns: data in selected format to download """ response = {} if format is None: format = "cif" if format in node.get_export_formats(): try: response["data"] = node._exportstring(format)[0] response["status"] = 200 response["filename"] = node.uuid + "_structure." + format except LicensingException as e: response["status"] = 500 response["data"] = e.message return response