Skip to content

Instantly share code, notes, and snippets.

@nicholasjhenry
Created April 8, 2017 20:45
Show Gist options
  • Save nicholasjhenry/60871f5418abffa6864e79158836618a to your computer and use it in GitHub Desktop.
Save nicholasjhenry/60871f5418abffa6864e79158836618a to your computer and use it in GitHub Desktop.
Awesome Ecto Examples
defmodule MyApp.Projects.Project.Policy do
alias MyApp.System
import Ecto.Query, only: [from: 2]
def scope(%{role: "admin"}, _action, query), do: query
def scope(user, _action, query), do: projects_for_user(query, user)
defp projects_for_user(query, user) do
user_projects =
from project in query,
join: delivery in assoc(project, :deliveries),
join: collaborator in assoc(delivery, :collaborators),
join: user in System.User, on: user.contact_id == collaborator.id,
where: user.id == ^user.id,
select: project.id,
distinct: :id
from project in query,
join: user_project in subquery(user_projects), on: project.id == user_project.id
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment