-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
Description
A workflow could have binary files, such as compiled code, images, etc.
TRS does not have a way to serve up binaries; the FileWrapper object returns a JSON object with a String content field -- if the data were binary, it would need to be escaped.
Some brainstorming:
- For JSON responses, base64 encoding the binary data seems like the best solution. But clients would then need to know that the content is base64-encoded, so that would entail adding another field to FileWrapper that indicates if the
content
field is encoded or not, so the client will know whether to decode it. - What to do if one of the
PLAIN
types, e.g.,PLAIN_WDL
is requested? An error response, or return the data with the content-type set accordingly? - A different idea is that the only way to fetch binary data is by fetching the workflow as a bundle. In practice, I think most clients should be using the zip endpoint, but it does seem incomplete to only be able to fetch and know about binaries this way.
┆Issue is synchronized with this Jira Story
┆Project Name: Zzz-ARCHIVE GA4GH tool-registry-service
┆Issue Number: TRS-64
denis-yuen