26 lines
658 B
Elixir
26 lines
658 B
Elixir
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
|
|
field :private, :boolean
|
|
field :secret_token, :string
|
|
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
|
|
end
|