aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2019-12-02 15:31:00 +0100
committerSimon Ser <contact@emersion.fr>2019-12-02 15:31:00 +0100
commita1a067e6de1679d0a3a1503e93bb672432990cd4 (patch)
treed56234ae02077a0bf85bd549ca90301a54d581d4
downloadalps-a1a067e6de1679d0a3a1503e93bb672432990cd4.tar.gz
alps-a1a067e6de1679d0a3a1503e93bb672432990cd4.zip
Add HTTP server boilerplate
-rw-r--r--LICENSE21
-rw-r--r--README.md9
-rw-r--r--cmd/koushin/main.go13
-rw-r--r--go.mod5
-rw-r--r--go.sum34
-rw-r--r--public/foot.html4
-rw-r--r--public/head.html9
-rw-r--r--public/index.html5
-rw-r--r--server.go25
-rw-r--r--template.go24
10 files changed, 149 insertions, 0 deletions
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..9aaa337
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2019 Simon Ser
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f873402
--- /dev/null
+++ b/README.md
@@ -0,0 +1,9 @@
+# koushin
+
+## Usage
+
+ go run ./cmd/koushin
+
+## License
+
+MIT
diff --git a/cmd/koushin/main.go b/cmd/koushin/main.go
new file mode 100644
index 0000000..cc86467
--- /dev/null
+++ b/cmd/koushin/main.go
@@ -0,0 +1,13 @@
+package main
+
+import (
+ "git.sr.ht/~emersion/koushin"
+ "github.com/labstack/echo/v4/middleware"
+)
+
+func main() {
+ e := koushin.New()
+ e.Use(middleware.Logger())
+ e.Use(middleware.Recover())
+ e.Logger.Fatal(e.Start(":1323"))
+}
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..7e8ba30
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,5 @@
+module git.sr.ht/~emersion/koushin
+
+go 1.13
+
+require github.com/labstack/echo/v4 v4.1.11
diff --git a/go.sum b/go.sum
new file mode 100644
index 0000000..470eea7
--- /dev/null
+++ b/go.sum
@@ -0,0 +1,34 @@
+github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
+github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=
+github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
+github.com/labstack/echo v3.3.10+incompatible h1:pGRcYk231ExFAyoAjAfD85kQzRJCRI8bbnE7CX5OEgg=
+github.com/labstack/echo/v4 v4.1.11 h1:z0BZoArY4FqdpUEl+wlHp4hnr/oSR6MTmQmv8OHSoww=
+github.com/labstack/echo/v4 v4.1.11/go.mod h1:i541M3Fj6f76NZtHSj7TXnyM8n2gaodfvfxNnFqi74g=
+github.com/labstack/gommon v0.3.0 h1:JEeO0bvc78PKdyHxloTKiF8BD5iGrH8T6MSeGvSgob0=
+github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k=
+github.com/mattn/go-colorable v0.1.2 h1:/bC9yWikZXAL9uJdulbSfyVNIR3n3trXl+v8+1sx8mU=
+github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=
+github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=
+github.com/mattn/go-isatty v0.0.9 h1:d5US/mDsogSGW37IV293h//ZFaeajb69h+EHFsv2xGg=
+github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ=
+github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
+github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
+github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
+github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
+github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
+github.com/valyala/fasttemplate v1.0.1 h1:tY9CJiPnMXf1ERmG2EyK7gNUd+c6RKGD0IfU8WdUSz8=
+github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8=
+golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
+golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 h1:HuIa8hRrWRSrqYzx1qI49NNxhdi2PrY7gxVSq1JjLDc=
+golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
+golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 h1:0GoQqolDA55aaLxZyTzK/Y2ePZzZTUrRacwib7cNsYQ=
+golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
+golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a h1:aYOabOQFp6Vj6W1F80affTUvO9UxmJRx8K0gsfABByQ=
+golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=
+golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
+gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
+gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
diff --git a/public/foot.html b/public/foot.html
new file mode 100644
index 0000000..d92a512
--- /dev/null
+++ b/public/foot.html
@@ -0,0 +1,4 @@
+{{define "foot"}}
+ </body>
+</html>
+{{end}}
diff --git a/public/head.html b/public/head.html
new file mode 100644
index 0000000..fb8e12a
--- /dev/null
+++ b/public/head.html
@@ -0,0 +1,9 @@
+{{define "head"}}
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <title>koushin</title>
+ </head>
+ <body>
+{{end}}
diff --git a/public/index.html b/public/index.html
new file mode 100644
index 0000000..9dbc3fe
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,5 @@
+{{template "head"}}
+
+<h1>koushin</h1>
+
+{{template "foot"}}
diff --git a/server.go b/server.go
new file mode 100644
index 0000000..21fd0fa
--- /dev/null
+++ b/server.go
@@ -0,0 +1,25 @@
+package koushin
+
+import (
+ "net/http"
+
+ "github.com/labstack/echo/v4"
+)
+
+func New() *echo.Echo {
+ e := echo.New()
+
+ var err error
+ e.Renderer, err = loadTemplates()
+ if err != nil {
+ e.Logger.Fatal("Failed to load templates:", err)
+ }
+
+ e.GET("/", func(c echo.Context) error {
+ return c.Render(http.StatusOK, "index.html", nil)
+ })
+
+ e.Static("/assets", "public/assets")
+
+ return e
+}
diff --git a/template.go b/template.go
new file mode 100644
index 0000000..fae5c7f
--- /dev/null
+++ b/template.go
@@ -0,0 +1,24 @@
+package koushin
+
+import (
+ "fmt"
+ "html/template"
+ "io"
+
+ "github.com/labstack/echo/v4"
+)
+
+type tmpl struct {
+ t *template.Template
+}
+
+var _ = fmt.Printf
+
+func (t *tmpl) Render(w io.Writer, name string, data interface{}, c echo.Context) error {
+ return t.t.ExecuteTemplate(w, name, data)
+}
+
+func loadTemplates() (*tmpl, error) {
+ t, err := template.New("drmdb").ParseGlob("public/*.html")
+ return &tmpl{t}, err
+}