{% extends "base/class.php.twig" %}

{% block file_path %}
\Drupal\{{ module }}\Entity\{{ entity_class }}.
{% endblock %}

{% block namespace_class %}
namespace Drupal\{{ module }}\Entity;
{% endblock %}

{% block use_class %}
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Field\BaseFieldDefinition;
{% if revisionable %}
use Drupal\Core\Entity\RevisionableContentEntityBase;
{% else %}
use Drupal\Core\Entity\ContentEntityBase;
{% endif %}
use Drupal\Core\Entity\EntityChangedTrait;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\user\UserInterface;
{% endblock %}

{% block class_declaration %}
/**
 * Defines the {{ label }} entity.
 *
 * @ingroup {{ module }}
 *
 * @ContentEntityType(
 *   id = "{{ entity_name }}",
 *   label = @Translation("{{ label }}"),
{% if bundle_entity_type %}
 *   bundle_label = @Translation("{{ label }} type"),
{% endif %}
 *   handlers = {
{% if revisionable %}
 *     "storage" = "Drupal\{{ module }}\{{ entity_class }}Storage",
{% endif %}
 *     "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
 *     "list_builder" = "Drupal\{{ module }}\{{ entity_class }}ListBuilder",
 *     "views_data" = "Drupal\{{ module }}\Entity\{{ entity_class }}ViewsData",
{% if is_translatable %}
 *     "translation" = "Drupal\{{ module }}\{{ entity_class }}TranslationHandler",
{% endif %}
 *
 *     "form" = {
 *       "default" = "Drupal\{{ module }}\Form\{{ entity_class }}Form",
 *       "add" = "Drupal\{{ module }}\Form\{{ entity_class }}Form",
 *       "edit" = "Drupal\{{ module }}\Form\{{ entity_class }}Form",
 *       "delete" = "Drupal\{{ module }}\Form\{{ entity_class }}DeleteForm",
 *     },
 *     "access" = "Drupal\{{ module }}\{{ entity_class }}AccessControlHandler",
 *     "route_provider" = {
 *       "html" = "Drupal\{{ module }}\{{ entity_class }}HtmlRouteProvider",
 *     },
 *   },
 *   base_table = "{{ entity_name }}",
{% if is_translatable %}
 *   data_table = "{{ entity_name }}_field_data",
{% endif %}
{% if revisionable %}
 *   revision_table = "{{ entity_name }}_revision",
 *   revision_data_table = "{{ entity_name }}_field_revision",
{% endif %}
{% if is_translatable %}
 *   translatable = TRUE,
{% endif %}
 *   admin_permission = "administer {{ label|lower }} entities",
 *   entity_keys = {
 *     "id" = "id",
{% if revisionable %}
 *     "revision" = "vid",
{% endif %}
{% if bundle_entity_type %}
 *     "bundle" = "type",
{% endif %}
 *     "label" = "name",
 *     "uuid" = "uuid",
 *     "uid" = "user_id",
 *     "langcode" = "langcode",
 *     "status" = "status",
 *   },
 *   links = {
 *     "canonical" = "{{ base_path }}/{{ entity_name }}/{{ '{'~entity_name~'}' }}",
{% if bundle_entity_type %}
 *     "add-page" = "{{ base_path }}/{{ entity_name }}/add",
 *     "add-form" = "{{ base_path }}/{{ entity_name }}/add/{{ '{'~bundle_entity_type~'}' }}",
{% else %}
 *     "add-form" = "{{ base_path }}/{{ entity_name }}/add",
{% endif %}
 *     "edit-form" = "{{ base_path }}/{{ entity_name }}/{{ '{'~entity_name~'}' }}/edit",
 *     "delete-form" = "{{ base_path }}/{{ entity_name }}/{{ '{'~entity_name~'}' }}/delete",
{% if revisionable %}
 *     "version-history" = "{{ base_path }}/{{ entity_name }}/{{ '{'~entity_name~'}' }}/revisions",
 *     "revision" = "{{ base_path }}/{{ entity_name }}/{{ '{'~entity_name~'}' }}/revisions/{{ '{'~entity_name~'_revision}' }}/view",
 *     "revision_revert" = "{{ base_path }}/{{ entity_name }}/{{ '{'~entity_name~'}' }}/revisions/{{ '{'~entity_name~'_revision}' }}/revert",
 *     "revision_delete" = "{{ base_path }}/{{ entity_name }}/{{ '{'~entity_name~'}' }}/revisions/{{ '{'~entity_name~'_revision}' }}/delete",
{% if is_translatable %}
 *     "translation_revert" = "{{ base_path }}/{{ entity_name }}/{{ '{'~entity_name~'}' }}/revisions/{{ '{'~entity_name~'_revision}' }}/revert/{langcode}",
{% endif %}
{% endif %}
 *     "collection" = "{{ base_path }}/{{ entity_name }}",
 *   },
{% if bundle_entity_type %}
 *   bundle_entity_type = "{{ bundle_entity_type }}",
 *   field_ui_base_route = "entity.{{ bundle_entity_type }}.edit_form"
{% else %}
 *   field_ui_base_route = "{{ entity_name }}.settings"
{% endif %}
 * )
 */
class {{ entity_class }} extends {% if revisionable %}RevisionableContentEntityBase{% else %}ContentEntityBase{% endif %} implements {{ entity_class }}Interface {% endblock %}

{% block use_trait %}
  use EntityChangedTrait;
{% endblock %}

{% block class_methods %}

  /**
   * {@inheritdoc}
   */
  public static function preCreate(EntityStorageInterface $storage_controller, array &$values) {
    parent::preCreate($storage_controller, $values);
    $values += [
      'user_id' => \Drupal::currentUser()->id(),
    ];
  }
{% if revisionable %}

  /**
   * {@inheritdoc}
   */
  public function preSave(EntityStorageInterface $storage) {
    parent::preSave($storage);

    foreach (array_keys($this->getTranslationLanguages()) as $langcode) {
      $translation = $this->getTranslation($langcode);

      // If no owner has been set explicitly, make the anonymous user the owner.
      if (!$translation->getOwner()) {
        $translation->setOwnerId(0);
      }
    }

    // If no revision author has been set explicitly, make the {{ entity_name }} owner the
    // revision author.
    if (!$this->getRevisionUser()) {
      $this->setRevisionUserId($this->getOwnerId());
    }
  }
{% endif %}

  /**
   * {@inheritdoc}
   */
  public function getName() {
    return $this->get('name')->value;
  }

  /**
   * {@inheritdoc}
   */
  public function setName($name) {
    $this->set('name', $name);
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function getCreatedTime() {
    return $this->get('created')->value;
  }

  /**
   * {@inheritdoc}
   */
  public function setCreatedTime($timestamp) {
    $this->set('created', $timestamp);
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function getOwner() {
    return $this->get('user_id')->entity;
  }

  /**
   * {@inheritdoc}
   */
  public function getOwnerId() {
    return $this->get('user_id')->target_id;
  }

  /**
   * {@inheritdoc}
   */
  public function setOwnerId($uid) {
    $this->set('user_id', $uid);
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function setOwner(UserInterface $account) {
    $this->set('user_id', $account->id());
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function isPublished() {
    return (bool) $this->getEntityKey('status');
  }

  /**
   * {@inheritdoc}
   */
  public function setPublished($published) {
    $this->set('status', $published ? TRUE : FALSE);
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
    $fields = parent::baseFieldDefinitions($entity_type);

    $fields['user_id'] = BaseFieldDefinition::create('entity_reference')
      ->setLabel(t('Authored by'))
      ->setDescription(t('The user ID of author of the {{ label }} entity.'))
      ->setRevisionable(TRUE)
      ->setSetting('target_type', 'user')
      ->setSetting('handler', 'default')
      ->setTranslatable(TRUE)
      ->setDisplayOptions('view', [
        'label' => 'hidden',
        'type' => 'author',
        'weight' => 0,
      ])
      ->setDisplayOptions('form', [
        'type' => 'entity_reference_autocomplete',
        'weight' => 5,
        'settings' => [
          'match_operator' => 'CONTAINS',
          'size' => '60',
          'autocomplete_type' => 'tags',
          'placeholder' => '',
        ],
      ])
      ->setDisplayConfigurable('form', TRUE)
      ->setDisplayConfigurable('view', TRUE);

    $fields['name'] = BaseFieldDefinition::create('string')
      ->setLabel(t('Name'))
      ->setDescription(t('The name of the {{ label }} entity.'))
{% if revisionable %}
      ->setRevisionable(TRUE)
{% endif %}
      ->setSettings([
        'max_length' => 50,
        'text_processing' => 0,
      ])
      ->setDefaultValue('')
      ->setDisplayOptions('view', [
        'label' => 'above',
        'type' => 'string',
        'weight' => -4,
      ])
      ->setDisplayOptions('form', [
        'type' => 'string_textfield',
        'weight' => -4,
      ])
      ->setDisplayConfigurable('form', TRUE)
      ->setDisplayConfigurable('view', TRUE);

    $fields['status'] = BaseFieldDefinition::create('boolean')
      ->setLabel(t('Publishing status'))
      ->setDescription(t('A boolean indicating whether the {{ label }} is published.'))
{% if revisionable %}
      ->setRevisionable(TRUE)
{% endif %}
      ->setDefaultValue(TRUE);

    $fields['created'] = BaseFieldDefinition::create('created')
      ->setLabel(t('Created'))
      ->setDescription(t('The time that the entity was created.'));

    $fields['changed'] = BaseFieldDefinition::create('changed')
      ->setLabel(t('Changed'))
      ->setDescription(t('The time that the entity was last edited.'));
{% if revisionable and is_translatable %}

    $fields['revision_translation_affected'] = BaseFieldDefinition::create('boolean')
      ->setLabel(t('Revision translation affected'))
      ->setDescription(t('Indicates if the last edit of a translation belongs to current revision.'))
      ->setReadOnly(TRUE)
      ->setRevisionable(TRUE)
      ->setTranslatable(TRUE);
{% endif %}

    return $fields;
  }
{% endblock %}
