Code Monkey home page Code Monkey logo

Comments (2)

austinpgraham avatar austinpgraham commented on May 30, 2024

@vitalik I've taken a stab at fixing this, as I'm also blocked on this, PR linked above in history.

from django-ninja.

bastiaan85 avatar bastiaan85 commented on May 30, 2024

Peeking in the source code of ninja.schema, it seems the issue would be bypassed by setting extra attributes (so model.foo = bar when foo is not defined in the model) to forbidden in the model_config?

class Schema(BaseModel, metaclass=ResolverMetaclass):
    class Config:
        from_attributes = True  # aka orm_mode

    @model_validator(mode="wrap")
    @classmethod
    def _run_root_validator(
        cls, values: Any, handler: ModelWrapValidatorHandler[S], info: ValidationInfo
    ) -> Any:
        # when extra is "forbid" we need to perform default pydantic validation
        # as DjangoGetter does not act as dict and pydantic will not be able to validate it
        if cls.model_config.get("extra") == "forbid":
            handler(values)

        values = DjangoGetter(values, cls, info.context)
        return handler(values)

However as the function doesn't return in that case, the DjangoGetter is still instantiated and handler is run on that as well (final lines). When I modify it too

        if cls.model_config.get("extra") == "forbid":
            return handler(values)

Attribute assignment and validation work as expected. I'm not sure if that how it's supposed to work, but could be a different approach to get this easily resolved rather than the full addition of supporting __dict__ as provided in the PR by @austinpgraham .

from django-ninja.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.