zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

resolv.ex (2062B)


      1 # Zenflows is designed to implement the Valueflows vocabulary,
      2 # written and maintained by srfsh <info@dyne.org>.
      3 # Copyright (C) 2021-2023 Dyne.org foundation <foundation@dyne.org>.
      4 #
      5 # This program is free software: you can redistribute it and/or modify
      6 # it under the terms of the GNU Affero General Public License as published by
      7 # the Free Software Foundation, either version 3 of the License, or
      8 # (at your option) any later version.
      9 #
     10 # This program is distributed in the hope that it will be useful,
     11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
     12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13 # GNU Affero General Public License for more details.
     14 #
     15 # You should have received a copy of the GNU Affero General Public License
     16 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
     17 
     18 defmodule Zenflows.VF.RecipeResource.Resolv do
     19 @moduledoc false
     20 
     21 alias Zenflows.GQL.Connection
     22 alias Zenflows.VF.RecipeResource.Domain
     23 
     24 def recipe_resource(params, _) do
     25 	Domain.one(params)
     26 end
     27 
     28 def recipe_resources(params, _) do
     29 	with {:ok, page} <- Connection.parse(params),
     30 			{:ok, schemas} <- Domain.all(page) do
     31 		{:ok, Connection.from_list(schemas, page)}
     32 	end
     33 end
     34 
     35 def create_recipe_resource(%{recipe_resource: params}, _) do
     36 	with {:ok, proc_spec} <- Domain.create(params) do
     37 		{:ok, %{recipe_resource: proc_spec}}
     38 	end
     39 end
     40 
     41 def update_recipe_resource(%{recipe_resource: %{id: id} = params}, _) do
     42 	with {:ok, proc_spec} <- Domain.update(id, params) do
     43 		{:ok, %{recipe_resource: proc_spec}}
     44 	end
     45 end
     46 
     47 def delete_recipe_resource(%{id: id}, _) do
     48 	with {:ok, _} <- Domain.delete(id) do
     49 		{:ok, true}
     50 	end
     51 end
     52 
     53 def unit_of_resource(rec_res, _, _) do
     54 	rec_res = Domain.preload(rec_res, :unit_of_resource)
     55 	{:ok, rec_res.unit_of_resource}
     56 end
     57 
     58 def unit_of_effort(rec_res, _, _) do
     59 	rec_res = Domain.preload(rec_res, :unit_of_effort)
     60 	{:ok, rec_res.unit_of_effort}
     61 end
     62 
     63 def resource_conforms_to(rec_res, _, _) do
     64 	rec_res = Domain.preload(rec_res, :resource_conforms_to)
     65 	{:ok, rec_res.resource_conforms_to}
     66 end
     67 end