-
Notifications
You must be signed in to change notification settings - Fork 182
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
Unable to set site outside of Base class #215
Comments
I have encountered this issue as well attempting to use the project in a multiple endpoint setup in different environments. I have different sites depending on whether or not I am in development, staging or production. I discovered that all requests were going to the hard coded I am looking into a fix now. Ex: module MyApi
# abstract base class
class Base < JsonApiClient::Resource
self.site = "https://myapi.com/"
end
end [1] > MyApi::Base.site
=> "https://myapi.com/"
[2] > availabilities = MyApi::Availabilities.new
[3] > availabilities.save
# The resulting log from Farraday::Logger
INFO -- : post https://myapi.com/availabilities Now attempting the same thing but setting the [1] > MyApi::Base.site
=> "https://myapi.com/"
[2] > MyApi::Base.site = "https://myotherapi.com/"
[3] > MyApi::Base.site
=> "https://myotherapi.com/"
[4] >availabilities = MyApi::Availabilities.new
[5] >availabilities.save
# The resulting log from Farraday::Logger
INFO -- : post https://myapi.com/availabilities |
The problem is that when the site class attribute is changed after boot the connection is never rebuilt. So the URL that Faraday uses for requests is never updated. (see @url_prefix) [1] >MyApi::Base.connection
=> #<JsonApiClient::Connection:0x007fa57b40fd30
@faraday=#<Faraday::Connection:0x007fa57b40fa60 @parallel_manager=nil,
@headers={"User-Agent"=>"Faraday v0.9.2"},
@params={},
@options=#<Faraday::RequestOptions (empty)>,
@ssl=#<Faraday::SSLOptions (empty)>,
@default_parallel_manager=nil,
@builder=#<Faraday::RackBuilder:0x007fa57b40f538
@handlers=[FaradayMiddleware::EncodeJson, JsonApiClient::Middleware::JsonRequest, JsonApiClient::Middleware::Status, EnjoyApi::Request, Faraday::Response::Logger, JsonApiClient::Middleware::ParseJson, Faraday::Adapter::NetHttp]>,
@url_prefix=#<URI::HTTPS https://myapi.com/>,
@proxy=nil>> In the JsonApiClient::Resource class you can see on line 104 the connection does not get rebuild per request. I have successfully overwrote the Ex: def site=(url)
super(url)
self.connection(rebuild: true)
end [1] > MyApi::Base.site = "https://someotherapi.com/"
[2] > MyApi::Base.connection
=> #<JsonApiClient::Connection:0x007fa57b40fd30
@faraday=#<Faraday::Connection:0x007fa57b40fa60 @parallel_manager=nil,
@headers={"User-Agent"=>"Faraday v0.9.2"},
@params={},
@options=#<Faraday::RequestOptions (empty)>,
@ssl=#<Faraday::SSLOptions (empty)>,
@default_parallel_manager=nil,
@builder=#<Faraday::RackBuilder:0x007fa57b40f538
@handlers=[FaradayMiddleware::EncodeJson, JsonApiClient::Middleware::JsonRequest, JsonApiClient::Middleware::Status, JsonApiClient::Middleware::ParseJson, Faraday::Adapter::NetHttp]>,
@url_prefix=#<URI::HTTPS https://someotherapi.com/>,
@proxy=nil>> My next challenge is adding my custom request class UPDATE: Adding Once I get this project patched I will try to think of a way that this knowledge could be included in the project, if it is worthwhile. |
I ran into this issue as well. It seems to me that this is a design-level issue with the library: primarily that it relies on a singleton connection to make all the requests. Ideally, there'd be a way to pass a connection object on a per-object/request basis, rather than maintaining that state at the class level. |
Yeah, this totally kills my application's ability to communicate with multiple (yet similar) resources. |
I've opened #255 to discuss refactoring the storage of connection objects (which would impact this issue as well). |
This looks resolved. Please reopen if not |
The new version of a hack is somehow different. Though, it attempts to do the same trick altering the underlying connection, it does a reconnect instead of just patching the URL. As a result, this allows different resources to work with distinct `site`s at the same time. See [related upstream issue]( JsonApiClient/json_api_client#215 ) for details.
The new version of the hack is somehow different. Though, it attempts to do the same trick altering the underlying connection, it does a reconnect instead of just patching the URL. As a result, this allows different resources to work with distinct `site`s at the same time. See [related upstream issue]( JsonApiClient/json_api_client#215 ) for details.
@gaorlov I realise this is an old issue, but it is not fixed by #255.
The connection is not rebuilt and effectively caches the I've adapted that slightly to also reapply any middleware
|
So I have something similiar to the example code. If I do this:
everything works.
If I try and set the site var outside of MyApi::Base, it fails.
If I have
the connection fails with the error of
Using pry, if I get the following:
which is what I expect. I'm not sure what's happening...
The text was updated successfully, but these errors were encountered: