h5p-php-library/h5p.classes.php

236 lines
7.6 KiB
PHP
Raw Normal View History

<?php
interface h5pFramework {
2012-11-22 14:00:06 +01:00
public function setErrorMessage($message);
public function setInfoMessage($message);
public function t($message, $replacements);
public function getUploadedH5pDir();
public function getTempPath();
public function getUploadedH5pPath();
}
2012-11-26 22:48:51 +01:00
class h5pValidator {
2012-11-22 14:00:06 +01:00
public $h5pF;
2012-11-24 01:09:25 +01:00
// Schemas used to validate the h5p files
private $h5pRequired = array(
'title' => '^.{1,255}$',
'mainVersion' => '^[0-9]{1,5}$',
'language' => '^[a-z]{1,5}$',
'machineName' => '^[a-z0-9\-]{1,255}$',
'preloadedDependencies' => array(
'machineName' => '^[a-z0-9\-]{1,255}$',
'minimumVersion' => '^[0-9]{1,5}$',
),
'init' => '^[$A-Z_][0-9A-Z_\.$]{1,254}$',
'embedTypes' => array('iframe', 'div'),
);
private $h5pOptional = array(
'contentType' => '^.{1,255}$',
'utilization' => '^.{1,}$',
'subVersion' => '^[0-9]{1,5}$',
'author' => '^.{1,255}$',
'lisence' => '^(iframe|div)$',
'dynamicDependencies' => array(
'machineName' => '^[a-z0-9\-]{1,255}$',
'minimumVersion' => '^[0-9]{1,5}$',
),
'preloadedJs' => '^(\\[a-z_\-\s0-9\.]+)+\.(?i)(js)$',
'preloadedCss' => '^(\\[a-z_\-\s0-9\.]+)+\.(?i)(js)$',
'w' => '^[0-9]{1,4}$',
'h' => '^[0-9]{1,4}$',
'metaKeywords' => '^.{1,}$',
'metaDescription' => '^.{1,}$',
);
2012-11-22 14:00:06 +01:00
public function __construct($h5pFramework) {
2012-11-22 14:00:06 +01:00
$this->h5pF = $h5pFramework;
}
public function validatePackage() {
// Requires PEAR
require_once 'Archive/Tar.php';
// Create a temporary dir to extract package in.
$tmp_dir = $this->h5pFramework->getUploadedH5pDir();
$tmp_path = $this->h5pFramework->getUploadedH5pPath();
2012-11-22 14:00:06 +01:00
// Extract and then remove the package file.
$tar = new Archive_Tar($tmp_path, 'bz2');
if (!$tar->extract($tmp_dir)) {
$this->setErrorMessage($this->t('The file you uploaded is not a valid HTML5 Pack.'));
$this->rRmdir($tmp_dir);
return;
}
unlink($tmp_path);
// Process content and libraries
$contents = array();
$files = scandir($tmp_dir);
2012-11-22 14:00:06 +01:00
$json_exists = $image_exists = $content_exists = FALSE;
foreach ($files as $file) {
if (in_array($file, array('.', '..'))) {
continue;
}
$file_path = $tmp_dir . DIRECTORY_SEPARATOR . $file;
if (strtolower($file) == 'h5p.json') {
$json_exists = TRUE;
}
2012-11-22 14:00:06 +01:00
elseif (strtolower($file) == 'h5p.jpg') {
$image_exists = TRUE;
}
elseif ($file == 'content') {
$content_exists = TRUE;
// TODO: Validate content
}
elseif (strpos($file, '.') !== FALSE) {
// Illegal file fond. This is ignored.
continue;
}
2012-11-22 14:00:06 +01:00
else {
if (preg_match('/[^a-z0-9\-]/', $file)) {
2012-11-26 22:48:51 +01:00
$this->setErrorMessage($this->t('Invalid library name: %name', array('%name' => $file)));
2012-11-22 14:00:06 +01:00
$this->rRmdir($content_path);
continue;
}
$json = file_get_contents($file_path . DIRECTORY_SEPARATOR . 'h5p.json');
2012-11-22 14:00:06 +01:00
if (!$json) {
$this->setErrorMessage($this->t('Could not find h5p.json file: %name', array('%name' => $file)));
$this->rRmdir($file_path);
2012-11-22 14:00:06 +01:00
continue;
}
2012-11-26 22:48:51 +01:00
$h5pData = json_decode($json);
if (!$h5pData) {
$this->setErrorMessage($this->t('Invalid h5p.json file format: %name', array('%name' => $file)));
$this->rRmdir($file_path);
2012-11-22 14:00:06 +01:00
continue;
}
2012-11-28 13:56:42 +01:00
$errors = $this->validateH5pData($h5pData, $file);
2012-11-26 22:48:51 +01:00
if ($errors !== FALSE) {
// TODO: Print the (themed) errors
return;
2012-11-22 14:00:06 +01:00
}
2012-11-26 22:48:51 +01:00
if (isset($h5pData->preloadedJs)) {
if (!$this->isExcistingFiles($h5pData->preloadedJs, $tmp_dir, $file)) {
// TODO: Handle the fact that we are missing js files
2012-11-22 14:00:06 +01:00
}
}
2012-11-26 22:48:51 +01:00
if (isset($h5pData->preloadedCss)) {
if (!$this->isExcistingFiles($h5pData->preloadedCss, $tmp_dir, $file)) {
// TODO: Handle the fact that we are missing js files
2012-11-22 14:00:06 +01:00
}
}
}
2012-11-26 22:48:51 +01:00
// TODO: Store library info in array
2012-11-22 14:00:06 +01:00
}
2012-11-26 22:48:51 +01:00
// TODO: Check dependencies
}
private function isExcistingFiles($files, $tmp_dir, $library) {
foreach ($files as $file_path) {
$path = str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $file_path);
if (!file_exists($tmp_dir . DIRECTORY_SEPARATOR . $path)) {
$this->setErrorMessage($this->t('The JS file %file is missing from library: %name', array('%file' => $file_path, '%name' => $library)));
$this->rRmdir($tmp_dir);
return FALSE;
2012-11-22 14:00:06 +01:00
}
}
2012-11-26 22:48:51 +01:00
return TRUE;
}
2012-11-28 13:56:42 +01:00
private function validateH5pData($h5pData, $library_name) {
$errors = $this->validateRequiredH5pData($h5pData, $this->h5pRequired, $library_name);
array_push($errors, $this->validateOptionalH5pData($h5pData, $this->h5pOptional, $library_name));
if (!empty($errors)) {
return $errors;
}
else {
return FALSE;
}
}
private function validateOptionalH5pData($h5pData, $requirements, $library_name) {
$errors = array();
foreach ($h5pData as $key => $value) {
if (isset($requirements[$key])) {
array_merge($errors, validateRequirement($h5pData, $requirement, $library_name, $property_name));
}
// Else: ignore, a package can have parameters that this library doesn't care about, but that library
// specific implementations does care about...
}
return $errors;
}
private function validateRequirement($h5pData, $requirement, $library_name, $property_name) {
$errors = array();
if (is_string($requirement)) {
// The requirement is a regexp, match it against the data
if (is_string($h5pData)) {
if (preg_match($requirement, $h5pData) === 0) {
$errors[] = $this->t("Ivalid data provided for %property in %library", array('%property' => $property_name, '%library' => $library_name));
}
}
else {
$errors[] = $this->t("Ivalid data provided for %property in %library", array('%property' => $property_name, '%library' => $library_name));
}
}
elseif (is_array($requirement)) {
// We have sub requirements
if (is_array($h5pData)) {
array_merge($errors, $this->validateRequiredH5pData($h5pData, $requirement, $library_name));
}
else {
$errors[] = $this->t("Ivalid data provided for %property in %library", array('%property' => $property_name, '%library' => $library_name));
}
}
else {
$errors[] = $this->t("Can't read the property %property in %library", array('%property' => $property_name, '%library' => $library_name));
}
return $errors;
}
private function validateRequiredH5pData($h5pData, $requirements, $library_name) {
$errors = array();
foreach ($requirements as $required => $requirement) {
if (isset($h5pData[$required])) {
array_merge($errors, validateRequirement($h5pData[$required], $requirement, $library_name, $required));
}
else {
$errors[] = $this->t('The required property %property is missing from %library', array('%property' => $required, '%library' => $library_name));
}
}
return $errors;
2012-11-22 14:00:06 +01:00
}
/**
* Recursive function for removing directories.
*
* @param string $dir Directory.
* @return boolean Indicates if the directory existed.
*/
private function rRmdir($dir) {
if (is_dir($dir)) {
$files = scandir($dir);
for ($i = 2, $s = count($files); $i < $s; $i++) {
$file = $dir . DIRECTORY_SEPARATOR . $files[$i];
if (!$this->rRmdir($file)) {
unlink($file);
}
}
rmdir($dir);
return TRUE;
}
else {
return FALSE;
}
}
}
?>