mirror of
https://github.com/elyby/chrly.git
synced 2024-11-14 09:16:23 +05:30
04714543b8
Упразднён пакет utils. Удалён обработчик minecraft.php (legacy с самого-самого начала Ely.by) Добавлены тесты для всех api-запросов.
39 lines
935 B
Go
39 lines
935 B
Go
package http
|
|
|
|
import (
|
|
"io"
|
|
"net/http"
|
|
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
func (cfg *Config) Cape(response http.ResponseWriter, request *http.Request) {
|
|
if mux.Vars(request)["converted"] == "" {
|
|
cfg.Logger.IncCounter("capes.request", 1)
|
|
}
|
|
|
|
username := parseUsername(mux.Vars(request)["username"])
|
|
rec, err := cfg.CapesRepo.FindByUsername(username)
|
|
if err != nil {
|
|
http.Redirect(response, request, "http://skins.minecraft.net/MinecraftCloaks/" + username + ".png", 301)
|
|
return
|
|
}
|
|
|
|
request.Header.Set("Content-Type", "image/png")
|
|
io.Copy(response, rec.File)
|
|
}
|
|
|
|
func (cfg *Config) CapeGET(response http.ResponseWriter, request *http.Request) {
|
|
cfg.Logger.IncCounter("capes.get_request", 1)
|
|
username := request.URL.Query().Get("name")
|
|
if username == "" {
|
|
response.WriteHeader(http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
mux.Vars(request)["username"] = username
|
|
mux.Vars(request)["converted"] = "1"
|
|
|
|
cfg.Cape(response, request)
|
|
}
|