Compare commits

..

2 Commits

Author SHA1 Message Date
buttle 1028adab8a adds item source link and item subtitile 2021-06-27 13:45:44 +02:00
buttle 76e5b24bdc adds thumbnail download to media ingester 2021-06-27 13:31:31 +02:00
7 changed files with 56 additions and 11 deletions

View File

@ -9,6 +9,8 @@ video and audio media.
cd ./modules
https://git.hangar.org/arcHIVE-tech/ArchiveOrg/archive/main.zip
unzip main.zip
mv archiveorg/ ArchiveOrg
rm main.zip
```
## LISENCE

View File

@ -31,6 +31,7 @@ return [
'ArchiveOrgBlockForm' => [
'media_type' => 'video',
'title' => '',
'renderSourceLink' => true,
'width' => 600,
'ratio' => '2',
'autoLoad' => false,

View File

@ -10,14 +10,6 @@ class ArchiveOrgBlockForm extends Form
public function init()
{
$this->add([
'name' => 'o:block[__blockIndex__][o:data][title]',
'type' => Element\Text::class,
'options' => [
'label' => 'Title (option)',
]
]);
$this->add([
'name' => 'o:block[__blockIndex__][o:data][media_type]',
'type' => Element\Select::class,
@ -47,5 +39,24 @@ class ArchiveOrgBlockForm extends Form
],
]);
$this->add([
'type' => Element\Checkbox::class,
'name' => 'o:block[__blockIndex__][o:data][renderSourceLink]',
'options' => [
'label' => 'Display a link to the item',
//'use_hidden_element' => true,
'checked_value' => true,
'unchecked_value' => false,
],
]);
$this->add([
'name' => 'o:block[__blockIndex__][o:data][title]',
'type' => Element\Text::class,
'options' => [
'label' => 'Sub-title',
]
]);
}
}

View File

@ -5,16 +5,20 @@ use Omeka\Api\Request;
use Omeka\Entity\Media;
use Omeka\Media\Ingester\IngesterInterface;
use Omeka\Stdlib\ErrorStore;
use Omeka\File\Downloader;
use Zend\Form\Element\Text;
use Zend\Http\Client;
use Zend\View\Renderer\PhpRenderer;
class ArchiveOrgMediaIngester implements IngesterInterface
{
protected $downloader;
protected $client;
public function __construct($client)
public function __construct($client, Downloader $downloader)
{
$this->client = $client;
$this->downloader = $downloader;
}
public function getLabel()
{
@ -43,7 +47,16 @@ class ArchiveOrgMediaIngester implements IngesterInterface
$errorStore->addError('o:identifier', 'No identifier specified');
return;
}
$url = 'https://archive.org/embed/' . $data['o:identifier'];
$identifier = trim($data['o:identifier']);
$mediaData = ['identifier' => $identifier];
$url = 'https://archive.org/embed/' . $identifier;
$thumbnail_url = 'https://archive.org/services/img/' . $identifier;
$tempFile = $this->downloader->download($thumbnail_url);
if ($tempFile) {
$tempFile->mediaIngestFile($media, $request, $errorStore, false);
}
$media->setData($mediaData);
$media->setSource($url);
}
}

View File

@ -11,6 +11,9 @@ class ArchiveOrgMediaFactory implements FactoryInterface
$requestedName,
array $options = null)
{
return new ArchiveOrgMediaIngester($services->get('Omeka\HttpClient'));
return new ArchiveOrgMediaIngester(
$services->get('Omeka\HttpClient'),
$services->get('Omeka\File\Downloader')
);
}
}

View File

@ -51,6 +51,7 @@ class ArchiveOrg extends AbstractBlockLayout
'o:block[__blockIndex__][o:data][title]' => $data['title'],
'o:block[__blockIndex__][o:data][width]' => $data['width'],
'o:block[__blockIndex__][o:data][ratio]' => $data['ratio'],
'o:block[__blockIndex__][o:data][renderSourceLink]' => $data['renderSourceLink'],
]);
$form->prepare();
@ -80,6 +81,8 @@ class ArchiveOrg extends AbstractBlockLayout
return $view->partial('common/block-layout/archiveOrg', [
'media_type' => $block->dataValue('media_type'),
'title' => $block->dataValue('title'),
'renderSourceLink' => $block->dataValue('renderSourceLink'),
'item_url' => $attachments[0]->item()->url(),
'width' => $width,
'height' => $height,
'url' => $media->source(),

View File

@ -1,5 +1,11 @@
<div class="archive_org-wrap" style="position:relative;">
<?php if ($renderSourceLink) { ?>
<div class="source-link">
<a href="<?= $item_url ?>">Source</a>
</div>
<?php } ?>
<?php
if ($title !== false && $title !== "") {
$title = sprintf('<p id="achive_org_media-title">%s</p>', $title);
@ -26,4 +32,10 @@
allowfullscreen >
</iframe>
<?php if ($title) { ?>
<div class="item_title">
<?= $title ?>
</div>
<?php } ?>
</div>