summaryrefslogtreecommitdiff
path: root/finger/response.go
blob: db2dfb04340d884ee3b07773515c27bb00d315fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package finger

import (
	"bytes"
	"io"
	"strings"

	"tildegit.org/tjp/sliderule/internal/types"
)

// Error produces a finger Response containing the error message and Status 1.
func Error(msg string) *types.Response {
	if !strings.HasSuffix(msg, "\r\n") {
		msg += "\r\n"
	}
	return &types.Response{Body: bytes.NewBufferString(msg), Status: 1}
}

// Success produces a finger response with a Status of 0.
func Success(body io.Reader) *types.Response {
	return &types.Response{Body: body}
}