Merge branch 'master' of github.com:h5p/h5p-php-library
commit
1752d4eccf
|
@ -153,14 +153,14 @@ class H5PDevelopment {
|
|||
* @param int $minorVersion of the library.
|
||||
* @return string Translation
|
||||
*/
|
||||
public function getLanguage($name, $majorVersion, $minorVersion) {
|
||||
public function getLanguage($name, $majorVersion, $minorVersion, $language) {
|
||||
$library = H5PDevelopment::libraryToString($name, $majorVersion, $minorVersion);
|
||||
|
||||
if (isset($this->libraries[$library]) === FALSE) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return $this->getFileContents($this->libraries[$library]['path'] . '/language/' . $this->language . '.json');
|
||||
return $this->getFileContents($this->libraries[$library]['path'] . '/language/' . $language . '.json');
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -175,4 +175,3 @@ class H5PDevelopment {
|
|||
return $name . ' ' . $majorVersion . '.' . $minorVersion;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
317
h5p.classes.php
317
h5p.classes.php
|
@ -7,7 +7,10 @@ interface H5PFrameworkInterface {
|
|||
/**
|
||||
* Returns info for the current platform
|
||||
*
|
||||
* @return array An array containing info
|
||||
* @return array
|
||||
* An associative array containing:
|
||||
* - name: The name of the plattform, for instance "Wordpress"
|
||||
* - version: The version of the pattform, for instance "4.0"
|
||||
*/
|
||||
public function getPlatformInfo();
|
||||
|
||||
|
@ -40,59 +43,82 @@ interface H5PFrameworkInterface {
|
|||
* - @variable: escape plain text to HTML
|
||||
* - %variable: escape text and theme as a placeholder for user-submitted
|
||||
* content
|
||||
* @return string Translated string
|
||||
* @return string
|
||||
* Translated string
|
||||
*/
|
||||
public function t($message, $replacements = array());
|
||||
|
||||
/**
|
||||
* Get the Path to the last uploaded h5p
|
||||
*
|
||||
* @return string Path to the folder where the last uploaded h5p for this session is located.
|
||||
* @return string
|
||||
* Path to the folder where the last uploaded h5p for this session is located.
|
||||
*/
|
||||
public function getUploadedH5pFolderPath();
|
||||
|
||||
/**
|
||||
* @return string Path to the folder where all h5p files are stored
|
||||
* @return string
|
||||
* Path to the folder where all h5p files are stored
|
||||
*/
|
||||
public function getH5pPath();
|
||||
|
||||
/**
|
||||
* Get the path to the last uploaded h5p file
|
||||
*
|
||||
* @return string Path to the last uploaded h5p
|
||||
* @return string
|
||||
* Path to the last uploaded h5p
|
||||
*/
|
||||
public function getUploadedH5pPath();
|
||||
|
||||
/**
|
||||
* Get the list of the current installed libraries
|
||||
* Get a list of the current installed libraries
|
||||
*
|
||||
* @return array Associative array containg one item per machine name. This item contains an array of libraries.
|
||||
* @return array
|
||||
* Associative array containg one entry per machine name.
|
||||
* For each machineName there is a list of libraries(with different versions)
|
||||
*/
|
||||
public function loadLibraries();
|
||||
|
||||
/**
|
||||
* Saving the unsupported library list
|
||||
*
|
||||
* @param array A list of unsupported libraries
|
||||
* @param array
|
||||
* A list of unsupported libraries. Each list entry contains:
|
||||
* - name: MachineName for the library
|
||||
* - downloadUrl: URL to a location a new version of the library may be downloaded from
|
||||
* - currentVersion: The unsupported version of the library installed on the system.
|
||||
* This is an associative array containing:
|
||||
* - major: The major version of the library
|
||||
* - minor: The minor version of the library
|
||||
* - patch: The patch version of the library
|
||||
*/
|
||||
public function setUnsupportedLibraries($libraries);
|
||||
|
||||
/**
|
||||
* Returns unsupported libraries
|
||||
*
|
||||
* @return array A list of the unsupported libraries
|
||||
* @return array
|
||||
* A list of unsupported libraries. Each entry contains an associative array with:
|
||||
* - name: MachineName for the library
|
||||
* - downloadUrl: URL to a location a new version of the library may be downloaded from
|
||||
* - currentVersion: The unsupported version of the library installed on the system.
|
||||
* This is an associative array containing:
|
||||
* - major: The major version of the library
|
||||
* - minor: The minor version of the library
|
||||
* - patch: The patch version of the library
|
||||
*/
|
||||
public function getUnsupportedLibraries();
|
||||
|
||||
/**
|
||||
* Returns the URL to the library admin page
|
||||
*
|
||||
* @return string URL to admin page
|
||||
* @return string
|
||||
* URL to admin page
|
||||
*/
|
||||
public function getAdminUrl();
|
||||
|
||||
/**
|
||||
* Get id to an excisting library
|
||||
* Get id to an existing library
|
||||
*
|
||||
* @param string $machineName
|
||||
* The librarys machine name
|
||||
|
@ -111,8 +137,12 @@ interface H5PFrameworkInterface {
|
|||
* The default extension list is part of h5p, but admins should be allowed to modify it
|
||||
*
|
||||
* @param boolean $isLibrary
|
||||
* TRUE if this is the whitelist for a library. FALSE if it is the whitelist
|
||||
* for the content folder we are getting
|
||||
* @param string $defaultContentWhitelist
|
||||
* A string of file extensions separated by whitespace
|
||||
* @param string $defaultLibraryWhitelist
|
||||
* A string of file extensions separated by whitespace
|
||||
*/
|
||||
public function getWhitelist($isLibrary, $defaultContentWhitelist, $defaultLibraryWhitelist);
|
||||
|
||||
|
@ -120,9 +150,13 @@ interface H5PFrameworkInterface {
|
|||
* Is the library a patched version of an existing library?
|
||||
*
|
||||
* @param object $library
|
||||
* The library data for a library we are checking
|
||||
* An associateve array containing:
|
||||
* - machineName: The library machineName
|
||||
* - majorVersion: The librarys majorVersion
|
||||
* - minorVersion: The librarys minorVersion
|
||||
* - patchVersion: The librarys patchVersion
|
||||
* @return boolean
|
||||
* TRUE if the library is a patched version of an excisting library
|
||||
* TRUE if the library is a patched version of an existing library
|
||||
* FALSE otherwise
|
||||
*/
|
||||
public function isPatchedLibrary($library);
|
||||
|
@ -151,23 +185,53 @@ interface H5PFrameworkInterface {
|
|||
* Also fills in the libraryId in the libraryData object if the object is new
|
||||
*
|
||||
* @param object $libraryData
|
||||
* Object holding the information that is to be stored
|
||||
* Associative array containing:
|
||||
* - libraryId: The id of the library if it is an existing library.
|
||||
* - title: The library's name
|
||||
* - machineName: The library machineName
|
||||
* - majorVersion: The library's majorVersion
|
||||
* - minorVersion: The library's minorVersion
|
||||
* - patchVersion: The library's patchVersion
|
||||
* - runnable: 1 if the library is a content type, 0 otherwise
|
||||
* - fullscreen(optional): 1 if the library supports fullscreen, 0 otherwise
|
||||
* - embedTypes(optional): list of supported embed types
|
||||
* - preloadedJs(optional): list of associative arrays containing:
|
||||
* - path: path to a js file relative to the library root folder
|
||||
* - preloadedCss(optional): list of associative arrays containing:
|
||||
* - path: path to css file relative to the library root folder
|
||||
* - dropLibraryCss(optional): list of associative arrays containing:
|
||||
* - machineName: machine name for the librarys that are to drop their css
|
||||
* - semantics(optional): Json describing the content structure for the library
|
||||
* - language(optional): associative array containing:
|
||||
* - languageCode: Translation in json format
|
||||
*/
|
||||
public function saveLibraryData(&$libraryData, $new = TRUE);
|
||||
|
||||
/**
|
||||
* Insert new content.
|
||||
*
|
||||
* @param object $content
|
||||
* @param array $content
|
||||
* An associative array containing:
|
||||
* - id: The content id
|
||||
* - params: The content in json format
|
||||
* - library: An associative array containing:
|
||||
* - libraryId: The id of the main library for this content
|
||||
* @param int $contentMainId
|
||||
* Main id for the content if this is a system that supports versioning
|
||||
*/
|
||||
public function insertContent($content, $contentMainId = NULL);
|
||||
|
||||
/**
|
||||
* Update old content.
|
||||
*
|
||||
* @param object $content
|
||||
* @param array $content
|
||||
* An associative array containing:
|
||||
* - id: The content id
|
||||
* - params: The content in json format
|
||||
* - library: An associative array containing:
|
||||
* - libraryId: The id of the main library for this content
|
||||
* @param int $contentMainId
|
||||
* Main id for the content if this is a system that supports versioning
|
||||
*/
|
||||
public function updateContent($content, $contentMainId = NULL);
|
||||
|
||||
|
@ -177,21 +241,27 @@ interface H5PFrameworkInterface {
|
|||
* @param int $libraryId
|
||||
* Library Id for the library we're saving dependencies for
|
||||
* @param array $dependencies
|
||||
* List of dependencies in the format used in library.json
|
||||
* List of dependencies as associative arrays containing:
|
||||
* - machineName: The library machineName
|
||||
* - majorVersion: The library's majorVersion
|
||||
* - minorVersion: The library's minorVersion
|
||||
* @param string $dependency_type
|
||||
* What type of dependency this is, for instance it might be an editor dependency
|
||||
* What type of dependency this is, the following values are allowed:
|
||||
* - editor
|
||||
* - preloaded
|
||||
* - dynamic
|
||||
*/
|
||||
public function saveLibraryDependencies($libraryId, $dependencies, $dependency_type);
|
||||
|
||||
/**
|
||||
* Copies library usage
|
||||
* Give an H5P the same library dependencies as a given H5P
|
||||
*
|
||||
* @param int $contentId
|
||||
* Framework specific id identifying the content
|
||||
* Id identifying the content
|
||||
* @param int $copyFromId
|
||||
* Framework specific id identifying the content to be copied
|
||||
* Id identifying the content to be copied
|
||||
* @param int $contentMainId
|
||||
* Framework specific main id for the content, typically used in frameworks
|
||||
* Main id for the content, typically used in frameworks
|
||||
* That supports versioning. (In this case the content id will typically be
|
||||
* the version id, and the contentMainId will be the frameworks content id
|
||||
*/
|
||||
|
@ -201,7 +271,7 @@ interface H5PFrameworkInterface {
|
|||
* Deletes content data
|
||||
*
|
||||
* @param int $contentId
|
||||
* Framework specific id identifying the content
|
||||
* Id identifying the content
|
||||
*/
|
||||
public function deleteContentData($contentId);
|
||||
|
||||
|
@ -217,11 +287,17 @@ interface H5PFrameworkInterface {
|
|||
* Saves what libraries the content uses
|
||||
*
|
||||
* @param int $contentId
|
||||
* Framework specific id identifying the content
|
||||
* Id identifying the content
|
||||
* @param array $librariesInUse
|
||||
* List of libraries the content uses. Libraries consist of arrays with:
|
||||
* - libraryId stored in $librariesInUse[<place>]['library']['libraryId']
|
||||
* - libraryId stored in $librariesInUse[<place>]['preloaded']
|
||||
* List of libraries the content uses. Libraries consist of associative arrays with:
|
||||
* - library: Associative array containing:
|
||||
* - dropLibraryCss(optional): commasepareted list of machineNames
|
||||
* - machineName: Machine name for the library
|
||||
* - libraryId: Id of the library
|
||||
* - type: The dependency type. Allowed values:
|
||||
* - editor
|
||||
* - dynamic
|
||||
* - preloaded
|
||||
*/
|
||||
public function saveLibraryUsage($contentId, $librariesInUse);
|
||||
|
||||
|
@ -229,9 +305,12 @@ interface H5PFrameworkInterface {
|
|||
* Get number of content/nodes using a library, and the number of
|
||||
* dependencies to other libraries
|
||||
*
|
||||
* @param int $library_id
|
||||
* @return array The array contains two elements, keyed by 'content' and 'libraries'.
|
||||
* Each element contains a number
|
||||
* @param int $libraryId
|
||||
* Library identifier
|
||||
* @return array
|
||||
* Associative array containing:
|
||||
* - content: Number of content using the library
|
||||
* - libraries: Number of libraries depending on the library
|
||||
*/
|
||||
public function getLibraryUsage($libraryId);
|
||||
|
||||
|
@ -239,109 +318,186 @@ interface H5PFrameworkInterface {
|
|||
* Loads a library
|
||||
*
|
||||
* @param string $machineName
|
||||
* The library's machine name
|
||||
* @param int $majorVersion
|
||||
* The library's major version
|
||||
* @param int $minorVersion
|
||||
* The library's minor version
|
||||
* @return array|FALSE
|
||||
* Array representing the library with dependency descriptions
|
||||
* FALSE if the library doesn't exist
|
||||
* FALSE if the library doesn't exist.
|
||||
* Otherwise an associative array containing:
|
||||
* - libraryId: The id of the library if it is an existing library.
|
||||
* - title: The library's name
|
||||
* - machineName: The library machineName
|
||||
* - majorVersion: The library's majorVersion
|
||||
* - minorVersion: The library's minorVersion
|
||||
* - patchVersion: The library's patchVersion
|
||||
* - runnable: 1 if the library is a content type, 0 otherwise
|
||||
* - fullscreen(optional): 1 if the library supports fullscreen, 0 otherwise
|
||||
* - embedTypes(optional): list of supported embed types
|
||||
* - preloadedJs(optional): comma separated string with js file paths
|
||||
* - preloadedCss(optional): comma separated sting with css file paths
|
||||
* - dropLibraryCss(optional): list of associative arrays containing:
|
||||
* - machineName: machine name for the librarys that are to drop their css
|
||||
* - semantics(optional): Json describing the content structure for the library
|
||||
* - preloadedDependencies(optional): list of associative arrays containing:
|
||||
* - machineName: Machine name for a library this library is depending on
|
||||
* - majorVersion: Major version for a library this library is depending on
|
||||
* - minorVersion: Minor for a library this library is depending on
|
||||
* - dynamicDependencies(optional): list of associative arrays containing:
|
||||
* - machineName: Machine name for a library this library is depending on
|
||||
* - majorVersion: Major version for a library this library is depending on
|
||||
* - minorVersion: Minor for a library this library is depending on
|
||||
* - editorDependencies(optional): list of associative arrays containing:
|
||||
* - machineName: Machine name for a library this library is depending on
|
||||
* - majorVersion: Major version for a library this library is depending on
|
||||
* - minorVersion: Minor for a library this library is depending on
|
||||
*/
|
||||
public function loadLibrary($machineName, $majorVersion, $minorVersion);
|
||||
|
||||
/**
|
||||
* Loads library semantics.
|
||||
*
|
||||
* @param string $name library identifier.
|
||||
* @param int $majorVersion library identifier.
|
||||
* @param int $minorVersion library identifier.
|
||||
* @return string semantics.
|
||||
* @param string $machineName
|
||||
* Machine name for the library
|
||||
* @param int $majorVersion
|
||||
* The library's major version
|
||||
* @param int $minorVersion
|
||||
* The library's minor version
|
||||
* @return string
|
||||
* The library's semantics as json
|
||||
*/
|
||||
public function loadLibrarySemantics($name, $majorVersion, $minorVersion);
|
||||
public function loadLibrarySemantics($machineName, $majorVersion, $minorVersion);
|
||||
|
||||
/**
|
||||
* Makes it possible to alter the semantics, adding custom fields, etc.
|
||||
*
|
||||
* @param array $semantics
|
||||
* @param string $name library identifier.
|
||||
* @param int $majorVersion library identifier.
|
||||
* @param int $minorVersion library identifier.
|
||||
* Associative array representing the semantics
|
||||
* @param string $machineName
|
||||
* The library's machine name
|
||||
* @param int $majorVersion
|
||||
* The library's major version
|
||||
* @param int $minorVersion
|
||||
* The library's minor version
|
||||
*/
|
||||
public function alterLibrarySemantics(&$semantics, $name, $majorVersion, $minorVersion);
|
||||
public function alterLibrarySemantics(&$semantics, $machineName, $majorVersion, $minorVersion);
|
||||
|
||||
/**
|
||||
* Delete all dependencies belonging to given library
|
||||
*
|
||||
* @param int $libraryId
|
||||
* Library Id
|
||||
* Library identifier
|
||||
*/
|
||||
public function deleteLibraryDependencies($libraryId);
|
||||
|
||||
/**
|
||||
* Delete a library from database and file system
|
||||
*
|
||||
* @param mixed $library Library
|
||||
* @param stdClass $library
|
||||
* Library object with id, name, major version and minor version.
|
||||
*/
|
||||
public function deleteLibrary($library);
|
||||
|
||||
/**
|
||||
* Load content.
|
||||
*
|
||||
* @return object Content, null if not found.
|
||||
* @param int $id
|
||||
* Content identifier
|
||||
* @return array
|
||||
* Associative array containing:
|
||||
* - contentId: Identifier for the content
|
||||
* - params: json content as string
|
||||
* - embedType: csv of embed types
|
||||
* - title: The contents title
|
||||
* - language: Language code for the content
|
||||
* - libraryId: Id for the main library
|
||||
* - libraryName: The library machine name
|
||||
* - libraryMajorVersion: The library's majorVersion
|
||||
* - libraryMinorVersion: The library's minorVersion
|
||||
* - libraryEmbedTypes: CSV of the main library's embed types
|
||||
* - libraryFullscreen: 1 if fullscreen is supported. 0 otherwise.
|
||||
*/
|
||||
public function loadContent($id);
|
||||
|
||||
/**
|
||||
* Load dependencies for the given content of the given type.
|
||||
*
|
||||
* @param int $id content.
|
||||
* @param int $type dependency.
|
||||
* @param int $id
|
||||
* Content identifier
|
||||
* @param int $type
|
||||
* Dependency types. Allowed values:
|
||||
* - editor
|
||||
* - preloaded
|
||||
* - dynamic
|
||||
* @return array
|
||||
* List of associative arrays containing:
|
||||
* - libraryId: The id of the library if it is an existing library.
|
||||
* - machineName: The library machineName
|
||||
* - majorVersion: The library's majorVersion
|
||||
* - minorVersion: The library's minorVersion
|
||||
* - patchVersion: The library's patchVersion
|
||||
* - preloadedJs(optional): comma separated string with js file paths
|
||||
* - preloadedCss(optional): comma separated sting with css file paths
|
||||
* - dropCss(optional): csv of machine names
|
||||
*/
|
||||
public function loadContentDependencies($id, $type = NULL);
|
||||
|
||||
/**
|
||||
* Get data from cache.
|
||||
* Get stored setting.
|
||||
*
|
||||
* @param string $group
|
||||
* @param string $key
|
||||
* @param string $name
|
||||
* Identifier for the setting
|
||||
* @param string $default
|
||||
* Optional default value if settings is not set
|
||||
* @return mixed
|
||||
* Whatever has been stored as the setting
|
||||
*/
|
||||
public function cacheGet($group, $key);
|
||||
public function getOption($name, $default = NULL);
|
||||
|
||||
/**
|
||||
* Store data in cache.
|
||||
* Stores the given setting.
|
||||
* For example when did we last check h5p.org for updates to our libraries.
|
||||
*
|
||||
* @param string $group
|
||||
* @param string $key
|
||||
* @param mixed $data
|
||||
* @param string $name
|
||||
* Identifier for the setting
|
||||
* @param mixed $value Data
|
||||
* Whatever we want to store as the setting
|
||||
*/
|
||||
public function cacheSet($group, $key, $data);
|
||||
public function setOption($name, $value);
|
||||
|
||||
/**
|
||||
* Delete data from cache.
|
||||
* This will set the filtered parameters for the given content.
|
||||
*
|
||||
* @param string $group
|
||||
* @param string $key
|
||||
* @param int $content_id
|
||||
* @param string $parameters filtered
|
||||
*/
|
||||
public function cacheDel($group, $key = NULL);
|
||||
public function setFilteredParameters($content_id, $parameters = '');
|
||||
|
||||
/**
|
||||
* Will invalidate the cache for the content that uses the specified library.
|
||||
* This means that the content dependencies has to be rebuilt, and the parameters refiltered.
|
||||
* Will clear filtered params for all the content that uses the specified
|
||||
* library. This means that the content dependencies will have to be rebuilt,
|
||||
* and the parameters refiltered.
|
||||
*
|
||||
* @param int $library_id
|
||||
*/
|
||||
public function invalidateContentCache($library_id);
|
||||
public function clearFilteredParameters($library_id);
|
||||
|
||||
/**
|
||||
* Get content without cache.
|
||||
* Get number of contents that has to get their content dependencies rebuilt
|
||||
* and parameters refiltered.
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getNotCached();
|
||||
public function getNumNotFiltered();
|
||||
|
||||
/**
|
||||
* Get number of contents using library as main library.
|
||||
*
|
||||
* @param int $library_id
|
||||
* @param int $libraryId
|
||||
* @return int
|
||||
*/
|
||||
public function getNumContent($library_id);
|
||||
public function getNumContent($libraryId);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1110,7 +1266,7 @@ class H5PStorage {
|
|||
}
|
||||
|
||||
// Make sure libraries dependencies, parameter filtering and export files gets regenerated for all content who uses this library.
|
||||
$this->h5pF->invalidateContentCache($library['libraryId']);
|
||||
$this->h5pF->clearFilteredParameters($library['libraryId']);
|
||||
|
||||
$upgradedLibsCount++;
|
||||
}
|
||||
|
@ -1154,7 +1310,7 @@ class H5PStorage {
|
|||
|
||||
if ($upgradeOnly) {
|
||||
// TODO - support translation
|
||||
$this->h5pF->setInfoMessage($upgradedLibsCount . ' libraries were upgraded!');
|
||||
$this->h5pF->setInfoMessage($this->h5pF->t('@num libraries were upgraded!', array('@num' => $upgradedLibsCount)));
|
||||
}
|
||||
|
||||
return $library_saved;
|
||||
|
@ -1258,7 +1414,9 @@ Class H5PExport {
|
|||
// Build h5p.json
|
||||
$h5pJson = array (
|
||||
'title' => $content['title'],
|
||||
'language' => $content['language'],
|
||||
// TODO - stop using 'und', this is not the preferred way.
|
||||
// Either remove language from the json if not existing, or use "language": null
|
||||
'language' => isset($content['language']) ? $content['language'] : 'und',
|
||||
'mainLibrary' => $content['library']['name'],
|
||||
'embedTypes' => $embedTypes,
|
||||
);
|
||||
|
@ -1410,11 +1568,6 @@ class H5PCore {
|
|||
$content['id'] = $this->h5pF->insertContent($content, $contentMainId);
|
||||
}
|
||||
|
||||
if (!isset($content['filtered'])) {
|
||||
// TODO: Add filtered to all impl. and remove
|
||||
$this->h5pF->cacheDel('parameters', $content['id']);
|
||||
}
|
||||
|
||||
return $content['id'];
|
||||
}
|
||||
|
||||
|
@ -1462,16 +1615,8 @@ class H5PCore {
|
|||
* @return Object NULL on failure.
|
||||
*/
|
||||
public function filterParameters($content) {
|
||||
if (isset($content['filtered'])) {
|
||||
$params = ($content['filtered'] === '' ? NULL : $content['filtered']);
|
||||
}
|
||||
else {
|
||||
// TODO: Add filtered to all impl. and remove
|
||||
$params = $this->h5pF->cacheGet('parameters', $content['id']);
|
||||
}
|
||||
|
||||
if ($params !== NULL) {
|
||||
return $params;
|
||||
if (isset($content['filtered']) && $content['filtered'] !== '') {
|
||||
return $content['filtered'];
|
||||
}
|
||||
|
||||
// Validate and filter against main library semantics.
|
||||
|
@ -1498,7 +1643,7 @@ class H5PCore {
|
|||
}
|
||||
|
||||
// Cache.
|
||||
$this->h5pF->cacheSet('parameters', $content['id'], $params);
|
||||
$this->h5pF->setFilteredParameters($content['id'], $params);
|
||||
return $params;
|
||||
}
|
||||
|
||||
|
@ -2441,7 +2586,7 @@ class H5PContentValidator {
|
|||
if (!isset($this->libraries[$value->library])) {
|
||||
$libspec = H5PCore::libraryFromString($value->library);
|
||||
$library = $this->h5pC->loadLibrary($libspec['machineName'], $libspec['majorVersion'], $libspec['minorVersion']);
|
||||
$library['semantics'] = json_decode($library['semantics']);
|
||||
$library['semantics'] = $this->h5pC->loadLibrarySemantics($libspec['machineName'], $libspec['majorVersion'], $libspec['minorVersion']);
|
||||
$this->libraries[$value->library] = $library;
|
||||
|
||||
// Find all dependencies for this library
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
/*jshint -W083 */
|
||||
var H5PUpgrades = H5PUpgrades || {};
|
||||
|
||||
(function ($) {
|
||||
|
@ -212,18 +213,28 @@ var H5PUpgrades = H5PUpgrades || {};
|
|||
var current = 0; // Track progress
|
||||
asyncSerial(parameters, function (id, params, next) {
|
||||
|
||||
try {
|
||||
// Make params possible to work with
|
||||
params = JSON.parse(params);
|
||||
if (!(params instanceof Object)) {
|
||||
throw true;
|
||||
}
|
||||
}
|
||||
catch (event) {
|
||||
return next(info.errorContent.replace('%id', id) + ' ' + info.errorParamsBroken);
|
||||
}
|
||||
|
||||
// Upgrade this content.
|
||||
self.upgrade(info.library.name, new Version(info.library.version), self.version, params, function (err, params) {
|
||||
if (!err) {
|
||||
if (err) {
|
||||
return next(info.errorContent.replace('%id', id) + ' ' + err);
|
||||
}
|
||||
|
||||
upgraded[id] = JSON.stringify(params);
|
||||
|
||||
current++;
|
||||
self.throbber.setProgress(Math.round((info.total - self.left + current) / (info.total / 100)) + ' %');
|
||||
}
|
||||
next(err);
|
||||
next();
|
||||
});
|
||||
|
||||
}, function (err) {
|
||||
|
@ -374,14 +385,16 @@ var H5PUpgrades = H5PUpgrades || {};
|
|||
}
|
||||
else {
|
||||
// We found an upgrade hook, run it
|
||||
if (upgrade.contentUpgrade !== undefined && typeof upgrade.contentUpgrade === 'function') {
|
||||
upgrade.contentUpgrade(params, function (err, upgradedParams) {
|
||||
var unnecessaryWrapper = (upgrade.contentUpgrade !== undefined ? upgrade.contentUpgrade : upgrade);
|
||||
|
||||
try {
|
||||
unnecessaryWrapper(params, function (err, upgradedParams) {
|
||||
params = upgradedParams;
|
||||
nextMinor(err);
|
||||
});
|
||||
}
|
||||
else {
|
||||
nextMinor(info.errorScript.replace('%lib', library.name + ' ' + newVersion));
|
||||
catch (err) {
|
||||
next(err);
|
||||
}
|
||||
}
|
||||
}, nextMajor);
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/*jshint multistr: true */
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
@ -130,8 +132,8 @@ var H5P = H5P || (function () {
|
|||
if (document.documentElement.requestFullScreen) {
|
||||
fullScreenBrowserPrefix = '';
|
||||
}
|
||||
else if (document.documentElement.webkitRequestFullScreen
|
||||
&& navigator.userAgent.indexOf('Android') === -1 // Skip Android
|
||||
else if (document.documentElement.webkitRequestFullScreen &&
|
||||
navigator.userAgent.indexOf('Android') === -1 // Skip Android
|
||||
) {
|
||||
safariBrowser = navigator.userAgent.match(/Version\/(\d)/);
|
||||
safariBrowser = (safariBrowser === null ? 0 : parseInt(safariBrowser[1]));
|
||||
|
|
|
@ -257,7 +257,7 @@ var H5PLibraryDetails= H5PLibraryDetails || {};
|
|||
H5PLibraryDetails.updatePager();
|
||||
};
|
||||
|
||||
var inputTimer = undefined;
|
||||
var inputTimer;
|
||||
$('input', H5PLibraryDetails.$search).on('change keypress paste input', function () {
|
||||
// Here we start the filtering
|
||||
// We wait at least 500 ms after last input to perform search
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
/*jshint multistr: true */
|
||||
var H5PLibraryList = H5PLibraryList || {};
|
||||
|
||||
(function ($) {
|
||||
|
@ -23,9 +24,9 @@ var H5PLibraryList= H5PLibraryList || {};
|
|||
* @param {object} libraries List of libraries and headers
|
||||
*/
|
||||
H5PLibraryList.createLibraryList = function (libraries) {
|
||||
|
||||
var t = H5PIntegration.i18n.H5P;
|
||||
if(libraries.listData === undefined || libraries.listData.length === 0) {
|
||||
return;
|
||||
return $('<div>' + t.NA + '</div>');
|
||||
}
|
||||
|
||||
// Create table
|
||||
|
@ -33,14 +34,22 @@ var H5PLibraryList= H5PLibraryList || {};
|
|||
$table.addClass('libraries');
|
||||
|
||||
// Add libraries
|
||||
var t = H5PIntegration.i18n.H5P;
|
||||
$.each (libraries.listData, function (index, library) {
|
||||
var $libraryRow = H5PUtils.createTableRow([
|
||||
library.title,
|
||||
'<input class="h5p-admin-restricted" type="checkbox"/>',
|
||||
library.numContent,
|
||||
library.numContentDependencies,
|
||||
library.numLibraryDependencies,
|
||||
{
|
||||
text: library.numContent,
|
||||
class: 'h5p-admin-center'
|
||||
},
|
||||
{
|
||||
text: library.numContentDependencies,
|
||||
class: 'h5p-admin-center'
|
||||
},
|
||||
{
|
||||
text: library.numLibraryDependencies,
|
||||
class: 'h5p-admin-center'
|
||||
},
|
||||
'<div class="h5p-admin-buttons-wrapper">\
|
||||
<button class="h5p-admin-upgrade-library"></button>\
|
||||
<button class="h5p-admin-view-library" title="' + t.viewLibrary + '"></button>\
|
||||
|
@ -50,10 +59,11 @@ var H5PLibraryList= H5PLibraryList || {};
|
|||
|
||||
H5PLibraryList.addRestricted($('.h5p-admin-restricted', $libraryRow), library.restrictedUrl, library.restricted);
|
||||
|
||||
var hasContent = !(library.numContent === '' || library.numContent === 0);
|
||||
if (library.upgradeUrl === null) {
|
||||
$('.h5p-admin-upgrade-library', $libraryRow).remove();
|
||||
}
|
||||
else if (library.upgradeUrl === false || library.numContent === 0) {
|
||||
else if (library.upgradeUrl === false || !hasContent) {
|
||||
$('.h5p-admin-upgrade-library', $libraryRow).attr('disabled', true);
|
||||
}
|
||||
else {
|
||||
|
@ -68,7 +78,7 @@ var H5PLibraryList= H5PLibraryList || {};
|
|||
});
|
||||
|
||||
var $deleteButton = $('.h5p-admin-delete-library', $libraryRow);
|
||||
if (libraries.notCached !== undefined || library.numContent !== 0 || (library.numContentDependencies !== '' && library.numContentDependencies !== 0) || (library.numLibraryDependencies !== '' && library.numLibraryDependencies !== 0)) {
|
||||
if (libraries.notCached !== undefined || hasContent || (library.numContentDependencies !== '' && library.numContentDependencies !== 0) || (library.numLibraryDependencies !== '' && library.numLibraryDependencies !== 0)) {
|
||||
// Disabled delete if content.
|
||||
$deleteButton.attr('disabled', true);
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@ var H5PUtils = H5PUtils || {};
|
|||
$.each(headers, function (index, value) {
|
||||
if (!(value instanceof Object)) {
|
||||
value = {
|
||||
text: value
|
||||
html: value
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -38,7 +38,13 @@ var H5PUtils = H5PUtils || {};
|
|||
var $tr = $('<tr></tr>');
|
||||
|
||||
$.each(rows, function (index, value) {
|
||||
$tr.append('<td>' + value + '</td>');
|
||||
if (!(value instanceof Object)) {
|
||||
value = {
|
||||
html: value
|
||||
};
|
||||
}
|
||||
|
||||
$('<td/>', value).appendTo($tr);
|
||||
});
|
||||
|
||||
return $tr;
|
||||
|
|
21
js/h5p.js
21
js/h5p.js
|
@ -1,3 +1,4 @@
|
|||
/*jshint multistr: true */
|
||||
// TODO: Should we split up the generic parts needed by the editor(and others), and the parts needed to "run" H5Ps?
|
||||
var H5P = H5P || {};
|
||||
|
||||
|
@ -11,9 +12,7 @@ H5P.$window = H5P.jQuery(window);
|
|||
if (document.documentElement.requestFullScreen) {
|
||||
H5P.fullScreenBrowserPrefix = '';
|
||||
}
|
||||
else if (document.documentElement.webkitRequestFullScreen
|
||||
&& navigator.userAgent.indexOf('Android') === -1 // Skip Android
|
||||
) {
|
||||
else if (document.documentElement.webkitRequestFullScreen) {
|
||||
H5P.safariBrowser = navigator.userAgent.match(/Version\/(\d)/);
|
||||
H5P.safariBrowser = (H5P.safariBrowser === null ? 0 : parseInt(H5P.safariBrowser[1]));
|
||||
|
||||
|
@ -62,7 +61,7 @@ H5P.init = function () {
|
|||
H5P.jQuery('<div class="h5p-content-controls"><div role="button" tabindex="1" class="h5p-enable-fullscreen" title="' + H5P.t('fullscreen') + '"></div></div>').prependTo($container).children().click(function () {
|
||||
H5P.fullScreen($container, instance);
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
var $actions = H5P.jQuery('<ul class="h5p-actions"></ul>');
|
||||
if (contentData.exportUrl !== '') {
|
||||
|
@ -290,7 +289,7 @@ H5P.getPath = function (path, contentId) {
|
|||
if (contentId !== undefined) {
|
||||
prefix = H5PIntegration.getContentPath(contentId);
|
||||
}
|
||||
else if (window['H5PEditor'] !== undefined) {
|
||||
else if (window.H5PEditor !== undefined) {
|
||||
prefix = H5PEditor.filesPath;
|
||||
}
|
||||
else {
|
||||
|
@ -344,9 +343,10 @@ H5P.classFromName = function (name) {
|
|||
* @return {Object} Instance.
|
||||
*/
|
||||
H5P.newRunnable = function (library, contentId, $attachTo, skipResize) {
|
||||
var nameSplit, versionSplit;
|
||||
try {
|
||||
var nameSplit = library.library.split(' ', 2);
|
||||
var versionSplit = nameSplit[1].split('.', 2);
|
||||
nameSplit = library.library.split(' ', 2);
|
||||
versionSplit = nameSplit[1].split('.', 2);
|
||||
}
|
||||
catch (err) {
|
||||
return H5P.error('Invalid library string: ' + library.library);
|
||||
|
@ -358,12 +358,13 @@ H5P.newRunnable = function (library, contentId, $attachTo, skipResize) {
|
|||
}
|
||||
|
||||
// Find constructor function
|
||||
var constructor;
|
||||
try {
|
||||
nameSplit = nameSplit[0].split('.');
|
||||
var constructor = window;
|
||||
constructor = window;
|
||||
for (var i = 0; i < nameSplit.length; i++) {
|
||||
constructor = constructor[nameSplit[i]];
|
||||
};
|
||||
}
|
||||
if (typeof constructor !== 'function') {
|
||||
throw null;
|
||||
}
|
||||
|
@ -565,7 +566,7 @@ H5P.ContentCopyrights = function () {
|
|||
}
|
||||
|
||||
// Add sub content rights
|
||||
for (var i = 0; i < content.length; i++) {
|
||||
for (i = 0; i < content.length; i++) {
|
||||
html += content[i];
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -245,3 +245,6 @@ button.h5p-admin.disabled:hover {
|
|||
font-size: 1.5em;
|
||||
font-weight: bold;
|
||||
}
|
||||
#h5p-admin-container .h5p-admin-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue