2020-06-18 23:54:48 +03:00
|
|
|
package structs
|
|
|
|
|
2020-07-04 00:28:56 +03:00
|
|
|
type Mediatype string
|
|
|
|
|
|
|
|
const (
|
|
|
|
TextGemini Mediatype = "text/gemini"
|
|
|
|
TextPlain Mediatype = "text/plain"
|
|
|
|
)
|
|
|
|
|
2020-06-18 23:54:48 +03:00
|
|
|
// Page is for storing UTF-8 text/gemini pages, as well as text/plain pages.
|
|
|
|
type Page struct {
|
2020-07-04 00:28:56 +03:00
|
|
|
Url string
|
|
|
|
Mediatype Mediatype
|
|
|
|
Raw string // The raw response, as received over the network
|
|
|
|
Content string // The processed content, NOT raw. Uses cview colour tags. All link/link texts must have region tags. It will also have a left margin.
|
|
|
|
Links []string // URLs, for each region in the content.
|
|
|
|
Row int // Scroll position
|
|
|
|
Column int // ditto
|
|
|
|
Width int // The width of the terminal at the time when the Content was set. This is to know when reformatting should happen.
|
2020-06-18 23:54:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Size returns an approx. size of a Page in bytes.
|
|
|
|
func (p *Page) Size() int {
|
2020-07-03 06:55:24 +03:00
|
|
|
b := len(p.Raw) + len(p.Content) + len(p.Url)
|
2020-06-18 23:54:48 +03:00
|
|
|
for i := range p.Links {
|
|
|
|
b += len(p.Links[i])
|
|
|
|
}
|
|
|
|
return b
|
|
|
|
}
|