mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
added mime types (#195)
* added mime types Added some mime type for images. Very new to crystal so hopefully this is ok. Without this they default to octet, which just does a download * jpg to jpeg
This commit is contained in:
parent
849eda06c8
commit
6280af2e40
1 changed files with 15 additions and 0 deletions
|
@ -9,5 +9,20 @@ module Kemal
|
|||
return call_next(context) if context.request.path.not_nil! == "/"
|
||||
super
|
||||
end
|
||||
|
||||
def mime_type(path)
|
||||
case File.extname(path)
|
||||
when ".txt" then "text/plain"
|
||||
when ".htm", ".html" then "text/html"
|
||||
when ".css" then "text/css"
|
||||
when ".js" then "application/javascript"
|
||||
when ".png" then "image/png"
|
||||
when ".jpg", ".jpeg" then "image/jpeg"
|
||||
when ".gif" then "image/gif"
|
||||
when ".svg" then "image/svg+xml"
|
||||
else "application/octet-stream"
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue