This repository has been archived on 2022-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
md-cms/inc/mdEmbeds.php

466 lines
14 KiB
PHP
Raw Normal View History

<?PHP
/**
* For embedding from museum-digital functions.
*
* @file
*
* @author Joshua Ramon Enslin <joshua@jrenslin.de>
*/
/**
* Function for checking a text for the existence of pseudocode
* for embedding from museum-digital.
*
* @param string $text Input string.
* @param array $settings General settings.
*
* @return string
*/
function checkForEmbeds(string $text, array $settings):string {
$embedOptions = [
"singleObjectTile",
"singleObjectDetails",
"singleCollectionTile",
"exhibitionCalendar",
"eventCalendar"
];
foreach ($embedOptions as $option) {
if (strpos($text, $option) === false) continue;
$position = strpos($text, $option) - 1;
$nextTag = $nextWhitespace = strlen($text);
if (strpos($text, "<", $position) !== false) $nextTag = strpos($text, "<", $position);
if (strpos($text, " ", $position) !== false) $nextWhitespace = strpos($text, " ", $position);
$end = min($nextTag, $nextWhitespace);
$pseudocode = substr($text, $position, $end - $position);
$command = substr($pseudocode, 1, strpos($pseudocode, "]") - 1);
$arguments = [];
if (strpos($pseudocode, "{") !== false) $arguments = explode("&", substr($pseudocode, strpos($pseudocode, "{") + 1, -1));
switch ($command) {
case "singleObjectTile":
$text = str_replace($pseudocode, embedObject($arguments, $settings), $text);
break;
case "singleObjectDetails":
$text = str_replace($pseudocode, embedObject($arguments, $settings, true), $text);
break;
case "exhibitionCalendar":
$text = str_replace($pseudocode, embedExhibitionCalendar($arguments), $text);
break;
case "eventCalendar":
$text = str_replace($pseudocode, embedEventCalendar($arguments), $text);
break;
}
}
return $text;
}
/**
* Function drawObjectTile creates a tile with just the most basic information on an object.
*
* @param string[] $contents Input data fetched from the object API at museum-digital.
* @param array $settings Settings variable.
*
* @return string
*/
function drawObjectTile(array $contents, array $settings):string {
$output = '
<div class="objTile">
';
if (count($contents['object_images']) > 0) {
foreach ($contents['object_images'] as $image) {
if ($image['is_main'] != "j") continue;
$output .= '
<img src="' . $settings['mdImgFolder'] . $image['folder'] . '/' . $image['preview'] . '" />';
}
}
$output .= '
<div>
<h4>' . $contents['object_name'] . '</h4>
<div>
<a href="./object.php?id=' . $contents['object_id'] . '" class="toTranslate" data-content="More"></a>
<a href="' . $settings['mdVersion'] . '?t=objekt&oges=' . $contents['object_id'] . '" class="toTranslate" data-content="MoreAtMuseumDigital">' . $contents['object_name'] . '</a>
</div>
</div>
</div>
';
return $output;
}
/**
* Function drawObjectDetails creates a tile with just the most basic information on an object.
*
* @param string[] $contents Input data fetched from the object API at museum-digital.
* @param array $settings Settings variable.
*
* @return string
*/
function drawObjectDetails(array $contents, array $settings):string {
$output = '
<div class="objDetails">
<h2>' . $contents['object_name'] . '</h2>
';
if (count($contents['object_images']) > 0) {
foreach ($contents['object_images'] as $image) {
if ($image['is_main'] != "j") continue;
$output .= '
<img class="objMainImg" src="' . $settings['mdImgFolder'] . $image['folder'] . '/' . $image['filename_loc'] . '" />';
}
}
$output .= '
<div>
';
$output .= '
<p>
' . $contents['object_description'] . '
</p>';
$simpleDefinedConts = [
"object_material_technique",
"object_dimensions",
];
$output .= "
<dl>";
if (count($contents['object_collection']) > 0) {
$output .= '
<dt class="toTranslate" data-content="Collection"></dt>';
foreach ($contents['object_collection'] as $collection) {
$output .= '
<dd>' . $collection['collection_name'] . '</dd>
';
}
}
foreach ($simpleDefinedConts as $value) {
$output .= "
<dt class='toTranslate' data-content='" . $value . "'></dt>
<dd>" . $contents[$value] . "</dd>
";
}
if (count($contents['object_tags']) > 0) {
$output .= '
<dt class="toTranslate" data-content="Tags"></dt>';
foreach ($contents['object_tags'] as $tag) {
$output .= '
<dd>' . $tag['tag_name'] . '</dd>
';
}
}
if (count($contents['object_relation_places']) > 0) {
$output .= '
<dt class="toTranslate" data-content="Places"></dt>';
foreach ($contents['object_relation_places'] as $place) {
$output .= '
<dd>' . $place['place']['place_name'] . '</dd>
';
}
}
if (count($contents['object_relation_people']) > 0) {
$output .= '
<dt class="toTranslate" data-content="People"></dt>';
foreach ($contents['object_relation_people'] as $people) {
$output .= '
<dd>' . $people['people']['displayname'] . '</dd>
';
}
}
$output .= "
</dl>";
if (count($contents['object_events']) > 0) {
$output .= "
<div class='events'>";
foreach ($contents['object_events'] as $event) {
$output .= '
<div class="objevent">
<h5 class="toTranslate" data-content="eventType' . $event['event_type'] . '"></h5>
<table>
';
if (isset($event['people'])) $output .= '
<tr>
<th class="toTranslate" data-content="... who"></th>
<td class="vcard h-card">
<a rel="tag" class="u-url fn p-name url">' . $event['people']['displayname'] . '</a>
</td>
</tr>';
if (isset($event['time'])) $output .= '
<tr>
<th class="toTranslate" data-content="... when"></th>
<td>
<a>' . $event['time']['time_name'] . '</a>
</td>
</tr>';
if (isset($event['place'])) $output .= '
<tr>
<th class="toTranslate" data-content="... where"></th>
<td class="h-geo geo">
<a rel="tag">' . $event['place']['place_name'] . '</a>
</td>
</tr>';
$output .= '
</table>
</div>
';
}
$output .= '
</div>
';
}
$output .= '
<p class="metadataLine">
<span><span class="toTranslate" data-content="Metadata"></span></span>
<span><span class="toTranslate" data-content="LastUpdated"></span>: ' . $contents['object_last_updated'] . '</span>
<span><span class="toTranslate" data-content="Licence"></span>: ' . $contents['licence']['metadata_rights_status'] . '</span>
<span><a class="toTranslate" data-content="ObjectAtMuseumDigital" href="' . $settings['mdVersion'] . '?t=objekt&oges=' . $contents['object_id'] . '"></a></span>
</p>
</div>
';
$output .= '
</div>
';
return $output;
}
/**
* Function for displaying objects.
*
* @param array $arguments Arguments / GET parameters for urls to query.
* @param array $settings Settings variable.
* @param boolean $showDetails Optional. By default, only a tile with most basic information is displayed.
*
* @return string
*/
function embedObject(array $arguments, array $settings, bool $showDetails = false):string {
$toIgnore = ["t=", "output="];
$srcArgs = "t=objekt";
foreach ($arguments as $arg) {
if (startsWithAny($arg, $toIgnore)) continue;
$srcArgs .= "&" . $arg;
}
$srcArgs .= "&output=json";
$contents = json_decode(queryCachePage($settings['mdVersion'] . "?$srcArgs", "object", $settings), true);
if (!$showDetails) return drawObjectTile($contents, $settings);
else return drawObjectDetails($contents, $settings);
}
/**
* Function for embedding event calendar.
*
* @param array $arguments Arguments / GET parameters for urls to query.
*
* @return string
*/
function embedExhibitionCalendar(array $arguments):string {
$toIgnore = ["t=", "calendar=", "output="];
$srcArgs = "t=exhibitions_overview&calendar=1";
foreach ($arguments as $arg) {
if (startsWithAny($arg, $toIgnore)) continue;
$srcArgs .= "&" . $arg;
}
$srcArgs .= "&output=json";
$srcURL = "apiMirror.php?area=exhibitions&args=" . urlencode($srcArgs);
if (isset($_GET['y'])) $y = $_GET['y'];
else $y = date("Y");
if (isset($_GET['m'])) $m = $_GET['m'];
else $m = date("m");
$prevMonth = strtotime('-1 month', strtotime("$y-$m-01"));
$nextMonth = strtotime('+1 month', strtotime("$y-$m-01"));
$output = '
<section class="mdCalendar"
data-year="'.$y.'" data-month="'.$m.'" data-colored="1"
data-today="./index.php?id=' . $GLOBALS['id'] . '&' . date("Y").'&m='.date("m") . '"
data-prev="./index.php?id=' . $GLOBALS['id'] . '&y=' . date("Y", $prevMonth).'&m='.date("m", $prevMonth) . '"
data-next="./index.php?id=' . $GLOBALS['id'] . '&y=' . date("Y", $nextMonth).'&m='.date("m", $nextMonth) . '"
data-src="' . $srcURL . '&y='.date("Y", $nextMonth).'&m='.date("m", $nextMonth) . '">
</section>
';
return $output;
}
/**
* Function for embedding event calendar.
*
* @param array $arguments Arguments / GET parameters for urls to query.
*
* @return string
*/
function embedEventCalendar(array $arguments):string {
$toIgnore = ["t=", "calendar=", "output="];
$srcArgs = "t=events&calendar=1";
foreach ($arguments as $arg) {
if (startsWithAny($arg, $toIgnore)) continue;
$srcArgs .= "&" . $arg;
}
$srcArgs .= "&output=json";
$srcURL = "apiMirror.php?area=events&args=" . urlencode($srcArgs);
if (isset($_GET['y'])) $y = $_GET['y'];
else $y = date("Y");
if (isset($_GET['m'])) $m = $_GET['m'];
else $m = date("m");
$prevMonth = strtotime('-1 month', strtotime("$y-$m-01"));
$nextMonth = strtotime('+1 month', strtotime("$y-$m-01"));
$output = '
<section class="mdCalendar"
data-year="'.$y.'" data-month="'.$m.'" data-colored="1"
data-today="./index.php?id=' . $GLOBALS['id'] . '&' . date("Y").'&m='.date("m") . '"
data-prev="./index.php?id=' . $GLOBALS['id'] . '&y=' . date("Y", $prevMonth).'&m='.date("m", $prevMonth) . '"
data-next="./index.php?id=' . $GLOBALS['id'] . '&y=' . date("Y", $nextMonth).'&m='.date("m", $nextMonth) . '"
data-src="' . $srcURL . '&y='.date("Y", $nextMonth).'&m='.date("m", $nextMonth) . '">
</section>
';
return $output;
}
/**
* Function for embedding search results from MD.
*
* @param array $arguments Arguments / GET parameters for urls to query.
* @param array $settings Settings variable.
*
* @return string
*/
function searchMDObjects(array $arguments, array $settings):string {
$toIgnore = ["t=", "output=", "mod="];
$srcArgs = "done=yes";
foreach ($arguments as $arg) {
if (startsWithAny($arg, $toIgnore)) continue;
$srcArgs .= "&" . $arg;
}
$srcArgs .= "&output=json&mod=complete";
$contents = json_decode(queryCachePage($settings['mdVersion'] . "?$srcArgs", "search", $settings), true);
2018-06-15 22:32:37 +02:00
if (!isset($contents[0])) return "";
$output = '
<div class="searchGrid">
2018-06-15 22:32:37 +02:00
<div class="paginationBar">
';
if (isset($_GET['startwert']) and $_GET['startwert'] % 24 === 0) $current = $_GET['startwert'];
else $current = 0;
$toDisplay = [];
for ($i = 0; $i <= 7; $i++) {
$toDisplay[] = $current + (-72 + 24 * $i);
}
$i = 0;
$lastToDisplay = end($toDisplay);
2018-06-15 23:41:25 +02:00
// Display option to go to start
if (!in_array(0, $toDisplay)) $output .= '<a href="search.php?startwert=0' . write_get_vars(['q', 'id']) . '#mdSearchObjs">1</a>';
2018-06-15 22:32:37 +02:00
while ($i < $contents[0]['total']) {
if (!in_array($i, $toDisplay)) {
$i += 24; continue;
}
$output .= '
<a ';
if ($i == $current) $output .= ' class="navicurrent"';
2018-06-15 23:41:25 +02:00
$output .= ' href="search.php?startwert=' . (string)$i . write_get_vars(['q', 'id']) . '#mdSearchObjs">' . strval(($i / 24) + 1) . '</a>
2018-06-15 22:32:37 +02:00
';
$i += 24;
if ($i == $lastToDisplay) break;
}
2018-06-15 23:41:25 +02:00
// Display option to go to start
$last = $contents[0]["total"] - ($contents[0]["total"] % 24);
if (!in_array($last, $toDisplay)) $output .= '<a href="search.php?startwert=' . (string)$last . write_get_vars(['q', 'id']) . '#mdSearchObjs">' . (string)(($last / 24) + 1) . '</a>';
2018-06-15 22:32:37 +02:00
// Generate pagination
$output .= '
</div>
';
foreach ($contents as $object) {
$output .= '
<div class="objTile">
';
if (isset($object['image']) > 0) {
$output .= '
<img src="' . $settings['mdVersion'] . $object['image'] . '" />';
}
$output .= '
<div>
<h4>' . $object['objekt_name'] . '</h4>
<div>
<a href="./object.php?id=' . $object['objekt_id'] . '" class="toTranslate" data-content="More"></a>
<a href="' . $settings['mdVersion'] . '?t=objekt&oges=' . $object['objekt_id'] . '" class="toTranslate" data-content="MoreAtMuseumDigital">' . $object['objekt_name'] . '</a>
</div>
</div>
</div>
';
}
$output .= '
</div>
';
return $output;
}
?>