1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164:
<?php
namespace Omeka\Api\Representation;
use Omeka\Entity\Value;
use Zend\ServiceManager\ServiceLocatorInterface;
class ValueRepresentation extends AbstractRepresentation
{
/**
* @var Value
*/
protected $value;
/**
* @var \Omeka\DataType\Manager
*/
protected $dataType;
/**
* Construct the value representation object.
*
* @param Value $value
* @param ServiceLocatorInterface $serviceLocator
*/
public function __construct(Value $value, ServiceLocatorInterface $serviceLocator)
{
// Set the service locator first.
$this->setServiceLocator($serviceLocator);
$this->value = $value;
$this->dataType = $serviceLocator->get('Omeka\DataTypeManager')->getForExtract($value);
}
/**
* Return this value as an unescaped string.
*
* @return string
*/
public function __toString()
{
return $this->dataType->toString($this);
}
/**
* Return this value for display on a webpage.
*
* @return string
*/
public function asHtml()
{
$view = $this->getServiceLocator()->get('ViewRenderer');
$eventManager = $this->getEventManager();
$args = $eventManager->prepareArgs([
'html' => $this->dataType->render($view, $this),
]);
$eventManager->trigger('rep.value.html', $this, $args);
return $args['html'];
}
/**
* {@inheritDoc}
*/
public function jsonSerialize()
{
$valueObject = [
'type' => $this->type(),
'property_id' => $this->value->getProperty()->getId(),
'property_label' => $this->value->getProperty()->getLabel(),
];
$jsonLd = $this->dataType->getJsonLd($this);
if (!is_array($jsonLd)) {
$jsonLd = [];
}
return $valueObject + $jsonLd;
}
/**
* Get the resource representation.
*
* This is the subject of the RDF triple represented by this value.
*
* @return Entity\AbstractResourceEntityRepresentation
*/
public function resource()
{
$resource = $this->value->getResource();
return $this->getAdapter($resource->getResourceName())
->getRepresentation($resource);
}
/**
* Get the property representation.
*
* This is the predicate of the RDF triple represented by this value.
*
* @return Entity\PropertyRepresentation
*/
public function property()
{
return $this->getAdapter('properties')
->getRepresentation($this->value->getProperty());
}
/**
* Get the value type.
*
* @return string
*/
public function type()
{
// The data type resolved by the data type manager takes precedence over
// the one stored in the database.
return $this->dataType->getName();
}
/**
* Get the value itself.
*
* This is the object of the RDF triple represented by this value.
*
* @return string
*/
public function value()
{
return $this->value->getValue();
}
/**
* Get the value language.
*
* @return string
*/
public function lang()
{
return $this->value->getLang();
}
/**
* Get the URI.
*
* @return string
*/
public function uri()
{
return $this->value->getUri();
}
/**
* Get the value resource representation.
*
* This is the object of the RDF triple represented by this value.
*
* @return null|Entity\AbstractResourceEntityRepresentation
*/
public function valueResource()
{
$resource = $this->value->getValueResource();
if (!$resource) {
return null;
}
$resourceAdapter = $this->getAdapter($resource->getResourceName());
return $resourceAdapter->getRepresentation($resource);
}
}