450 lines
12 KiB
Go
450 lines
12 KiB
Go
package main
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo"
|
|
"github.com/rosti-cz/node-api/apps"
|
|
"github.com/rosti-cz/node-api/docker"
|
|
"github.com/rosti-cz/node-api/node"
|
|
)
|
|
|
|
func homeHandler(c echo.Context) error {
|
|
return c.Render(http.StatusOK, "index.html", templateData{
|
|
Token: configuredToken,
|
|
})
|
|
}
|
|
|
|
func listAppsHandler(c echo.Context) error {
|
|
err := gatherStates()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
applications, err := apps.List()
|
|
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, applications)
|
|
}
|
|
|
|
// Returns one app
|
|
func getAppHandler(c echo.Context) error {
|
|
name := c.Param("name")
|
|
|
|
err := updateState(name)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
app, err := apps.Get(name)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
app, err = apps.Get(name)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, app)
|
|
}
|
|
|
|
// Create a new app
|
|
// If you add register_only=1 into query string, it won't start or create any container, just adds record into the database.
|
|
func createAppHandler(c echo.Context) error {
|
|
registerOnly := c.QueryParam("register_only") == "1"
|
|
|
|
app := apps.App{}
|
|
err := c.Bind(&app)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusBadRequest, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
err = apps.New(app.Name, app.SSHPort, app.HTTPPort, app.Image, app.CPU, app.Memory)
|
|
if err != nil {
|
|
if validationError, ok := err.(apps.ValidationError); ok {
|
|
return c.JSONPretty(http.StatusBadRequest, Message{Errors: validationError.Errors}, JSONIndent)
|
|
}
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
if !registerOnly {
|
|
container := docker.Container{
|
|
App: &app,
|
|
}
|
|
|
|
err = container.Create()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
err = container.Start()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, Message{Message: "ok"})
|
|
}
|
|
|
|
// Update existing app
|
|
func updateAppHandler(c echo.Context) error {
|
|
name := c.Param("name")
|
|
|
|
app := apps.App{}
|
|
err := c.Bind(&app)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusBadRequest, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
appPointer, err := apps.Update(name, app.SSHPort, app.HTTPPort, app.Image, app.CPU, app.Memory)
|
|
if err != nil {
|
|
if validationError, ok := err.(apps.ValidationError); ok {
|
|
return c.JSONPretty(http.StatusBadRequest, Message{Errors: validationError.Errors}, JSONIndent)
|
|
}
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
app = *appPointer
|
|
|
|
container := docker.Container{
|
|
App: &app,
|
|
}
|
|
|
|
err = container.Destroy()
|
|
if err != nil && err.Error() == "no container found" {
|
|
// We don't care if the container didn't exist anyway
|
|
err = nil
|
|
}
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
err = container.Create()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
err = container.Start()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, Message{Message: "ok"})
|
|
}
|
|
|
|
// Stop existing app
|
|
func stopAppHandler(c echo.Context) error {
|
|
name := c.Param("name")
|
|
|
|
app, err := apps.Get(name)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
container := docker.Container{
|
|
App: app,
|
|
}
|
|
|
|
err = container.Stop()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, Message{Message: "ok"})
|
|
}
|
|
|
|
// Start existing app
|
|
func startAppHandler(c echo.Context) error {
|
|
name := c.Param("name")
|
|
|
|
app, err := apps.Get(name)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
container := docker.Container{
|
|
App: app,
|
|
}
|
|
|
|
err = container.Start()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, Message{Message: "ok"})
|
|
}
|
|
|
|
// Stop existing app
|
|
func restartAppHandler(c echo.Context) error {
|
|
name := c.Param("name")
|
|
|
|
app, err := apps.Get(name)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
container := docker.Container{
|
|
App: app,
|
|
}
|
|
|
|
err = container.Restart()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, Message{Message: "ok"})
|
|
}
|
|
|
|
// Set password for the app user in the container
|
|
func setPasswordHandler(c echo.Context) error {
|
|
name := c.Param("name")
|
|
|
|
password := Password{}
|
|
err := c.Bind(&password)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
app, err := apps.Get(name)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
container := docker.Container{
|
|
App: app,
|
|
}
|
|
|
|
err = container.SetPassword(password.Password)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, Message{Message: "ok"})
|
|
}
|
|
|
|
// Copies body of the request into /srv/.ssh/authorized_keys
|
|
func setKeysHandler(c echo.Context) error {
|
|
name := c.Param("name")
|
|
|
|
body, err := ioutil.ReadAll(c.Request().Body)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
app, err := apps.Get(name)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
container := docker.Container{
|
|
App: app,
|
|
}
|
|
|
|
err = container.SetFileContent(sshPubKeysLocation, string(body)+"\n", "0600")
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, Message{Message: "ok"})
|
|
}
|
|
|
|
func setServicesHandler(c echo.Context) error {
|
|
name := c.Param("name")
|
|
|
|
quickServices := &QuickServices{}
|
|
err := c.Bind(quickServices)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusBadRequest, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
app, err := apps.Get(name)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
container := docker.Container{
|
|
App: app,
|
|
}
|
|
|
|
if quickServices.Python {
|
|
err = container.SetTechnology("python")
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
}
|
|
|
|
if quickServices.PHP {
|
|
err = container.SetTechnology("php")
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
}
|
|
|
|
if quickServices.Node {
|
|
err = container.SetTechnology("node")
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
}
|
|
|
|
if quickServices.Memcached {
|
|
err = container.SetTechnology("memcached")
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
}
|
|
|
|
if quickServices.Redis {
|
|
err = container.SetTechnology("redis")
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, Message{Message: "ok"})
|
|
}
|
|
|
|
// Rebuilds existing app, it keeps the data but created the container again
|
|
func rebuildAppHandler(c echo.Context) error {
|
|
name := c.Param("name")
|
|
|
|
app, err := apps.Get(name)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
container := docker.Container{
|
|
App: app,
|
|
}
|
|
|
|
err = container.Destroy()
|
|
if err != nil && err.Error() == "no container found" {
|
|
// We don't care if the container didn't exist anyway
|
|
err = nil
|
|
}
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
err = container.Create()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
err = container.Start()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, Message{Message: "ok"})
|
|
}
|
|
|
|
// Adds new label
|
|
func addLabelHandler(c echo.Context) error {
|
|
name := c.Param("name")
|
|
label := apps.Label{}
|
|
|
|
err := c.Bind(&label)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusBadRequest, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
err = apps.AddLabel(name, label.Value)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, Message{Message: "ok"})
|
|
}
|
|
|
|
// Removes existing label
|
|
func deleteLabelHandler(c echo.Context) error {
|
|
name := c.Param("name")
|
|
label := apps.Label{}
|
|
|
|
err := c.Bind(&label)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusBadRequest, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
err = apps.RemoveLabel(name, label.Value)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, Message{Message: "ok"})
|
|
}
|
|
|
|
// Delete one app
|
|
func deleteAppHandler(c echo.Context) error {
|
|
name := c.Param("name")
|
|
|
|
app, err := apps.Get(name)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
container := docker.Container{
|
|
App: app,
|
|
}
|
|
|
|
status, err := container.Status()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
if status != "no-container" {
|
|
err = container.Delete()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
}
|
|
|
|
err = apps.Delete(name)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, Message{Message: "deleted"})
|
|
}
|
|
|
|
// Orphans returns directories in /srv that doesn't match any hosted application
|
|
func getOrphansHander(c echo.Context) error {
|
|
return c.JSON(http.StatusOK, []string{})
|
|
}
|
|
|
|
// Return info about the node including performance index
|
|
func getNodeInfoHandler(c echo.Context) error {
|
|
node, err := node.GetNodeInfo()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, node)
|
|
}
|
|
|
|
// Returns list of running processes (inside supervisor)
|
|
func getAppProcessesHandler(c echo.Context) error {
|
|
name := c.Param("name")
|
|
|
|
app, err := apps.Get(name)
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
container := docker.Container{
|
|
App: app,
|
|
}
|
|
|
|
processes, err := container.GetProcessList()
|
|
if err != nil {
|
|
return c.JSONPretty(http.StatusInternalServerError, Message{Message: err.Error()}, JSONIndent)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, processes)
|
|
}
|