95 lines
2.6 KiB
Go
95 lines
2.6 KiB
Go
package handlers
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/play-with-docker/play-with-docker/config"
|
|
"github.com/play-with-docker/play-with-docker/pwd/types"
|
|
)
|
|
|
|
func NewPlayground(rw http.ResponseWriter, req *http.Request) {
|
|
if !ValidateToken(req) {
|
|
rw.WriteHeader(http.StatusForbidden)
|
|
return
|
|
}
|
|
|
|
var playground types.Playground
|
|
|
|
err := json.NewDecoder(req.Body).Decode(&playground)
|
|
if err != nil {
|
|
rw.WriteHeader(http.StatusBadRequest)
|
|
fmt.Fprintf(rw, "Error creating playground. Got: %v", err)
|
|
return
|
|
}
|
|
|
|
newPlayground, err := core.PlaygroundNew(playground)
|
|
if err != nil {
|
|
rw.WriteHeader(http.StatusBadRequest)
|
|
fmt.Fprintf(rw, "Error creating playground. Got: %v", err)
|
|
return
|
|
}
|
|
|
|
json.NewEncoder(rw).Encode(newPlayground)
|
|
}
|
|
|
|
func ListPlaygrounds(rw http.ResponseWriter, req *http.Request) {
|
|
if !ValidateToken(req) {
|
|
rw.WriteHeader(http.StatusForbidden)
|
|
return
|
|
}
|
|
|
|
playgrounds, err := core.PlaygroundList()
|
|
if err != nil {
|
|
log.Printf("Error listing playgrounds. Got: %v\n", err)
|
|
rw.WriteHeader(http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
json.NewEncoder(rw).Encode(playgrounds)
|
|
}
|
|
|
|
type PlaygroundConfigurationResponse struct {
|
|
Id string `json:"id"`
|
|
Domain string `json:"domain"`
|
|
DefaultDinDInstanceImage string `json:"default_dind_instance_image"`
|
|
AvailableDinDInstanceImages []string `json:"available_dind_instance_images"`
|
|
AllowWindowsInstances bool `json:"allow_windows_instances"`
|
|
DefaultSessionDuration time.Duration `json:"default_session_duration"`
|
|
DindVolumeSize string `json:"dind_volume_size"`
|
|
}
|
|
|
|
func GetCurrentPlayground(rw http.ResponseWriter, req *http.Request) {
|
|
playground := core.PlaygroundFindByDomain(req.Host)
|
|
if playground == nil {
|
|
log.Printf("Playground for domain %s was not found!", req.Host)
|
|
rw.WriteHeader(http.StatusBadRequest)
|
|
return
|
|
}
|
|
json.NewEncoder(rw).Encode(PlaygroundConfigurationResponse{
|
|
Id: playground.Id,
|
|
Domain: playground.Domain,
|
|
DefaultDinDInstanceImage: playground.DefaultDinDInstanceImage,
|
|
AvailableDinDInstanceImages: playground.AvailableDinDInstanceImages,
|
|
AllowWindowsInstances: playground.AllowWindowsInstances,
|
|
DefaultSessionDuration: playground.DefaultSessionDuration,
|
|
DindVolumeSize: playground.DindVolumeSize,
|
|
})
|
|
}
|
|
|
|
func ValidateToken(req *http.Request) bool {
|
|
_, password, ok := req.BasicAuth()
|
|
if !ok {
|
|
return false
|
|
}
|
|
|
|
if password != config.AdminToken {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|