追加: engine_manifest.json
をバリデーション
#1295
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
内容
概要:
engine_manifest.json
のバリデーションを追加現在の VOICEVOX ENGINE において、エンジンマニフェストである
engine_manifest.json
はバリデーション無しで JSON として読み込まれ、属性アクセスされている。これは危険である。また JSON dict へ直接アクセスしているためマニフェストのスキーマが VOICEVOX ENGINE 内で必要とされず、結果としてスキーマが明示的に定義されていない。
これは pydantic が得意とする領域であり、スキーマをクラスで実装し JSON 読み込みを pydantic でおこなえば自動バリデーションがおこなわれる。
このような背景から、
engine_manifest.json
の pydantic 読み込みによるバリデーション追加を提案します。関連 Issue
part of #1249