FlagController.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. namespace Drupal\heartbeat\Controller;
  3. use Drupal\Core\Controller\ControllerBase;
  4. use Drupal\Core\Entity\EntityTypeManager;
  5. use Drupal\Core\Entity\Query\QueryFactory;
  6. use Symfony\Component\DependencyInjection\ContainerInterface;
  7. use Drupal\flag\FlagService;
  8. use Symfony\Component\HttpFoundation\Response;
  9. /**
  10. * Class FlagController.
  11. *
  12. * @package Drupal\heartbeat\Controller
  13. */
  14. class FlagController extends ControllerBase {
  15. /**
  16. * Drupal\flag\FlagService definition.
  17. *
  18. * @var Drupal\flag\FlagService
  19. */
  20. protected $flagService;
  21. protected $entityTypeManager;
  22. protected $entityQuery;
  23. /**
  24. * {@inheritdoc}
  25. */
  26. public function __construct(FlagService $flag, EntityTypeManager $entity_type_manager, QueryFactory $entity_query) {
  27. $this->flagService = $flag;
  28. $this->entityTypeManager = $entity_type_manager;
  29. $this->entityQuery = $entity_query;
  30. }
  31. /**
  32. * {@inheritdoc}
  33. */
  34. public static function create(ContainerInterface $container) {
  35. return new static(
  36. $container->get('flag'),
  37. $container->get('entity_type.manager'),
  38. $container->get('entity.query')
  39. );
  40. }
  41. /**
  42. * Hello.
  43. *
  44. * @return string
  45. * Return Hello string.
  46. */
  47. public function getUserFlaggings() {
  48. $entity_type = \Drupal::request()->request->get('entity_type');
  49. $entity_id = \Drupal::request()->request->get('entity_id');
  50. $flag_id = \Drupal::request()->request->get('flag_id');
  51. $uid = \Drupal::request()->request->get('uid');;
  52. $flaggedByUser = $this->entityQuery->get("flagging")
  53. ->condition("flag_id", $flag_id, "=")
  54. ->condition("entity_type", $entity_type, "=")
  55. ->condition("entity_id", $entity_id)
  56. ->condition("uid", $uid, "=")
  57. ->execute();
  58. $response = new Response();
  59. $response->setContent(json_encode(array(
  60. 'flaggedByUser' => count(
  61. $this->entityQuery->get("flagging")
  62. ->condition("flag_id", $flag_id, "=")
  63. ->condition("entity_type", $entity_type, "=")
  64. ->condition("entity_id", $entity_id)
  65. ->condition("uid", $uid, "=")
  66. ->execute()) > 0)
  67. ));
  68. $response->headers->set('Content-Type', 'application/json');
  69. return $response;
  70. }
  71. }