Utilities for a JSON-based API.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Matt Baer 38cdc56928 Add ReqJSON func for determining JSON requests 7 yıl önce
.gitignore Add text editor temp files to gitignore 8 yıl önce
LICENSE Initial commit 8 yıl önce
README.md Add IRC badge to README 8 yıl önce
doc.go Rename impart.go to doc.go 7 yıl önce
errors.go Add func and package comments 7 yıl önce
request.go Add ReqJSON func for determining JSON requests 7 yıl önce
response.go Add WriteRedirect helper func 7 yıl önce

README.md

impart

MIT license #writeas on freenode Public Slack discussion

impart is a library for the final layer between the API and the consumer. It’s used in the latest Write.as and HTMLhouse APIs.

We’re still in the early stages of development, so there may be breaking changes.

Example use

package main

import (
	"fmt"
	"github.com/writeas/impart"
	"net/http"
)

type handlerFunc func(w http.ResponseWriter, r *http.Request) error

func main() {
	http.HandleFunc("/", handle(index))
	http.ListenAndServe("127.0.0.1:8080", nil)
}

func index(w http.ResponseWriter, r *http.Request) error {
	fmt.Fprintf(w, "Hello world!")

	return nil
}

func handle(f handlerFunc) http.HandlerFunc {
	return func(w http.ResponseWriter, r *http.Request) {
		handleError(w, r, func() error {
			// Do authentication...

			// Handle the request
			err := f(w, r)

			// Log the request and result...

			return err
		}())
	}
}

func handleError(w http.ResponseWriter, r *http.Request, err error) {
	if err == nil {
		return
	}

	if err, ok := err.(impart.HTTPError); ok {
		impart.WriteError(w, err)
		return
	}

	impart.WriteError(w, impart.HTTPError{http.StatusInternalServerError, "Internal server error :("})
}