gbv/viaf-jskos

JSKOS wrapper to Virtual International Authority File (VIAF)

0.2.0 2017-09-08 09:48 UTC

This package is auto-updated.

Last update: 2024-04-11 17:14:34 UTC


README

Latest Version Software License Build Status Coverage Status Quality Score Total Downloads

This repository contains a wrapper to access the Virtual International Authority File (VIAF) in JSKOS format via Entity Lookup Microservice API (ELMA).

Requirements

Requires PHP 7, jskos-rdf package and a HTTP client-implementation package.

Installation

Install a HTTP client implementation package, e.g. curl-client and this package:

composer require php-http/curl-client gbv/viaf-jskos

This will automatically create composer.json for your project (unless it already exists) and add viaf-jskos as dependency. Composer also generates vendor/autoload.php to get autoloading of all dependencies.

Usage

The wrapper can be used as instance of class \JSKOS\Service\VIAF, a subclass of \JSKOS\Service:

require 'vendor/autoload.php';

$service = new \JSKOS\Service\VIAF();

$jskos = $service->queryURI("http://viaf.org/viaf/102333412");
$jskos = $service->query(["uri" => "http://viaf.org/viaf/102333412"]);
$jskos = $service->query(["notation" => "102333412"]);

This repository contains a command line script to query VIAF in JSKOS format:

php examples/viaf2jskos.php http://viaf.org/viaf/102333412
php examples/viaf2jskos.php 102333412
php examples/viaf2jskos.php Jane Austen

Contributung

Bugs and feature request are tracked on GitHub.

See CONTRIBUTING.md of repository jskos-php for general guidelines.

Author and License

Jakob Voß jakob.voss@gbv.de

This package is licensed under the LGPL license (see LICENSE for details).