asciinema.org/web/models/asciicast.ex

35 lines
1006 B
Elixir
Raw Normal View History

defmodule Asciinema.Asciicast do
use Asciinema.Web, :model
schema "asciicasts" do
field :version, :integer
field :file, :string
field :stdout_data, :string
field :stdout_timing, :string
2017-05-16 12:54:13 +00:00
field :stdout_frames, :string
field :private, :boolean
field :secret_token, :string
2017-05-21 11:26:41 +00:00
field :duration, :float
end
def by_id_or_secret_token(thing) do
if String.length(thing) == 25 do
from a in __MODULE__, where: a.secret_token == ^thing
else
case Integer.parse(thing) do
{id, ""} ->
from a in __MODULE__, where: a.private == false and a.id == ^id
:error ->
from a in __MODULE__, where: a.id == -1 # TODO fixme
end
end
end
2017-05-16 12:54:13 +00:00
def json_store_path(%__MODULE__{id: id, file: file}) when is_binary(file) do
"asciicast/file/#{id}/#{file}"
end
def json_store_path(%__MODULE__{id: id, stdout_frames: stdout_frames}) when is_binary(stdout_frames) do
"asciicast/stdout_frames/#{id}/#{stdout_frames}"
end
end