2021-04-08 17:41:52 +08:00
|
|
|
defmodule LivebookCLI.Server do
|
|
|
|
@moduledoc false
|
|
|
|
|
|
|
|
@behaviour LivebookCLI.Task
|
2021-04-27 22:34:02 +08:00
|
|
|
|
2021-04-15 21:50:29 +08:00
|
|
|
@external_resource "README.md"
|
|
|
|
|
|
|
|
[_, environment_variables, _] =
|
|
|
|
"README.md"
|
|
|
|
|> File.read!()
|
|
|
|
|> String.split("<!-- Environment variables -->")
|
|
|
|
|
|
|
|
@environment_variables String.trim(environment_variables)
|
2021-04-08 17:41:52 +08:00
|
|
|
|
|
|
|
@impl true
|
|
|
|
def usage() do
|
|
|
|
"""
|
2022-01-31 01:58:09 +08:00
|
|
|
Usage: livebook server [options] [open-command]
|
2021-04-08 17:41:52 +08:00
|
|
|
|
2022-01-31 01:36:30 +08:00
|
|
|
An optional open-command can be given as argument. It will open
|
|
|
|
up a browser window according these rules:
|
2022-01-29 17:36:32 +08:00
|
|
|
|
2022-01-31 01:36:30 +08:00
|
|
|
* If the open-command is "new", the browser window will point
|
|
|
|
to a new notebook
|
|
|
|
|
|
|
|
* If the open-command is a URL, the notebook at the given URL
|
|
|
|
will be imported
|
|
|
|
|
2022-02-04 03:26:18 +08:00
|
|
|
* If the open-command is a directory, the browser window will point
|
|
|
|
to the home page with the directory selected
|
|
|
|
|
|
|
|
* If the open-command is a notebook file, the browser window will point
|
|
|
|
to the opened notebook
|
|
|
|
|
2022-01-31 01:36:30 +08:00
|
|
|
The open-command runs after the server is started. If a server is
|
|
|
|
already running, the browser window will point to the server
|
|
|
|
currently running.
|
2022-01-29 17:36:32 +08:00
|
|
|
|
|
|
|
## Available options
|
2021-04-08 17:41:52 +08:00
|
|
|
|
2021-06-09 22:24:02 +08:00
|
|
|
--cookie Sets a cookie for the app distributed node
|
2022-01-31 18:51:57 +08:00
|
|
|
--data-path The directory to store Livebook configuration,
|
|
|
|
defaults to "livebook" under the default user data directory
|
2021-06-09 22:24:02 +08:00
|
|
|
--default-runtime Sets the runtime type that is used by default when none is started
|
|
|
|
explicitly for the given notebook, defaults to standalone
|
|
|
|
Supported options:
|
|
|
|
* standalone - Elixir standalone
|
2021-06-25 00:03:00 +08:00
|
|
|
* mix[:PATH] - Mix standalone
|
|
|
|
* attached:NODE:COOKIE - Attached
|
2021-06-09 22:24:02 +08:00
|
|
|
* embedded - Embedded
|
2022-01-31 18:51:57 +08:00
|
|
|
--home The home path for the Livebook instance
|
2021-06-09 22:24:02 +08:00
|
|
|
--ip The ip address to start the web application on, defaults to 127.0.0.1
|
|
|
|
Must be a valid IPv4 or IPv6 address
|
|
|
|
--name Set a name for the app distributed node
|
|
|
|
--no-token Disable token authentication, enabled by default
|
|
|
|
If LIVEBOOK_PASSWORD is set, it takes precedence over token auth
|
|
|
|
-p, --port The port to start the web application on, defaults to 8080
|
|
|
|
--sname Set a short name for the app distributed node
|
2021-04-15 21:50:29 +08:00
|
|
|
|
|
|
|
The --help option can be given to print this notice.
|
|
|
|
|
|
|
|
## Environment variables
|
|
|
|
|
|
|
|
#{@environment_variables}
|
2021-04-08 17:41:52 +08:00
|
|
|
|
2022-01-31 01:36:30 +08:00
|
|
|
## Examples
|
|
|
|
|
|
|
|
Starts a server:
|
|
|
|
|
|
|
|
livebook server
|
|
|
|
|
|
|
|
Starts a server and opens up a browser at a new notebook:
|
|
|
|
|
|
|
|
livebook server new
|
|
|
|
|
|
|
|
Starts a server and imports the notebook at the given URL:
|
|
|
|
|
|
|
|
livebook server https://example.com/my-notebook.livemd
|
|
|
|
|
2021-04-08 17:41:52 +08:00
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def call(args) do
|
2022-01-29 17:36:32 +08:00
|
|
|
{opts, extra_args} = args_to_options(args)
|
2021-07-01 18:17:49 +08:00
|
|
|
config_entries = opts_to_config(opts, [])
|
2021-04-08 17:41:52 +08:00
|
|
|
put_config_entries(config_entries)
|
|
|
|
|
2022-02-08 21:45:58 +08:00
|
|
|
case Livebook.Config.port() do
|
|
|
|
0 ->
|
|
|
|
# When a random port is configured, we can assume no collision
|
|
|
|
start_server(extra_args)
|
|
|
|
|
|
|
|
port ->
|
|
|
|
base_url = "http://localhost:#{port}"
|
|
|
|
|
|
|
|
case check_endpoint_availability(base_url) do
|
|
|
|
:livebook_running ->
|
|
|
|
IO.puts("Livebook already running on #{base_url}")
|
|
|
|
open_from_args(base_url, extra_args)
|
|
|
|
|
|
|
|
:taken ->
|
|
|
|
print_error(
|
|
|
|
"Another application is already running on port #{port}." <>
|
|
|
|
" Either ensure this port is free or specify a different port using the --port option"
|
|
|
|
)
|
|
|
|
|
|
|
|
:available ->
|
|
|
|
start_server(extra_args)
|
2021-07-01 18:17:49 +08:00
|
|
|
end
|
2021-04-08 17:41:52 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-02-08 21:45:58 +08:00
|
|
|
defp start_server(extra_args) do
|
|
|
|
# We configure the endpoint with `server: true`,
|
|
|
|
# so it's gonna start listening
|
|
|
|
case Application.ensure_all_started(:livebook) do
|
|
|
|
{:ok, _} ->
|
|
|
|
open_from_args(LivebookWeb.Endpoint.access_url(), extra_args)
|
|
|
|
Process.sleep(:infinity)
|
|
|
|
|
|
|
|
{:error, error} ->
|
|
|
|
print_error("Livebook failed to start with reason: #{inspect(error)}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-04-08 17:41:52 +08:00
|
|
|
# Takes a list of {app, key, value} config entries
|
|
|
|
# and overrides the current applications' configuration accordingly.
|
|
|
|
# Multiple values for the same key are deeply merged (provided they are keyword lists).
|
|
|
|
defp put_config_entries(config_entries) do
|
|
|
|
config_entries
|
|
|
|
|> Enum.reduce([], fn {app, key, value}, acc ->
|
|
|
|
acc = Keyword.put_new_lazy(acc, app, fn -> Application.get_all_env(app) end)
|
|
|
|
Config.Reader.merge(acc, [{app, [{key, value}]}])
|
|
|
|
end)
|
|
|
|
|> Application.put_all_env(persistent: true)
|
|
|
|
end
|
|
|
|
|
2021-08-31 05:23:05 +08:00
|
|
|
defp check_endpoint_availability(base_url) do
|
|
|
|
Application.ensure_all_started(:inets)
|
|
|
|
|
2022-02-04 00:48:16 +08:00
|
|
|
health_url = append_path(base_url, "/public/health")
|
2021-08-31 05:23:05 +08:00
|
|
|
|
|
|
|
case Livebook.Utils.HTTP.request(:get, health_url) do
|
|
|
|
{:ok, status, _headers, body} ->
|
|
|
|
with 200 <- status,
|
|
|
|
{:ok, body} <- Jason.decode(body),
|
|
|
|
%{"application" => "livebook"} <- body do
|
|
|
|
:livebook_running
|
|
|
|
else
|
|
|
|
_ -> :taken
|
|
|
|
end
|
|
|
|
|
|
|
|
{:error, _error} ->
|
|
|
|
:available
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-02-19 00:27:36 +08:00
|
|
|
defp open_from_args(_base_url, []) do
|
|
|
|
:ok
|
2022-01-31 01:36:30 +08:00
|
|
|
end
|
2021-08-31 05:23:05 +08:00
|
|
|
|
2022-02-04 03:26:18 +08:00
|
|
|
defp open_from_args(base_url, ["new"]) do
|
2022-01-31 01:36:30 +08:00
|
|
|
base_url
|
|
|
|
|> append_path("/explore/notebooks/new")
|
|
|
|
|> Livebook.Utils.browser_open()
|
2021-08-31 05:23:05 +08:00
|
|
|
end
|
|
|
|
|
2022-02-04 03:26:18 +08:00
|
|
|
defp open_from_args(base_url, [url_or_file_or_dir]) do
|
|
|
|
url = URI.parse(url_or_file_or_dir)
|
2022-02-04 06:43:47 +08:00
|
|
|
path = Path.expand(url_or_file_or_dir)
|
2022-02-04 03:26:18 +08:00
|
|
|
|
|
|
|
cond do
|
|
|
|
url.scheme in ~w(http https file) ->
|
|
|
|
base_url
|
|
|
|
|> Livebook.Utils.notebook_import_url(url_or_file_or_dir)
|
|
|
|
|> Livebook.Utils.browser_open()
|
|
|
|
|
2022-02-04 06:43:47 +08:00
|
|
|
File.regular?(path) ->
|
2022-02-04 03:26:18 +08:00
|
|
|
base_url
|
2022-02-07 20:39:23 +08:00
|
|
|
|> Livebook.Utils.notebook_open_url(url_or_file_or_dir)
|
2022-02-04 03:26:18 +08:00
|
|
|
|> Livebook.Utils.browser_open()
|
|
|
|
|
2022-02-04 06:43:47 +08:00
|
|
|
File.dir?(path) ->
|
2022-02-04 03:26:18 +08:00
|
|
|
base_url
|
2022-02-04 06:43:47 +08:00
|
|
|
|> update_query(%{"path" => path})
|
2022-02-04 03:26:18 +08:00
|
|
|
|> Livebook.Utils.browser_open()
|
|
|
|
|
|
|
|
true ->
|
|
|
|
Livebook.Utils.browser_open(base_url)
|
|
|
|
end
|
2022-01-29 17:36:32 +08:00
|
|
|
end
|
|
|
|
|
2022-02-04 03:26:18 +08:00
|
|
|
defp open_from_args(_base_url, _extra_args) do
|
2022-01-29 17:36:32 +08:00
|
|
|
print_error(
|
|
|
|
"Too many arguments entered. Ensure only one argument is used to specify the file path and all other arguments are preceded by the relevant switch"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2021-04-20 01:50:09 +08:00
|
|
|
@switches [
|
2022-01-31 18:51:57 +08:00
|
|
|
data_path: :string,
|
2021-04-27 22:34:02 +08:00
|
|
|
cookie: :string,
|
2021-06-09 22:24:02 +08:00
|
|
|
default_runtime: :string,
|
2021-04-27 22:34:02 +08:00
|
|
|
ip: :string,
|
2021-04-20 01:50:09 +08:00
|
|
|
name: :string,
|
2021-04-27 22:34:02 +08:00
|
|
|
port: :integer,
|
2022-01-31 18:51:57 +08:00
|
|
|
home: :string,
|
2021-04-20 01:50:09 +08:00
|
|
|
sname: :string,
|
2021-04-27 22:34:02 +08:00
|
|
|
token: :boolean
|
2021-04-20 01:50:09 +08:00
|
|
|
]
|
|
|
|
|
|
|
|
@aliases [
|
|
|
|
p: :port
|
|
|
|
]
|
2021-04-08 17:41:52 +08:00
|
|
|
|
2021-07-01 18:17:49 +08:00
|
|
|
defp args_to_options(args) do
|
2022-01-29 17:36:32 +08:00
|
|
|
{opts, extra_args} = OptionParser.parse!(args, strict: @switches, aliases: @aliases)
|
2021-04-08 17:41:52 +08:00
|
|
|
validate_options!(opts)
|
2022-01-29 17:36:32 +08:00
|
|
|
{opts, extra_args}
|
2021-04-08 17:41:52 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
defp validate_options!(opts) do
|
|
|
|
if Keyword.has_key?(opts, :name) and Keyword.has_key?(opts, :sname) do
|
|
|
|
raise "the provided --sname and --name options are mutually exclusive, please specify only one of them"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp opts_to_config([], config), do: config
|
|
|
|
|
2021-04-15 21:50:29 +08:00
|
|
|
defp opts_to_config([{:token, false} | opts], config) do
|
|
|
|
if Livebook.Config.auth_mode() == :token do
|
|
|
|
opts_to_config(opts, [{:livebook, :authentication_mode, :disabled} | config])
|
|
|
|
else
|
|
|
|
opts_to_config(opts, config)
|
|
|
|
end
|
2021-04-08 17:41:52 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
defp opts_to_config([{:port, port} | opts], config) do
|
|
|
|
opts_to_config(opts, [{:livebook, LivebookWeb.Endpoint, http: [port: port]} | config])
|
|
|
|
end
|
|
|
|
|
2021-04-27 22:34:02 +08:00
|
|
|
defp opts_to_config([{:ip, ip} | opts], config) do
|
|
|
|
ip = Livebook.Config.ip!("--ip", ip)
|
|
|
|
opts_to_config(opts, [{:livebook, LivebookWeb.Endpoint, http: [ip: ip]} | config])
|
|
|
|
end
|
|
|
|
|
2022-01-31 18:51:57 +08:00
|
|
|
defp opts_to_config([{:home, home} | opts], config) do
|
|
|
|
home = Livebook.Config.writable_dir!("--home", home)
|
|
|
|
opts_to_config(opts, [{:livebook, :home, home} | config])
|
2021-04-20 01:50:09 +08:00
|
|
|
end
|
|
|
|
|
2021-04-08 17:41:52 +08:00
|
|
|
defp opts_to_config([{:sname, sname} | opts], config) do
|
|
|
|
sname = String.to_atom(sname)
|
|
|
|
opts_to_config(opts, [{:livebook, :node, {:shortnames, sname}} | config])
|
|
|
|
end
|
|
|
|
|
|
|
|
defp opts_to_config([{:name, name} | opts], config) do
|
|
|
|
name = String.to_atom(name)
|
|
|
|
opts_to_config(opts, [{:livebook, :node, {:longnames, name}} | config])
|
|
|
|
end
|
|
|
|
|
2021-04-27 22:34:02 +08:00
|
|
|
defp opts_to_config([{:cookie, cookie} | opts], config) do
|
|
|
|
cookie = String.to_atom(cookie)
|
|
|
|
opts_to_config(opts, [{:livebook, :cookie, cookie} | config])
|
|
|
|
end
|
|
|
|
|
2021-06-09 22:24:02 +08:00
|
|
|
defp opts_to_config([{:default_runtime, default_runtime} | opts], config) do
|
|
|
|
default_runtime = Livebook.Config.default_runtime!("--default-runtime", default_runtime)
|
|
|
|
opts_to_config(opts, [{:livebook, :default_runtime, default_runtime} | config])
|
|
|
|
end
|
|
|
|
|
2022-01-31 18:51:57 +08:00
|
|
|
defp opts_to_config([{:data_path, path} | opts], config) do
|
|
|
|
data_path = Livebook.Config.writable_dir!("--data-path", path)
|
|
|
|
opts_to_config(opts, [{:livebook, :data_path, data_path} | config])
|
2021-12-04 23:29:14 +08:00
|
|
|
end
|
|
|
|
|
2021-04-08 17:41:52 +08:00
|
|
|
defp opts_to_config([_opt | opts], config), do: opts_to_config(opts, config)
|
2021-07-01 18:17:49 +08:00
|
|
|
|
2021-08-31 05:23:05 +08:00
|
|
|
defp append_path(url, path) do
|
|
|
|
url
|
2021-12-10 03:46:45 +08:00
|
|
|
|> URI.parse()
|
|
|
|
|> Map.update!(:path, &((&1 || "") <> path))
|
2021-08-31 05:23:05 +08:00
|
|
|
|> URI.to_string()
|
|
|
|
end
|
|
|
|
|
2022-02-04 03:26:18 +08:00
|
|
|
defp update_query(url, params) do
|
|
|
|
url
|
|
|
|
|> URI.parse()
|
|
|
|
|> Livebook.Utils.append_query(URI.encode_query(params))
|
|
|
|
|> URI.to_string()
|
|
|
|
end
|
|
|
|
|
2021-08-31 05:23:05 +08:00
|
|
|
defp print_error(message) do
|
|
|
|
IO.ANSI.format([:red, message]) |> IO.puts()
|
|
|
|
end
|
2021-04-08 17:41:52 +08:00
|
|
|
end
|