mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-31 15:21:38 +01:00
803270fc6b
Contribution for Google Summer of code 2016 by Gabriel Gatu
31 lines
877 B
Elixir
31 lines
877 B
Elixir
defmodule Ejabberd.Config.ValidatorUtility do
|
|
@moduledoc """
|
|
Module used as a base validator for validation modules.
|
|
Imports utility functions for working with validation structures.
|
|
"""
|
|
|
|
alias Ejabberd.Config.EjabberdModule
|
|
|
|
@doc """
|
|
Inserts an error inside the errors collection, for the given key.
|
|
If the key doesn't exists then it creates an empty collection
|
|
and inserts the value passed.
|
|
"""
|
|
@spec put_error(map, atom, any) :: map
|
|
def put_error(errors, key, val) do
|
|
Map.update errors, key, [val], fn coll ->
|
|
[val | coll]
|
|
end
|
|
end
|
|
|
|
@doc """
|
|
Given a list of modules it extracts and returns a list
|
|
of the module names (which are Elixir.Module).
|
|
"""
|
|
@spec extract_module_names(EjabberdModule.t) :: [atom]
|
|
def extract_module_names(modules) when is_list(modules) do
|
|
modules
|
|
|> Enum.map(&Map.get(&1, :module))
|
|
end
|
|
end
|