- Issue created by @somebodysysop
- πΊπΈUnited States somebodysysop
With respect to this specific change (which I am most worried about as it is not simply a renaming issue):
$group = Group::load($gid); /** @var \Drupal\group\Plugin\GroupContentEnablerInterface $plugin */ $plugin = $group->getGroupType()->getContentPlugin('group_node:'.$node->bundle()); $group_content = GroupContent::create([ 'type' => $plugin->getContentTypeConfigId(), 'gid' => $group->id(), 'entity_id' => $node->id(), ]); $group_content->save();
Changed to:
// Updated code for Group 2.x: $plugin_id = 'group_node:'.$node->bundle(); $relationship_type_storage = $this->entityTypeManager->getStorage('group_content_type'); $group_type_id = $group->getGroupType()->id(); /** @var \Drupal\group\Plugin\GroupRelationshipEnablerInterface $plugin */ # Group 2.x $plugin = $group->getGroupType()->getPlugin($plugin_id); $group_content = GroupRelationship::create([ 'type' => $relationship_type_storage->getRelationshipTypeId($group_type_id, $plugin_id), 'gid' => $group->id(), 'entity_id' => $node->id(), ]); $group_content->save();
These are the comments from Claude on the above change:
After reviewing your code changes again along with the Group 2.x upgrade documentation, I believe you have made the appropriate modifications to migrate from Group 1.x to 2.x. Here's a recap of the key changes:
- Use `getPlugin()` instead of `getContentPlugin()` to get the relationship plugin
- Load the relationship type storage directly instead of via the plugin
- Get the relationship type ID from the storage instead of the plugin
- Create the relationship using `GroupRelationship` instead of `GroupContent`
- Save the relationship correctly
These align with the recommended changes of:
- Using new 2.x methods like `getPlugin()` instead of old 1.x methods
- Accessing storages directly instead of via old APIs
- Getting IDs from storages instead of old plugins
- Creating/loading `GroupRelationship` instead of `GroupContent`
So in summary, yes your code modifications follow the prescribed upgrades for migrating custom code to Group 2.x based on the documentation. The main aspects like using new methods, accessing storages directly, and leveraging the GroupRelationship entity are addressed.
Barring any edge cases I'm not aware of, I would say your code changes are correct and should properly upgrade the integration to Group 2.x according to the provided upgrade guides and documentation.
- Status changed to Fixed
over 1 year ago 11:51am 12 September 2023 - π§πͺBelgium kristiaanvandeneynde Antwerp, Belgium
Seems like this was answered and then abandoned, so closing as fixed.
- Status changed to Active
over 1 year ago 6:53pm 12 September 2023 - πΊπΈUnited States somebodysysop
I do very much appreciate the discussion, and those notes helped me to get this far. However, I think it's a little unfair to say I "abandoned" the issue. "Postponed" is a far better word. And I had good reason. I was never able to get Group 2.x working. And, on top of that, I had these issues all related to Group 2.x incompatibilities with other modules I depended on:
Quick node clone incompatibility:
https://www.drupal.org/project/quick_node_clone/issues/3306677 β¨ Intercompatibility with Group module new versions Needs workGroup moderation incompatibility:
https://www.drupal.org/project/gcontent_moderation/issues/3309542 π¬ Is group content moderation module compatible with Groups 2.0.0-beta3? Needs workSitewide admin permissions:
https://www.drupal.org/project/group/issues/3318776 βWith all the back and forth, I eventually trashed the site I was working with:
https://www.drupal.org/project/group/issues/3330286 βAs I was slammed with trying to get Drupal 7 sites migrated to Drupal 8, and the Flexible Permissions module on which Group 2.x depended was still in alpha, it just made sense to postpone the effort until things calmed down a bit.
In addition, I got involved in moving the OpenAI project along, which resulted in me developing my own AI module:
https://www.drupal.org/project/openai/issues/3337774#comment-14908993 β¨ Generate string vectors using OpenAI embeddings Fixed
https://youtu.be/qgKiXYP8UBsSo, now that some of the incompatibility issues with other modules have at least been addressed, I turned my attention back to getting this working. Before I go and repeat the same mistakes as before, I was just hoping that someone who has already done this could take a look and let me know if it looks correct.
Given everything, I don't think that's an unreasonable request.
- π§πͺBelgium kristiaanvandeneynde Antwerp, Belgium
Hmm, was mass replying to the issue queue, must have misread the dates or something so I apologize for being a bit harsh and calling this abandoned.
As to your request, https://www.drupal.org/docs/contributed-modules/group/updating-your-modu... β is a nice write-up of the changes you need to look out for. It seems like you found that page and followed those steps and got someone to review them too. So al in all, I think you should be good to go, although an extra read of the documentation I linked never hurts :)
- πΊπΈUnited States somebodysysop
Yes, I did review that page -- several times! I just didn't want to repeat the same mistakes. Thanks much for taking a look.
- Status changed to Fixed
over 1 year ago 9:27pm 5 October 2023 - πΊπΈUnited States somebodysysop
OK, so everything seems to have worked out fairly well. I only ran into these two hiccups that apparently weren't in my original notes:
change from getContentByEntityId to getRelationshipsByEntity
addContent() method is not defined for the Group class.
// https://www.drupal.org/node/3292844#:~:text=,on%2027%20June%202022 β
changed to:
$group->addRelationship($node, $pluginId);Appreciate the assistance!
Just finished unit testing permissions and it appears we are good to go with Group 2.2.0. Woo-hoo!
- π§πͺBelgium kristiaanvandeneynde Antwerp, Belgium
Great, glad you got it sorted out!
Automatically closed - issue fixed for 2 weeks with no activity.