Last active
December 23, 2015 17:59
-
-
Save parroty/6672530 to your computer and use it in GitHub Desktop.
Sample for Dynamo and exfireabse.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule ApplicationRouter do | |
use Dynamo.Router | |
filter Dynamo.Filters.MethodOverride | |
prepare do | |
conn = conn.fetch([:cookies, :params]) | |
conn.assign :layout, "main" | |
end | |
@doc "index" | |
get "/" do | |
conn = conn.assign(:items, Repo.Weather.all) | |
render conn, "index.html" | |
end | |
@doc "new" | |
get "/new" do | |
conn = conn.assign(:weather, Weather.new) | |
render conn, "new.html" | |
end | |
@doc "show" | |
get "/:id" do | |
conn = conn.assign(:weather, get_weather_by_id(conn)) | |
render conn, "show.html" | |
end | |
@doc "edit" | |
get "/:id/edit" do | |
conn = conn.assign(:weather, get_weather_by_id(conn)) | |
render conn, "edit.html" | |
end | |
@doc "create" | |
post "/" do | |
params = Dict.get(conn.params, :weather) |> parse_weather | |
Weather.new(params) |> Repo.Weather.create | |
redirect conn, to: "/" | |
end | |
@doc "update" | |
put "/:id" do | |
params = Dict.get(conn.params, :weather) |> parse_weather | |
get_weather_by_id(conn).update(params) |> Repo.Weather.update | |
redirect conn, to: "/" | |
end | |
@doc "destroy" | |
delete "/:id" do | |
get_weather_by_id(conn) |> Repo.Weather.delete | |
redirect conn, to: "/" | |
end | |
defp get_weather_by_id(conn) do | |
Dict.get(conn.params, :id) |> Repo.Weather.get | |
end | |
defp parse_weather(param) do | |
[ | |
city: Dict.get(param, :city), | |
temp_lo: Dict.get(param, :temp_lo) |> binary_to_integer, | |
temp_hi: Dict.get(param, :temp_hi) |> binary_to_integer, | |
prcp: Dict.get(param, :prcp) |> String.to_float |> elem 0 | |
] | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Repo.Weather do | |
alias ExFirebase.Dict | |
@location "dynamo_firebase" | |
def all do | |
Dict.Records.get(@location, Weather) | |
end | |
def get(id) do | |
Dict.Records.get(@location, id, Weather) | |
end | |
def update(weather) do | |
Dict.Records.patch(@location, weather) | |
end | |
def create(weather) do | |
Dict.Records.post(@location, weather) | |
end | |
def delete(weather) do | |
Dict.Records.delete(@location, weather) | |
end | |
end | |
defrecord Weather, id: "", city: "", temp_lo: 0, temp_hi: 0, prcp: 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment