mirror of
https://github.com/makew0rld/amfora.git
synced 2024-12-04 14:46:29 -05:00
✨ Finished multiple charset support
This commit is contained in:
parent
0d5c38e060
commit
de39a17b5e
@ -19,7 +19,7 @@ Amfora aims to be the best looking [Gemini](https://gemini.circumlunar.space/) c
|
|||||||
|
|
||||||
It also aims to be completely cross platform, with full Windows support. If you're on Windows, I would not recommend using the default terminal software. Maybe use [Cmder](https://cmder.net/) instead?
|
It also aims to be completely cross platform, with full Windows support. If you're on Windows, I would not recommend using the default terminal software. Maybe use [Cmder](https://cmder.net/) instead?
|
||||||
|
|
||||||
It fully passes Sean Conman's client torture test, with exception of the alternate encodings section, as only UTF-8 and ASCII are supported. It mostly passes the Egsam test.
|
It fully passes Sean Conman's client torture test. It mostly passes the Egsam test.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
@ -41,6 +41,7 @@ It is designed with large or fullscreen terminals in mind. For optimal usage, ma
|
|||||||
- [x] Styled page content (headings, links)
|
- [x] Styled page content (headings, links)
|
||||||
- [x] Basic forward/backward history, for each tab
|
- [x] Basic forward/backward history, for each tab
|
||||||
- [x] Input (Status Code 10 & 11)
|
- [x] Input (Status Code 10 & 11)
|
||||||
|
- [x] Multiple charset support (over 55)
|
||||||
- [ ] Built-in search using GUS
|
- [ ] Built-in search using GUS
|
||||||
- [ ] Bookmarks
|
- [ ] Bookmarks
|
||||||
- [ ] Search in pages with <kbd>Ctrl-F</kbd>
|
- [ ] Search in pages with <kbd>Ctrl-F</kbd>
|
||||||
|
@ -20,6 +20,17 @@ import (
|
|||||||
"golang.org/x/text/encoding/ianaindex"
|
"golang.org/x/text/encoding/ianaindex"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Charsets that are compatible with UTF-8 and don't need to be decoded.
|
||||||
|
func isUTF8(charset string) bool {
|
||||||
|
utfCharsets := []string{"", "utf-8", "us-ascii"}
|
||||||
|
for i := range utfCharsets {
|
||||||
|
if strings.ToLower(charset) == utfCharsets[i] {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
// CanDisplay returns true if the response is supported by Amfora
|
// CanDisplay returns true if the response is supported by Amfora
|
||||||
// for displaying on the screen.
|
// for displaying on the screen.
|
||||||
// It also doubles as a function to detect whether something can be stored in a Page struct.
|
// It also doubles as a function to detect whether something can be stored in a Page struct.
|
||||||
@ -36,12 +47,12 @@ func CanDisplay(res *gemini.Response) bool {
|
|||||||
// Amfora doesn't support other filetypes
|
// Amfora doesn't support other filetypes
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
// Check if there is an encoding for the charset already
|
if isUTF8(params["charset"]) {
|
||||||
if params["charset"] == "" {
|
return true
|
||||||
return true // Means UTF-8
|
|
||||||
}
|
}
|
||||||
_, err = ianaindex.MIME.Encoding(params["charset"]) // Lowercasing is done inside
|
enc, err := ianaindex.MIME.Encoding(params["charset"]) // Lowercasing is done inside
|
||||||
return err == nil
|
// Encoding sometimes returns nil, see #3 on this repo and golang/go#19421
|
||||||
|
return err == nil && enc != nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// convertRegularGemini converts non-preformatted blocks of text/gemini
|
// convertRegularGemini converts non-preformatted blocks of text/gemini
|
||||||
@ -219,10 +230,14 @@ func MakePage(url string, res *gemini.Response) (*structs.Page, error) {
|
|||||||
|
|
||||||
// Convert content first
|
// Convert content first
|
||||||
var utfText string
|
var utfText string
|
||||||
if params["charset"] == "" || strings.ToLower(params["charset"]) == "us-ascii" {
|
if isUTF8(params["charset"]) {
|
||||||
utfText = string(rawText)
|
utfText = string(rawText)
|
||||||
} else {
|
} else {
|
||||||
encoding, _ := ianaindex.MIME.Encoding(params["charset"])
|
encoding, err := ianaindex.MIME.Encoding(params["charset"])
|
||||||
|
if encoding == nil || err != nil {
|
||||||
|
// Some encoding doesn't exist and wasn't caught in CanDisplay()
|
||||||
|
return nil, errors.New("unsupported encoding")
|
||||||
|
}
|
||||||
utfText, err = encoding.NewDecoder().String(string(rawText))
|
utfText, err = encoding.NewDecoder().String(string(rawText))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
Loading…
Reference in New Issue
Block a user