1
4
mirror of https://github.com/yunginnanet/HellPot synced 2024-06-30 17:50:53 +00:00
HellPot/http/robots.go

27 lines
480 B
Go

package http
import (
"fmt"
"github.com/valyala/fasthttp"
"github.com/yunginnanet/HellPot/config"
)
const robotsTxt = "User-agent: *\r\n"
func robotsTXT(ctx *fasthttp.RequestCtx) {
var paths string
for _, p := range config.Paths {
paths = paths + "Disallow: " + p + "\r\n"
}
log.Debug().
Strs("PATHS", config.Paths).
Msg("SERVE_ROBOTS")
if _, err := fmt.Fprintf(ctx, robotsTxt+paths+"\r\n"); err != nil {
log.Error().Err(err).Msg("SERVE_ROBOTS_ERROR")
}
}