Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PHPORM-255 Enable disabling the id to _id field rename in embedded documents #3332

Draft
wants to merge 2 commits into
base: 5.x
Choose a base branch
from

Conversation

GromNaN
Copy link
Member

@GromNaN GromNaN commented Apr 1, 2025

Fix PHPORM-255
Fix #3184

To disable the automatic conversion of id to _id and store id fields in the database for embedded documents, set the connection setting using the new method:

DB::connection('mongodb')->setRenameEmbeddedIdField(false);

Checklist

  • Add tests and ensure they pass

Copy link

@stakx stakx left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for doing this PR, really happy to see any progress regarding this issue!

@@ -123,6 +125,8 @@ class Builder extends BaseBuilder
*/
public $options = [];

private ?bool $renameEmbeddedIdField;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this property is only set on the connection, should it be defined here on the builder?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are builder instances created in many places, you don't always have access to them to change the setting on each specific instance.
If we used a static variable, it would apply to every connection.
So I think that the connection is the good level for this setting.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree, which is why I'm confused that this property is also defined here on the builder. I guess I meant, "this shouldn't be defined here on the builder, because it's never set on the builder".

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, right. I forgot to remove it after trying to define it in the builder. Which did not work well.

Copy link

@mshamaseen mshamaseen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be great if we could add an option in the config file to disable this behaviour.

{
if (array_key_exists('id', $values)) {
if (array_key_exists('id', $values) && ($root || $this->connection->getRenameEmbeddedIdField())) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

would it be easier to check:
if (!$root && !$this->connection->getRenameEmbeddedIdField()) return $values; at the beginning instead of checking them multiple times in the function?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature Request] Options to ignore auto conversion id to _id
4 participants