Download the PHP package botk/rdf without Composer

On this page you can find all versions of the php package botk/rdf. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package rdf

WARNING

The support to this project is now discontinued. Update your links.

Find the old version as tagged branch.

BOTK\Rdf

Build Status Code Coverage Latest Version Total Downloads License

This package is an EasyRDF extension to support authentication,reasoning, LDP server endpoints and more.

It extends the default httpclient of EasyRDF to support basic authentication and and provides two content negotiation policies to manage consistently representations for RDF graphs and for Sparql Results data models.

Beside this it contains an implementation of a simple end point to publish linked data supporting many serialization and html according Linked Data Platform Editor Draft specification

This package is available on Packagist.

You can install adding following dependances to composer.json file in your project root:

Documentation

HttpClient class

This class is a replacement forEasyRDF http client class. It adds the setAuth(string $user, string $password) method supporting basic http authentication type. HttpClient in turn it is a lightware alternative to Zend_Http_client or Guzzle libraries.

HttpClient is normally used as HTTP protocol wrapper for all EasyRDF specialized clients and for SparqlClient through EasyRdf_Http::setDefaultHttpClient() method, but it can be also used as a generic Web Resource client.

For example, to use simple client identity in accessing a remote sparql endpoint execute:

// define common properties of http client to use to access RDF web resources
$httpClient = new BOTK\RDF\HttpClient;
$httpClient->setAuth('username', 'password');
EasyRdf_Http::setDefaultHttpClient($httpClient);

// access a private sparql end-point that requires basic authentication
$sparql = new EasyRdf_Sparql_Client('https://private/sparql');
$result=$sparql->query('SELECT * WHERE {?s ?p ?o} LIMIT 10');

HttpClient interface is compatible with ZEND-Http_client library.

HttpClient provides a simple helper to create an authenticated HTTP client and use it in EasyRdf  with a single call of the static method HttpClient::useIdentity(string $usename = null, string $password=null, $timeout=null ) . If not specified the client will reuse the timeout of the calling script (if available) or 30 sec. otherwise. Using the helper, the previous code can be shorten as:

BOTK\RDF\HttpClient::useIdentity('username','password');

$sparql = new EasyRdf_Sparql_Client('https://private/sparql');
$result=$sparql->query('SELECT * WHERE {?s ?p ?o} LIMIT 10');

.

Content negotiation policies

RDF

This content negotiation policy is designed for applications that use  EasyRff_Graph data structure as Resource Model.

It provide following response and request representations:

  RDF class define following renderer functions: 
RDF::turtleRenderer(mixed $data, Standard::n3Renderer(mixed $data)
Serializes data structure as RDF text/turle
RDF::rdfxmlRenderer(mixed $data)
Serializes data structure as RDF application/xml+rdf.
RDF::jsonRenderer(mixed $data)
Serializes data structure using json
RDF::ntriplesRenderer(mixed $data)
serializes data structure RDF ntriples.
RDF::htmlRenderer(mixed $data)
serializes data structure as html.
RDF::serialphpRenderer(mixed $data)
serializes data structure as php.

SparqlClientResult

This content negotiation policy is designed for applications that use  EasyRdf_Sparql_Result data structure as Resource Model.

It provide following response and request representations:

Simple Linked Data Platform Server (SLDPS)

This set of classes allow you to implement a simple endpoint to publish linked data according last Linked Data Platform Woking Group Draft Specifications . The provided classes can be used to base  Linked Data Platform Server Implementations.

Here is a simple script that realizes an LDP PAGING server:

LDPController class

This class provides an generic abstract implementation of a LDP paged controller. In order to get a working implementation you have to implement three methods:

It provides a simple template engine (from Core Package) populated with a set  of predefine variables placeholders:

The protected context variable contains an instance of Core PagedResourceContext.

SparqlLDPController Class

This class extends LDPController and provides a generic  implementation of a Linked Data Platform Server that publish as Linked Data Resources some resources contained in a sparql Server.

You need to redefine following variables to override defaults :

$username
the username required to access sparql update endpoint, default is empty
$password
the password required to access sparql update endpoint. only Basic method supported, default is empty
$endpoint
the sparql endpoint uri. The default is empty.  Examples of valid open sparql endpoints are: http://dbpedia.org/sparql,  http://lod.openlinksw.com/sparql, http://linkedopencommerce.com/sparql
$pagingPolicy
it is a string value that can be `AGGRESSIVE` or `CONSERVATIVE` to drive next page detection algorithm. The default is  AGGRESSIVE
$constructor
must contain a valid  sparq query template that build a graph with linked data. Do not include  LIMIT/OFFSET clause.The default is empty.
$metadata
optionally contains a turtle template with paged resource metadata. The default is empty

SparqlLDPController class implements LDPController abstract methods:

Beside this, SparqlLDPController class implements  :

This class add following predefined variables placeholders to the simple template engine:

You can use these variables, plus the ones defined in LDPController, in $constructor and $metadata templates.

    Here is a full example of a contanainer/resource LDP-PAGING implementation using void and prov ontology to
    annotate resources:

License

Copyright © 2016 by Enrico Fagnoni at LinkedData.Center®

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


All versions of rdf with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5
easyrdf/easyrdf Version ~0.9
botk/core Version ~5.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package botk/rdf contains the following files

Loading the files please wait ....