Documentation ¶
Index ¶
- Constants
- func Asset(name string) ([]byte, error)
- func AssetDir(name string) ([]string, error)
- func AssetInfo(name string) (os.FileInfo, error)
- func AssetNames() []string
- func Error(w http.ResponseWriter, r *http.Request, err error)
- func ErrorStatusCode(err error) int
- func FromContext(ctx context.Context) io.Writer
- func MustAsset(name string) []byte
- func NewContext(ctx context.Context, logOutput io.Writer) context.Context
- func RestoreAsset(dir, name string) error
- func RestoreAssets(dir, name string) error
- type Server
Constants ¶
const ( ErrNotAcceptable = peapod.Error("not acceptable") ErrAssetNotFound = peapod.Error("asset not found") )
const ( ErrTwilioAccountMismatch = peapod.Error("twilio account mismatch") ErrInvalidSMSRequestBody = peapod.Error("invalid sms request body") )
const (
ErrTTSTextRequired = peapod.Error("tts text required")
)
Variables ¶
This section is empty.
Functions ¶
func Asset ¶
Asset loads and returns the asset for the given name. It returns an error if the asset could not be found or could not be loaded.
func AssetDir ¶
AssetDir returns the file names below a certain directory embedded in the file by go-bindata. For example if you run go-bindata on data/... and data contains the following hierarchy:
data/ foo.txt img/ a.png b.png
then AssetDir("data") would return []string{"foo.txt", "img"} AssetDir("data/img") would return []string{"a.png", "b.png"} AssetDir("foo.txt") and AssetDir("notexist") would return an error AssetDir("") will return []string{"data"}.
func AssetInfo ¶
AssetInfo loads and returns the asset info for the given name. It returns an error if the asset could not be found or could not be loaded.
func Error ¶
func Error(w http.ResponseWriter, r *http.Request, err error)
Error writes an error reponse to the writer.
func ErrorStatusCode ¶
ErrorStatusCode returns the HTTP status code for an error object.
func FromContext ¶
FromContext returns the log output stored in ctx, if any.
func MustAsset ¶
MustAsset is like Asset but panics when Asset would return an error. It simplifies safe initialization of global variables.
func NewContext ¶
NewContext returns a new Context that carries the log output.
func RestoreAsset ¶
RestoreAsset restores an asset under the given directory
func RestoreAssets ¶
RestoreAssets restores an asset under the given directory recursively
Types ¶
type Server ¶
type Server struct { // Services FileService peapod.FileService JobService peapod.JobService PlaylistService peapod.PlaylistService SMSService peapod.SMSService TrackService peapod.TrackService UserService peapod.UserService // Server options. Addr string // bind address Host string // external hostname Autocert bool // ACME autocert Recoverable bool // panic recovery // Twilio specific options. Twilio struct { AccountSID string // twilio account number } LogOutput io.Writer // contains filtered or unexported fields }
Server represents an HTTP server.