wi/main.go

150 lines
3.3 KiB
Go
Raw Normal View History

2016-07-21 22:40:19 +03:00
/**
* @file main.go
* @author Mikhail Klementyev jollheef<AT>riseup.net
* @license GNU GPLv3
* @date July, 2016
* @brief Tiny non-interactive cli browser
*/
2016-07-20 01:08:19 +03:00
package main
import (
2019-06-20 19:20:51 +03:00
"context"
"net/http"
2016-11-20 16:57:27 +02:00
"os"
2016-07-30 11:05:50 +03:00
"strings"
2019-06-20 19:29:08 +03:00
"code.dumpstack.io/tools/wi/commands"
"code.dumpstack.io/tools/wi/storage"
2016-07-22 15:43:23 +03:00
2016-11-20 16:57:27 +02:00
cookiejar "github.com/juju/persistent-cookiejar"
2016-07-20 01:08:19 +03:00
kingpin "gopkg.in/alecthomas/kingpin.v2"
2019-06-20 19:20:51 +03:00
"github.com/cretz/bine/process"
"github.com/cretz/bine/tor"
"github.com/ipsn/go-libtor"
2016-07-20 01:08:19 +03:00
)
2019-06-20 19:20:51 +03:00
var creator = libtor.Creator
type LibTorWrapper struct{}
func (LibTorWrapper) New(ctx context.Context, args ...string) (process.Process, error) {
return creator.New(ctx, args...)
}
2016-07-30 11:05:50 +03:00
type searchList []string
func (l *searchList) Set(value string) (err error) {
*l = append(*l, value)
return
}
func (l *searchList) String() (s string) {
return ""
}
func (l *searchList) IsCumulative() bool {
return true
}
func SearchList(settings kingpin.Settings) (target *[]string) {
target = new([]string)
settings.SetValue((*searchList)(target))
return
}
2016-07-20 01:08:19 +03:00
var (
2019-06-20 19:20:51 +03:00
useTor = kingpin.Flag("tor", "Use embedded tor").Default("false").Bool()
ua = kingpin.Flag("ua", "User-Agent").Default("Wi 0.1").String()
2016-07-24 11:01:55 +03:00
get = kingpin.Command("get", "Get url")
getUrl = get.Arg("url", "Url").Required().String()
2016-11-20 12:22:00 +02:00
form = kingpin.Command("form", "Fill form")
formID = form.Arg("id", "Form ID").Required().Int64()
formArgs = SearchList(form.Arg("args", "Form arguments"))
2016-08-01 03:11:48 +03:00
2016-07-25 18:41:12 +03:00
link = kingpin.Command("link", "Get link")
linkNo = link.Arg("no", "Number").Required().Int64()
linkFromHistory = link.Flag("history", "Item from history").Bool()
2016-07-24 11:01:55 +03:00
historyList = kingpin.Command("history", "List history")
historyListItems = historyList.Arg("items", "Amount of items").Int64()
2016-07-24 11:23:24 +03:00
historyListAll = historyList.Flag("all", "Show all items").Bool()
2016-07-30 11:05:50 +03:00
search = kingpin.Command("search", "Search by duckduckgo")
2016-07-30 11:05:50 +03:00
searchArgs = SearchList(search.Arg("string", "String for search"))
2016-07-20 01:08:19 +03:00
)
2016-07-22 15:43:23 +03:00
func main() {
2016-11-20 17:09:02 +02:00
homePath, exists := os.LookupEnv("HOME")
var wiDir, widbPath, wijarPath string
if exists {
wiDir = homePath + "/.wi"
widbPath = wiDir + "/wi.db"
wijarPath = wiDir + "/wi.jar"
} else {
wiDir = "/tmp"
widbPath = "/tmp/wi.db"
wijarPath = "/tmp/wi.jar"
}
err := os.MkdirAll(wiDir, 0700)
if err != nil {
panic(err)
}
db, err := storage.OpenDB(widbPath)
2016-07-22 15:43:23 +03:00
if err != nil {
panic(err)
}
2016-07-24 11:01:55 +03:00
defer db.Close()
2016-11-20 17:09:02 +02:00
os.Setenv("GOCOOKIES", wijarPath)
2016-11-20 16:57:27 +02:00
jar, err := cookiejar.New(nil)
if err != nil {
panic(err)
}
defer jar.Save()
2019-06-20 19:20:51 +03:00
kingpin.Parse()
var t *tor.Tor
if *useTor {
t, err = tor.Start(nil, &tor.StartConf{
ProcessCreator: LibTorWrapper{},
DataDir: wiDir + "/tor",
})
if err != nil {
panic(err)
}
defer t.Close()
dialer, err := t.Dialer(nil, nil)
if err != nil {
panic(err)
}
commands.Transport = &http.Transport{DialContext: dialer.DialContext}
}
commands.UserAgent = *ua
2016-07-24 11:01:55 +03:00
switch kingpin.Parse() {
case "get":
2016-11-20 16:57:27 +02:00
commands.Get(db, jar, *getUrl)
2016-11-20 12:22:00 +02:00
case "form":
2016-11-20 16:57:27 +02:00
commands.Form(db, jar, *formID, *formArgs)
2016-07-24 11:01:55 +03:00
case "link":
2016-11-20 16:57:27 +02:00
commands.Link(db, jar, *linkNo, *linkFromHistory)
2016-07-24 11:01:55 +03:00
case "history":
2016-07-25 18:35:09 +03:00
commands.History(db, *historyListItems, 20, *historyListAll)
2016-07-30 11:05:50 +03:00
case "search":
2017-10-05 09:44:20 +03:00
commands.Get(db, jar, "https://duckduckgo.com/html/?kd=-1&q="+strings.Join(*searchArgs, "+"))
2016-07-22 15:43:23 +03:00
}
}