Git Product home page Git Product logo

Comments (5)

jmfeurprier avatar jmfeurprier commented on July 26, 2024

I just found this comment in the serializer class, line 79 :

// classname may be detected for hydra api with @type key

I guess this explains our issue :)

from rest-client-sdk.

jdeniau avatar jdeniau commented on July 26, 2024

I do not have a great idea about this:

The fact is that the entity is really coupled with the url you use to make the call for now.

A solution could be to allow a callback function to be called to override the default conversion functionality, but it may be complex and lead to bugs and be very coupled with the library, so more BC.

Another solution is to implement a "kind of" inheritance system, like doctrine does but it may be really complex and add a lot of configuration.

If you have a better idea, I will gladly take it as you are more close to the code.

from rest-client-sdk.

jmfeurprier avatar jmfeurprier commented on July 26, 2024

I just pushed PR #56 , which is a proposal for the handling of abstract entities, let me know all the adjustments you'd like.

I added unit tests but I never used atoum before, my tests may not be 100% on par with your habits, just let me know.

from rest-client-sdk.

jdeniau avatar jdeniau commented on July 26, 2024

I reviewed you PR, but I think of a nice "quickfix" you can do right now in your code before we fixed it in the API:

You can just override the findBy method like defined in the README

You won't benefit from all the magic behind like the cache system, but you can implement it easily yourself if you need it (you won't need it if you code is clean, but I know we do :) )

The implementation can be something like this:

    public function findBy(array $params) {
        // generate the path to call
        $path = // ...
        $data = $this->restClient->get($path);
        $hydrator = $this->sdk->getModelHydrator();
        $out = [];
        foreact ($data as $item) {
            $entityName = $item['@type'] === 'Bar' ? 'Foo\Bar' : 'Foo\Baz';
            $out[] = $hydrator->hydrate($item, $entityName);  
        }
        return $out;
    }

from rest-client-sdk.

jmfeurprier avatar jmfeurprier commented on July 26, 2024

Fixed in v0.21.0.

from rest-client-sdk.

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.