summary refs log tree commit diff stats
path: root/cmd/indus/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/indus/main.go')
-rw-r--r--cmd/indus/main.go47
1 files changed, 46 insertions, 1 deletions
diff --git a/cmd/indus/main.go b/cmd/indus/main.go
index 38dd16d..ce3aa91 100644
--- a/cmd/indus/main.go
+++ b/cmd/indus/main.go
@@ -1,3 +1,48 @@
 package main
 
-func main() {}
+import (
+	"fmt"
+	"log"
+
+	"framagit.org/andinus/indus/clipboard"
+	"framagit.org/andinus/indus/fetch"
+	"framagit.org/andinus/indus/summarize"
+)
+
+func main() {
+	// Get the primary clipboard selection.
+	sel, err := clipboard.GetSel()
+	if err != nil {
+		log.Fatal(err)
+	}
+
+	// If the selection is an empty string then the program should
+	// exit because otherwise Notify function will fail with
+	// non-zero exit code.
+	if len(sel) == 0 {
+		err = fmt.Errorf("clipboard: primary clipboard empty")
+		log.Fatal(err)
+	}
+
+	notifyWiki(sel)
+}
+
+func notifyWiki(sel string) {
+	// Fetch the summary from wikipedia.
+	w, err := fetch.Wikipedia(sel)
+	if err != nil {
+		log.Fatal(err)
+	}
+
+	// Get notification information.
+	n, err := summarize.Wikipedia(w)
+	if err != nil {
+		log.Fatal(err)
+	}
+
+	// Send a desktop notification to the user.
+	err = n.Notify()
+	if err != nil {
+		log.Fatal(err)
+	}
+}