Skip to content
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

Provide Content-Type or File Type #102

Open
lewxdev opened this issue Feb 16, 2024 · 3 comments
Open

Provide Content-Type or File Type #102

lewxdev opened this issue Feb 16, 2024 · 3 comments

Comments

@lewxdev
Copy link

lewxdev commented Feb 16, 2024

It'd be helpful for the Post to also provide this information to be able to differentiate between images and videos without processing/requesting media manually

@lewxdev
Copy link
Author

lewxdev commented Feb 17, 2024

I am also unable to access _data to handle this myself. @AtoraSuunva this seems like a bug

@AtoraSuunva
Copy link
Owner

It's data not _data (whoops my docs are wrong there), though there's no way for me to provide Content-Type since no booru API does that (afaik) and doing a HEAD request for every post to get that header would be wasteful

You can probably rely on file extensions in file urls though, every booru I've seen has been pretty good about using the right extensions and it's roughly what I do in my own project using booru https://github.com/AtoraSuunva/BooruBot/blob/main/src/boorubot/search/searchUtils.ts#L324

@lewxdev
Copy link
Author

lewxdev commented Feb 26, 2024

It's data not _data (whoops my docs are wrong there)

Ah, I hadn't realized this before, but in order to access @private and @protected properties in typescript you have to use bracket notation (e.g. post["data"]). Maybe this property shouldn't be protected/private if it's essentially just a simple Record<string, any>

You can probably rely on file extensions in file urls though, every booru I've seen has been pretty good about using the right extensions and it's roughly what I do in my own project using booru

Is it possible for booru to provide it's best guess of what the file type would be based on the file url or data received from the APIs? I started to do this on my end, but it feels like important information that this package could provide.

interface Post {
  // ...
  /** the content type as determined by the file url, (e.g. `"image/png"`) */
  contentType: string | null;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants