1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-13 19:10:42 +00:00
amfora/amfora.go

99 lines
2.0 KiB
Go
Raw Normal View History

2020-06-18 20:54:48 +00:00
package main
import (
"fmt"
"io"
2020-06-18 20:54:48 +00:00
"os"
"strings"
2020-06-18 20:54:48 +00:00
2021-02-27 05:13:11 +00:00
"github.com/makeworld-the-better-one/amfora/bookmarks"
"github.com/makeworld-the-better-one/amfora/client"
2020-06-18 20:54:48 +00:00
"github.com/makeworld-the-better-one/amfora/config"
"github.com/makeworld-the-better-one/amfora/display"
2020-11-27 22:01:29 +00:00
"github.com/makeworld-the-better-one/amfora/subscriptions"
2020-06-18 20:54:48 +00:00
)
2020-09-01 23:55:06 +00:00
var (
2021-02-17 20:27:13 +00:00
version = "v1.8.0"
2020-09-01 23:55:06 +00:00
commit = "unknown"
builtBy = "unknown"
)
2020-06-18 20:54:48 +00:00
func main() {
2020-12-07 02:02:41 +00:00
// err := logger.Init()
// if err != nil {
// panic(err)
// }
2020-06-18 20:54:48 +00:00
if len(os.Args) > 1 {
if os.Args[1] == "--version" || os.Args[1] == "-v" {
2020-09-01 23:55:06 +00:00
fmt.Println("Amfora", version)
fmt.Println("Commit:", commit)
fmt.Println("Built by:", builtBy)
return
}
if os.Args[1] == "--help" || os.Args[1] == "-h" {
2020-07-09 23:28:39 +00:00
fmt.Println("Amfora is a fancy terminal browser for the Gemini protocol.")
fmt.Println()
fmt.Println("Usage:")
fmt.Println("amfora [URL]")
fmt.Println("amfora --version, -v")
return
}
}
2020-12-07 02:02:41 +00:00
err := config.Init()
2020-06-18 20:54:48 +00:00
if err != nil {
fmt.Fprintf(os.Stderr, "Config error: %v\n", err)
os.Exit(1)
}
2021-02-27 05:13:11 +00:00
client.Init()
2020-11-27 22:01:29 +00:00
err = subscriptions.Init()
if err != nil {
2020-11-27 22:01:29 +00:00
fmt.Fprintf(os.Stderr, "subscriptions.json error: %v\n", err)
2020-07-09 23:28:39 +00:00
os.Exit(1)
2020-06-18 20:54:48 +00:00
}
2021-02-27 05:13:11 +00:00
err = bookmarks.Init()
if err != nil {
fmt.Fprintf(os.Stderr, "bookmarks.xml error: %v\n", err)
os.Exit(1)
}
// Initialize lower-level cview app
if err = display.App.Init(); err != nil {
panic(err)
}
// Initialize Amfora's settings
2020-12-20 21:39:33 +00:00
display.Init(version, commit, builtBy)
display.NewTab()
if len(os.Args[1:]) > 0 {
display.URL(os.Args[1])
} else if !isStdinEmpty() {
renderFromStdin()
2020-06-18 20:54:48 +00:00
}
// Start
2020-06-18 20:54:48 +00:00
if err = display.App.Run(); err != nil {
panic(err)
}
}
func isStdinEmpty() bool {
stat, _ := os.Stdin.Stat()
return (stat.Mode() & os.ModeCharDevice) != 0
}
func renderFromStdin() {
stdinTextBuilder := new(strings.Builder)
_, err := io.Copy(stdinTextBuilder, os.Stdin)
if err != nil {
fmt.Fprintf(os.Stderr, "error reading from standard input: %v\n", err)
os.Exit(1)
}
stdinText := stdinTextBuilder.String()
display.RenderFromString(stdinText)
}