summary refs log tree commit diff stats
path: root/handlers.go
blob: ce33716b6cfc4f3f1a5c5308b9bd425a007a1665 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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)
	}
}
n parse/0: ingredient: {name: " 1 <- 4 ", value: 0, type: 0, properties: [" 1 <- 4 ": "literal-string"]} after-brace/0: recipe scenario_with_multiple_comments_in_mu after-brace/0: run ... after-brace/0: memory-should-contain ... new/0: routine allocated memory from 1000 to 101000 schedule/0: scenario_with_multiple_comments_in_mu run/0: instruction scenario_with_multiple_comments_in_mu/0 run/0: run/45 {name: " # comment1 # comment2 1:integer <- add 2:literal, 2:literal ", value: 0, type: 0, properties: [" # comment1 # comment2 1:integer <- add 2:literal, 2:literal ": "literal-string"]} parse/0: instruction: add parse/0: ingredient: {name: "2", value: 0, type: 0, properties: ["2": "literal"]} parse/0: ingredient: {name: "2", value: 0, type: 0, properties: ["2": "literal"]} parse/0: product: {name: "1", value: 0, type: 1, properties: ["1": "integer"]} after-brace/0: recipe run1001 after-brace/0: add ... run/0: instruction run1001/0 run/0: {name: "1", value: 1, type: 1, properties: ["1": "integer"]} <- add/2 {name: "2", value: 2, type: 0, properties: ["2": "literal"]}, {name: "2", value: 2, type: 0, properties: ["2": "literal"]} run/0: ingredient 0 is 2 run/0: ingredient 1 is 2 run/0: product 0 is 4 mem/0: storing 4 in location 1 run/0: instruction scenario_with_multiple_comments_in_mu/1 run/0: memory-should-contain/46 {name: " 1 <- 4 ", value: 0, type: 0, properties: [" 1 <- 4 ": "literal-string"]} run/0: checking location 1