Parcourir la source

StatusTypeForm added and saves values appropriately
new service

logicp il y a 7 ans
Parent
commit
d42d7895f6
3 fichiers modifiés avec 113 ajouts et 0 suppressions
  1. 48 0
      src/Form/StatusTypeForm.php
  2. 60 0
      src/StatusService.php
  3. 5 0
      statusmessage.services.yml

+ 48 - 0
src/Form/StatusTypeForm.php

@@ -4,6 +4,9 @@ namespace Drupal\statusmessage\Form;
 
 use Drupal\Core\Entity\EntityForm;
 use Drupal\Core\Form\FormStateInterface;
+use Drupal\statusmessage\StatusService;
+use Symfony\Component\DependencyInjection\ContainerInterface;
+
 
 /**
  * Class StatusTypeForm.
@@ -11,6 +14,32 @@ use Drupal\Core\Form\FormStateInterface;
  * @package Drupal\statusmessage\Form
  */
 class StatusTypeForm extends EntityForm {
+
+  protected $mimeTypes;
+
+  protected $statusService;
+
+
+  /**
+   * {@inheritdoc}
+   * @throws \Exception
+   */
+  public static function create(ContainerInterface $container) {
+    return new static(
+      $container->get('statusservice'));
+  }
+
+  public function __construct(StatusService $statusService) {
+    $this->statusService = $statusService;
+
+  }
+
+
+    public function buildForm(array $form, FormStateInterface $form_state) {
+      $this->mimeTypes = $this->statusService->getMimeTypes();
+    return parent::buildForm($form, $form_state); // TODO: Change the autogenerated stub
+  }
+
   /**
    * {@inheritdoc}
    */
@@ -36,6 +65,20 @@ class StatusTypeForm extends EntityForm {
       '#disabled' => !$status_type->isNew(),
     );
 
+    $form['media'] = array(
+      '#type' => 'checkbox',
+      '#description' => 'This status message contains media',
+      '#default' => $status_type->getMedia(),
+
+    );
+
+    $form['mime'] = array(
+      '#type' => 'select',
+      '#description' => 'The MIME Type of the media contained in this status message',
+      '#options' => array($this->mimeTypes),
+      '#default' => $status_type->getMime(),
+    );
+
     /* You will need additional form elements for your custom properties. */
 
     return $form;
@@ -46,6 +89,11 @@ class StatusTypeForm extends EntityForm {
    */
   public function save(array $form, FormStateInterface $form_state) {
     $status_type = $this->entity;
+$media = $form_state->getValue('media');
+$mime = $form_state->getValue('mime');
+    $status_type->setMedia($form_state->getValue('media'));
+    $status_type->setMime($this->mimeTypes[$form_state->getValue('mime')]);
+
     $status = $status_type->save();
 
     switch ($status) {

+ 60 - 0
src/StatusService.php

@@ -0,0 +1,60 @@
+<?php
+
+namespace Drupal\statusmessage;
+
+use Drupal\Core\Database\Driver\mysql\Connection;
+use Drupal\Core\Entity\EntityTypeManager;
+use Drupal\Core\Entity\Query\QueryFactory;
+use Drupal\Core\Database\Database;
+use Drupal\flag\FlagService;
+
+/**
+ * Class StatusService.
+ *
+ * @package Drupal\statusmessage
+ */
+class StatusService {
+
+  /**
+   * Drupal\Core\Database\Driver\mysql\Connection definition.
+   *
+   * @var Drupal\Core\Database\Driver\mysql\Connection
+   */
+  protected $database;
+
+  /**
+   * Drupal\Core\Entity\EntityTypeManager definition.
+   *
+   * @var Drupal\Core\Entity\EntityTypeManager
+   */
+  protected $entity_type_manager;
+
+  /**
+   * Drupal\Core\Entity\Query\QueryFactory definition.
+   *
+   * @var Drupal\Core\Entity\Query\QueryFactory
+   */
+  protected $entity_query;
+
+  /**
+   * Drupal\flag\FlagService definition.
+   *
+   * @var Drupal\flag\FlagService
+   */
+  protected $flag;
+  /**
+   * Constructor.
+   */
+  public function __construct(Connection $database, EntityTypeManager $entity_type_manager, QueryFactory $entity_query, FlagService $flag) {
+    $this->database = $database;
+    $this->entity_type_manager = $entity_type_manager;
+    $this->entity_query = $entity_query;
+    $this->flag = $flag;
+  }
+
+
+  public function getMimeTypes() {
+    return ['image/jpeg', 'image/png', 'application/octet-stream', 'video/mp4', 'text/plain', 'application/pdf', 'image/gif'];
+  }
+
+}

+ 5 - 0
statusmessage.services.yml

@@ -0,0 +1,5 @@
+services:
+  statusservice:
+    class: Drupal\statusmessage\StatusService
+    arguments: ["@database", "@entity_type.manager", "@entity.query", "@flag"]
+