zf

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

resolv.ex (2811B)


      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.Intent.Resolv do
     19 @moduledoc false
     20 
     21 alias Zenflows.GQL.Connection
     22 alias Zenflows.VF.Intent.Domain
     23 
     24 def intent(params, _) do
     25 	Domain.one(params)
     26 end
     27 
     28 def intents(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_intent(%{intent: params}, _) do
     36 	with {:ok, int} <- Domain.create(params) do
     37 		{:ok, %{intent: int}}
     38 	end
     39 end
     40 
     41 def update_intent(%{intent: %{id: id} = params}, _) do
     42 	with {:ok, int} <- Domain.update(id, params) do
     43 		{:ok, %{intent: int}}
     44 	end
     45 end
     46 
     47 def delete_intent(%{id: id}, _) do
     48 	with {:ok, _} <- Domain.delete(id) do
     49 		{:ok, true}
     50 	end
     51 end
     52 
     53 def action(int, _, _) do
     54 	int = Domain.preload(int, :action)
     55 	{:ok, int.action}
     56 end
     57 
     58 def input_of(int, _, _) do
     59 	int = Domain.preload(int, :input_of)
     60 	{:ok, int.input_of}
     61 end
     62 
     63 def output_of(int, _, _) do
     64 	int = Domain.preload(int, :output_of)
     65 	{:ok, int.output_of}
     66 end
     67 
     68 def provider(int, _, _) do
     69 	int = Domain.preload(int, :provider)
     70 	{:ok, int.provider}
     71 end
     72 
     73 def receiver(int, _, _) do
     74 	int = Domain.preload(int, :receiver)
     75 	{:ok, int.receiver}
     76 end
     77 
     78 def resource_inventoried_as(int, _, _) do
     79 	int = Domain.preload(int, :resource_inventoried_as)
     80 	{:ok, int.resource_inventoried_as}
     81 end
     82 
     83 def resource_conforms_to(int, _, _) do
     84 	int = Domain.preload(int, :resource_conforms_to)
     85 	{:ok, int.resource_conforms_to}
     86 end
     87 
     88 def resource_quantity(int, _, _) do
     89 	int = Domain.preload(int, :resource_quantity)
     90 	{:ok, int.resource_quantity}
     91 end
     92 
     93 def effort_quantity(int, _, _) do
     94 	int = Domain.preload(int, :effort_quantity)
     95 	{:ok, int.effort_quantity}
     96 end
     97 
     98 def available_quantity(int, _, _) do
     99 	int = Domain.preload(int, :available_quantity)
    100 	{:ok, int.available_quantity}
    101 end
    102 
    103 def at_location(int, _, _) do
    104 	int = Domain.preload(int, :at_location)
    105 	{:ok, int.at_location}
    106 end
    107 
    108 def published_in(int, _, _) do
    109 	int = Domain.preload(int, :published_in)
    110 	{:ok, int.published_in}
    111 end
    112 end