Add support for UUID field to votingapi_result table

Created on 24 April 2018, almost 7 years ago
Updated 12 September 2024, 7 months ago

In order for JSON API to work correctly, the UUID field needs to be added to the votingapi_result table. This issue is essentially a re-roll of the work done by sylus in https://www.drupal.org/project/votingapi/issues/2872435#comment-12131648 β†’ . It was removed from that issue because it wasn't directly related to it.

✨ Feature request
Status

Needs work

Version

3.0

Component

Code

Created by

πŸ‡¨πŸ‡¦Canada jeffdavidgordon

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • First commit to issue fork.
  • Status changed to Needs review 7 months ago
  • πŸ‡«πŸ‡·France goz

    I need this to make vote_result entities available with jsonapi.

    Here is a patch update for last 8.3.x and Drupal 10.

    UUID is a requirement to make entities available on JSONAPI. An issue on core deal with a better way to detect an entity has missing UUID #3090253: Detect when UUID is missing and provide better exception/error message when constructing a JSON:API payload β†’ but UUID will still be required.

  • Pipeline finished with Failed
    7 months ago
    Total: 142s
    #281034
  • Status changed to Needs work 7 months ago
  • πŸ‡ΊπŸ‡ΈUnited States tr Cascadia

    This patch has some problems. For example:

    @@ -130,6 +132,11 @@ class VoteResult extends ContentEntityBase implements VoteResultInterface {
           ->setReadOnly(TRUE)
           ->setSetting('unsigned', TRUE);
     
    +    $fields[$entity_type->getKey('uuid')] = BaseFieldDefinition::create('uuid')
    +      ->setLabel(new TranslatableMarkup('UUID'))
    +      ->setDescription(new TranslatableMarkup('The vote result UUID.'))
    +      ->setReadOnly(TRUE);
    +

    This is not right because the parent ContentEntityBase creates the base field for uuid as long as the entity key is set. That code should not be duplicated here. Also see πŸ› Vote entity unnecessarily re-implements features provided by base class Needs work for similar problems with the Vote entity.

    Both Vote and VoteResult were written early in D8 before a lot of functionality was moved into ContentEntityBase. So now they both need some major work. And it's important to do that work in a way that won't break existing sites. Because of that, this change should be done in the 4.0.x branch only and have update tests so that we can ensure the entity structure isn't being broken for people upgrading from 8.x-3.x.

  • πŸ‡«πŸ‡·France goz

    I agree. Entity should not duplicate base fields but extends and use ContentEntityBase.

    However, while πŸ› Vote entity unnecessarily re-implements features provided by base class Needs work is not fixed, if someone needs uuid support, the current patch and issue add it. We cannot do better in this issue without big changes in the module

  • Status changed to Active about 1 month ago
  • πŸ‡ΊπŸ‡ΈUnited States tr Cascadia
  • Merge request !53Resolve #2965603 "Vote result uuid" β†’ (Open) created by tr
  • πŸ‡ΊπŸ‡ΈUnited States tr Cascadia

    tr β†’ changed the visibility of the branch 2965603-add-support-for to hidden.

  • πŸ‡ΊπŸ‡ΈUnited States tr Cascadia

    I created a MR for the 4.0.x branch.
    This will not be put into the 8.x-3.x branch.

    Note that the tests fail (in both the new MR and the old MR) because the new uuid field is not being initialized. This would not happen if VoteResult simply inherited the uuid field from ContentEntityBase.

    Like I said, instead of defining our own new base field, we should just add the uuid entity key and call parent::baseFieldDefinitions(); so that ContentEntityBase will define and handle the uuid field.

    This fix is needed before we can release 4.0.0.

Production build 0.71.5 2024