Linked data with polymorphism does not work with custom `key_type`
まだ誰も着手していません。
評価
- 難易度
- 2/5
- 見積もり時間
- 1〜3時間
- 初心者へのやさしさ
- 52/100
調査の方向性
lib/jsonapi/resource_serializer.rb:464 から始めて foreign_key_value を調べ、カスタム key_type が設定されている場合にポリモーフィックなリレーションがどのように ID を取得するかに注目してください。報告されたケースを再現し、シリアライズされたリレーションの ID が常に直接の関連付けの ID を使うのではなく、カスタム key_type に従うことを示すカバレッジを追加してください。
索引モデルが issue の本文から書いたものです。
説明
This issue is a (choose one):
- Problem/bug report.
- Feature request.
- Request for support. Note: Please try to avoid submitting issues for support requests. Use Gitter instead.
Checklist before submitting:
- I've searched for an existing issue.
- I've asked my question on Gitter and have not received a satisfactory answer.
- I've included a complete bug report template. This step helps us and allows us to see the bug without trying to reproduce the problem from your description. It helps you because you will frequently detect if it's a problem specific to your project.
- The feature I'm asking for is compliant with the JSON:API spec.
Description
If you create a polymorphic association with custom key_type id is always taken which leads to a wrong data sharing.
Bug reports:
Everything is on lib/jsonapi/resource_serializer.rb:464
When calling source.public_send("#{relationship.name}_id"), it is fine (faster) but it does not take care about custom key_type.
But if you call source.public_send(relationship.name).try(:id), you're using the custom key_type.
Features:
We can set another argument to has_one to be able to mention that the key_type has been modified.
Here is my proposition:
# app/resources/my_awesome_resource
has_one :positionable, polymorphic: true, foreign_key: :positionable_id, foreign_key_type_changed: true
# jsonapi/resource_serializer.rb
def foreign_key_value(source, relationship)
# If you have changed the key_name, don't even try to look at `"#{relationship.name}_id"`
# just load the association and call the custom key_name
foreign_key_type_changed = relationship.options[:foreign_key_type_changed] || false
related_resource_id =
if source.preloaded_fragments.has_key?(format_key(relationship.name))
source.preloaded_fragments[format_key(relationship.name)].values.first.try(:id)
elsif !foreign_key_type_changed && source.respond_to?("#{relationship.name}_id")
# If you have direct access to the underlying id, you don't have to load the relationship
# which can save quite a lot of time when loading a lot of data.
# This does not apply to e.g. has_one :through relationships.
source.public_send("#{relationship.name}_id")
else
source.public_send(relationship.name).try(:id)
end
return nil unless related_resource_id
@id_formatter.format(related_resource_id)
end
- 主要言語
- Ruby
- スター
- 2.3k
- フォーク
- 546
- PR マージ指標
- 30日以内にマージされた PR はありません
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
JSONAPI-Resources/jsonapi-resources のほかの issue
-
難易度 1/5 1時間未満 初心者へのやさしさ 85/100
-
難易度 3/5 1〜2日 初心者へのやさしさ 50/100
JSONAPI-Resources/jsonapi-resources#1488 · コメント 1 件 ·
-
難易度 4/5 3〜5日 初心者へのやさしさ 42/100
JSONAPI-Resources/jsonapi-resources#1479 · コメント 2 件 ·
-
難易度 4/5 3〜5日 初心者へのやさしさ 30/100
JSONAPI-Resources/jsonapi-resources#1477 · コメント 3 件 · リアクション 1 件 ·
-
難易度 3/5 1〜2日 初心者へのやさしさ 45/100
JSONAPI-Resources/jsonapi-resources の issue をすべて見る
似ている issue
-
難易度 2/5 1〜3時間 初心者へのやさしさ 65/100
-
難易度 2/5 1〜3時間 初心者へのやさしさ 75/100
-
難易度 2/5 1〜3時間 初心者へのやさしさ 70/100
googleapis/google-api-ruby-client#28001 · リアクション 5 件 ·
-
難易度 2/5 1〜3時間 初心者へのやさしさ 75/100
-
難易度 2/5 1〜3時間 初心者へのやさしさ 70/100