Created
April 8, 2017 20:45
-
-
Save nicholasjhenry/60871f5418abffa6864e79158836618a to your computer and use it in GitHub Desktop.
Awesome Ecto Examples
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 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