defmodule MetaWeb.VirtualMachineHostingController do use MetaWeb, :controller alias Meta.OpenNebula, as: ONE def index(conn, _params) do username = conn.assigns.current_user.username vms = ONE.get_vms_for_user(username) render(conn, "index.html", vms: vms) end # def start(conn, %{"id" => id}) do # case VM.execute(String.to_integer(id), "resume") do # :ok -> # conn # |> put_flash(:info, "Start request sent to VMM.") # |> redirect(to: Routes.virtual_machine_hosting_path(conn, :index)) # {:error, err} -> # conn # |> put_flash(:error, "Something went wrong: #{inspect(err)}") # |> redirect(to: Routes.virtual_machine_hosting_path(conn, :index)) # end # end # # def stop(conn, %{"id" => id}) do # case VM.execute(String.to_integer(id), "poweroff") do # :ok -> # conn # |> put_flash(:stop, "Stop request sent to VMM.") # |> redirect(to: Routes.virtual_machine_hosting_path(conn, :index)) # {:error, err} -> # conn # |> put_flash(:error, "Something went wrong: #{inspect(err)}") # |> redirect(to: Routes.virtual_machine_hosting_path(conn, :index)) # end # end def show(conn, %{"location" => location, "id" => id}) do case ONE.get_vm(location, String.to_integer(id)) do {:error, err} -> conn |> put_flash(:error, "Could not fetch VM details: #{inspect(err)}") |> redirect(to: Routes.virtual_machine_hosting_path(conn, :index)) {:ok, vm} -> owner = vm |> Map.get(:UNAME) |> List.to_string if owner == conn.assigns.current_user.username do conn |> assign(:location, location) |> assign(:vm, vm) |> render("show.html") else conn |> put_flash(:error, "You are not the owner of this machine.") |> redirect(to: Routes.virtual_machine_hosting_path(conn, :index)) end end end end