summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--handlers.go38
-rw-r--r--main.go14
-rw-r--r--types.go17
3 files changed, 69 insertions, 0 deletions
diff --git a/handlers.go b/handlers.go
new file mode 100644
index 0000000..ce33716
--- /dev/null
+++ b/handlers.go
@@ -0,0 +1,38 @@
+package main
+
+import (
+	"crypto/sha256"
+	"fmt"
+	"log"
+	"net/http"
+	"time"
+)
+
+const textutf8 = "text/plain; charset=utf8"
+
+func validRequest(fn func(http.ResponseWriter, *http.Request, string)) http.HandlerFunc {
+	return func(w http.ResponseWriter, r *http.Request) {
+		m := confObj.validPath.FindStringSubmatch(r.URL.Path)
+		if m == nil {
+			log.Printf("Invalid API request: %v", r.URL.Path)
+			http.Error(w, fmt.Errorf(r.URL.Path).Error(), http.StatusNotFound)
+			return
+		}
+		fn(w, r, m[2])
+	}
+}
+
+func apiHandler(w http.ResponseWriter, r *http.Request) {
+	timerfc3339, err := time.Now().MarshalText()
+	if err != nil {
+		log.Printf("Couldn't format time as RFC3339: %v\n", err)
+	}
+	etag := fmt.Sprintf("%x", sha256.Sum256(timerfc3339))
+	w.Header().Set("ETag", etag)
+	w.Header().Set("Content-Type", textutf8)
+	timerfc3339 = append(timerfc3339, byte('\n'))
+	n, err := w.Write(timerfc3339)
+	if err != nil || n == 0 {
+		log.Printf("Error writing to HTTP stream: %v\n", err)
+	}
+}
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..7477055
--- /dev/null
+++ b/main.go
@@ -0,0 +1,14 @@
+package main
+
+import (
+	"log"
+	"net/http"
+)
+
+func main() {
+	log.Printf("getwtxt v0.1\n")
+
+	http.HandleFunc("/api", apiHandler)
+
+	log.Fatalln(http.ListenAndServe(":666", nil))
+}
diff --git a/types.go b/types.go
new file mode 100644
index 0000000..a8f027a
--- /dev/null
+++ b/types.go
@@ -0,0 +1,17 @@
+package main
+
+import "regexp"
+
+type configuration struct {
+	port         string
+	validPath    *regexp.Regexp
+	quietLogging bool
+	fileLogging  bool
+	logFile      string
+}
+
+var confObj = &configuration{}
+
+func initConfig() {
+	confObj.validPath = regexp.MustCompile("^/(api)/(plain)/(tweets|users|tags|mentions)")
+}
94'>194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256