activitypub-1.0.x-dev/src/Entity/Storage/ActivityPubActorStorageSchema.php
src/Entity/Storage/ActivityPubActorStorageSchema.php
<?php
namespace Drupal\activitypub\Entity\Storage;
use Drupal\Core\Entity\ContentEntityTypeInterface;
use Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema;
use Drupal\Core\Field\FieldStorageDefinitionInterface;
/**
* Defines the ActivityPub activity schema handler.
*/
class ActivityPubActorStorageSchema extends SqlContentEntityStorageSchema {
/**
* {@inheritdoc}
*/
protected function getEntitySchema(ContentEntityTypeInterface $entity_type, $reset = FALSE) {
$schema = parent::getEntitySchema($entity_type, $reset);
if ($data_table = $this->storage->getBaseTable()) {
$schema[$data_table]['unique keys'] += [
'actor__name' => ['name'],
];
}
return $schema;
}
/**
* {@inheritdoc}
*/
protected function getSharedTableFieldSchema(FieldStorageDefinitionInterface $storage_definition, $table_name, array $column_mapping) {
$schema = parent::getSharedTableFieldSchema($storage_definition, $table_name, $column_mapping);
$field_name = $storage_definition->getName();
if ($table_name == $this->storage->getBaseTable()) {
switch ($field_name) {
case 'type':
case 'name':
$schema['fields'][$field_name]['not null'] = TRUE;
break;
}
}
return $schema;
}
}
