tinhr / api-h5p
Headless H5P Laravel REST API
Installs: 129
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
Type:package
pkg:composer/tinhr/api-h5p
Requires
- php: >=7.4
- bensampo/laravel-enum: >=2.0
- laravel/framework: >=9.0
- tinhr/h5p-core: ^1.0|dev-main
- tinhr/h5p-editor: ^1.0|dev-main
Requires (Dev)
- guzzlehttp/guzzle: ^7
- laravel/legacy-factories: ^1.0.4
- nunomaduro/larastan: ^2.0
- orchestra/testbench: ^7.0
- phpunit/phpunit: ^9.0
README
Forked from https://github.com/EscolaLMS
Description
This package provides a Laravel API for interacting with H5P content without installing unrelated dependencies.
Original Documentation
Features
The lib allows headlessly
- play all h5p content - exposed all essential data, yet player is needed
- edit all h5p content - exposed all essential data, yet editor is needed
- CRUD libraries
- CRUD content
- upload library from
.h5pfile - upload content from
.h5pfile
See Swagger documented endpoints.
To play the content you can use EscolaLMS H5P Player
Install
composer require tinhr/api-h5pphp artisan migratephp artisan h5p:storage-linksee below
Storage links
You need to publish many of files to be availabe as public link.
php artisan h5p:storage-link which creates a symbolic link from storage/h5 and vendor/tinhr/h5p-core and vendor/tinhr/h5p-editor to be accesible to public, as follows
public_path('h5p-core') => base_path().'vendor/tinhr/h5p-core',
public_path('h5p-editor') => base_path().'vendor/tinhr/h5p-editor',
Cors
All the endpoints need to be accesible from other domains, so CORS must be properlly set.
Except of endpoints assets must expose CORS headers as well. You achive that by setting Apache/Nginx/Caddy/Whatever settings - below is example for Nginx for wildcard global access.
location ~* \.(eot|ttf|woff|woff2|jpg|jpeg|gif|png|wav|mp3|mp4|mov|ogg|webv)$ {
add_header Access-Control-Allow-Origin *;
}
Seeder
To seed content and library
php artisan db:seed --class="\EscolaLms\HeadlessH5P\Database\Seeders\ContentLibrarySeeder"
You can seed library and content with build-in seeders as command that are accessible with
php artisan h5p:seedto add just librariesphp artisan h5p:seed --addContentto add content with libraries
Road map
- rewrite h5p core in a way like luminare in typescript