Example #1
0
def publish_model(request, aplicacion, tipo, modelo, clave, format):
    """
    Publish the information of all instances of a concrete model in the format
    given
    :param request:the request of the view
    :param format:the format to publish the data
    :param aplicacion: the name of the application where is located the model
    :param tipo: is the name of the entitie mapped
    :param modelo: the name of the model
    :return: return a file in xml, ttl or nt format, with the information
    """
    #Create the graph to generate the rdf
    graph = Graph()
    limit = getattr(settings, 'EASYDATA_PUBLISH_LIMIT', 50)

    #Create dictionary for namespaces
    namespaces = dict()

    #Bind the namespaces with their names
    for name in NameSpace.objects.all():
        if name.url != "http://www.w3.org/1999/02/22-rdf-syntax-ns#":
            graph.bind(name.short_name, name.url)
        namespaces[name.url] = Namespace(name.url)

    #Get all the models related with this entities
    mod = Modelo.objects.all()
    mod = mod.filter(visibilidad='V')
    mod = mod.exclude(entidad=None)
    mod = mod.filter(entidad__nombre=tipo)
    mod = mod.filter(aplicacion=aplicacion)
    mod = mod.filter(nombre=modelo)

    if mod.count() == 1:
        mod = mod.get()
        #Get the model class
        model_class = mod.devolver_modelo()

        if not model_class is None:
            #Get all the instances
            model_instances = model_class._default_manager.all()
            if not clave is None:
                model_instances = model_instances.filter(pk=unquote(clave))

            model_instances = model_instances[:limit]
            for instance in model_instances:
                #Generate the graph with the model instance info
                generate_unique(mod, instance.pk, graph, namespaces)

    if format == 'nt':
        return HttpResponse(graph.serialize(format="nt"),
                            mimetype='text/plain')
    elif format == 'ttl':
        return HttpResponse(graph.serialize(format="turtle"),
                            mimetype='text/turtle')
    else:
        return HttpResponse(graph.serialize(format="xml"),
                            mimetype='application/rdf+xml')
Example #2
0
def publish_model(request, aplicacion, tipo, modelo, clave, format):
    """
    Publish the information of all instances of a concrete model in the format
    given
    :param request:the request of the view
    :param format:the format to publish the data
    :param aplicacion: the name of the application where is located the model
    :param tipo: is the name of the entitie mapped
    :param modelo: the name of the model
    :return: return a file in xml, ttl or nt format, with the information
    """
    #Create the graph to generate the rdf
    graph = Graph()
    limit = getattr(settings, 'EASYDATA_PUBLISH_LIMIT', 50)

    #Create dictionary for namespaces
    namespaces = dict()

    #Bind the namespaces with their names
    for name in NameSpace.objects.all():
        if name.url != "http://www.w3.org/1999/02/22-rdf-syntax-ns#":
            graph.bind(name.short_name, name.url)
        namespaces[name.url] = Namespace(name.url)

    #Get all the models related with this entities
    mod = Modelo.objects.all()
    mod = mod.filter(visibilidad='V')
    mod = mod.exclude(entidad=None)
    mod = mod.filter(entidad__nombre=tipo)
    mod = mod.filter(aplicacion=aplicacion)
    mod = mod.filter(nombre=modelo)

    if mod.count() == 1:
        mod = mod.get()
        #Get the model class
        model_class = mod.devolver_modelo()

        if not model_class is None:
            #Get all the instances
            model_instances = model_class._default_manager.all()
            if not clave is None:
                model_instances = model_instances.filter(pk=unquote(clave))
            
            model_instances = model_instances[:limit]
            for instance in model_instances:
                #Generate the graph with the model instance info
                generate_unique(mod, instance.pk, graph, namespaces)

    if format == 'nt':
        return HttpResponse(graph.serialize(format="nt"),
                            mimetype='text/plain')
    elif format == 'ttl':
        return HttpResponse(graph.serialize(format="turtle"),
                            mimetype='text/turtle')
    else:
        return HttpResponse(graph.serialize(format="xml"),
                            mimetype='application/rdf+xml')
Example #3
0
def publish_type(request, format, names, tipo):
    """
    Publish the information of all instances which their models are mapped with
    the entity given
    :param request: the request of the view
    :param format: the format to publish the data (xml, nt or ttl)
    :param names: is the namespace short name
    :param tipo: the name of the entity
    :return: return a file in xml, ttl or nt format, with the information
    """
    entities = Entidad.objects.all()
    entities = entities.filter(nombre=tipo)
    entities = entities.filter(namespace__short_name=names)

    #Create the graph to generate the rdf
    graph = Graph()

    #Captamos el limite de instancias maximas a publicar
    limit = getattr(settings, 'EASYDATA_PUBLISH_LIMIT', 50)

    #Create dictionary for namespaces
    namespaces = dict()

    #Bind the namespaces with their names
    for name in NameSpace.objects.all():
        if name.url != "http://www.w3.org/1999/02/22-rdf-syntax-ns#":
            graph.bind(name.short_name, name.url)
        namespaces[name.url] = Namespace(name.url)

    for ent in entities:
        #Get all the ancients of the entitie
        hijos = descubre_hijos(ent)
        hijos.add(ent)

        #Get all the models related with this entities
        mods = Modelo.objects.all()
        mods = mods.filter(visibilidad='V')
        mods = mods.filter(entidad__in=hijos)

        for mod in mods:
            #Get the model class
            model_class = mod.devolver_modelo()

            if not model_class is None:
                #Get all the instances
                model_instances = model_class._default_manager.all()

                #Miro si se ha sobrepasado el limite de instancias a publicar
                if model_instances.count() <= limit:
                    limit = limit - model_instances.count()
                else:
                    model_instances = model_instances[:limit]
                    limit = 0

                for instance in model_instances:
                    #Generate the graph with the model instance info
                    generate_unique(mod, instance.pk, graph, namespaces)

    if format == 'nt':
        return HttpResponse(graph.serialize(format="nt"),
                            mimetype='text/plain')
    elif format == 'ttl':
        return HttpResponse(graph.serialize(format="turtle"),
                            mimetype='text/turtle')
    else:
        return HttpResponse(graph.serialize(format="xml"),
                            mimetype='application/rdf+xml')
Example #4
0
def publish_type(request, format, names, tipo):
    """
    Publish the information of all instances which their models are mapped with
    the entity given
    :param request: the request of the view
    :param format: the format to publish the data (xml, nt or ttl)
    :param names: is the namespace short name
    :param tipo: the name of the entity
    :return: return a file in xml, ttl or nt format, with the information
    """
    entities = Entidad.objects.all()
    entities = entities.filter(nombre=tipo)
    entities = entities.filter(namespace__short_name=names)

    #Create the graph to generate the rdf
    graph = Graph()
    
    #Captamos el limite de instancias maximas a publicar
    limit = getattr(settings, 'EASYDATA_PUBLISH_LIMIT', 50)

    #Create dictionary for namespaces
    namespaces = dict()

    #Bind the namespaces with their names
    for name in NameSpace.objects.all():
        if name.url != "http://www.w3.org/1999/02/22-rdf-syntax-ns#":
            graph.bind(name.short_name, name.url)
        namespaces[name.url] = Namespace(name.url)

    for ent in entities:
        #Get all the ancients of the entitie
        hijos = descubre_hijos(ent)
        hijos.add(ent)

        #Get all the models related with this entities
        mods = Modelo.objects.all()
        mods = mods.filter(visibilidad='V')
        mods = mods.filter(entidad__in=hijos)

        for mod in mods:
            #Get the model class
            model_class = mod.devolver_modelo()

            if not model_class is None:
                #Get all the instances
                model_instances = model_class._default_manager.all()
                
                #Miro si se ha sobrepasado el limite de instancias a publicar
                if model_instances.count() <= limit:
                    limit = limit - model_instances.count()
                else:
                    model_instances = model_instances[:limit]
                    limit = 0
                
                for instance in model_instances:
                    #Generate the graph with the model instance info
                    generate_unique(mod, instance.pk, graph, namespaces)

    if format == 'nt':
        return HttpResponse(graph.serialize(format="nt"),
                            mimetype='text/plain')
    elif format == 'ttl':
        return HttpResponse(graph.serialize(format="turtle"),
                            mimetype='text/turtle')
    else:
        return HttpResponse(graph.serialize(format="xml"),
                            mimetype='application/rdf+xml')