View Source Helpers (LowEndInsight v0.8.1)
Collection of generic helper functions.
Link to this section Summary
Functions
convert_config_to_list/1: takes in Application.get_all_env(:app) and returns a list of maps, to be encoded as JSON. Since JSON doesn't have an equivalent tuple type the libs all bonk on encoding config values.
get_slug/1: extracts the slug from the provided URI argument and returns the path
remove_git_prefix/1: removes the git+ prefix found in some public Git URLs
split_slug/1: splits apart the username and repo from a git slug returning discrete stings.
validate_url/1: validates field is a valid url.
validate_urls/1: validates a list of urls
Link to this section Functions
convert_config_to_list/1: takes in Application.get_all_env(:app) and returns a list of maps, to be encoded as JSON. Since JSON doesn't have an equivalent tuple type the libs all bonk on encoding config values.
@spec count_forward_slashes(String.t()) :: non_neg_integer()
get_slug/1: extracts the slug from the provided URI argument and returns the path
Example
iex(1)> {:ok, slug} = Helpers.get_slug("https://github.com/kitplummer/xmpprails")
{:ok, "kitplummer/xmpprails"}
iex(2)> slug
"kitplummer/xmpprails"
remove_git_prefix/1: removes the git+ prefix found in some public Git URLs
split_slug/1: splits apart the username and repo from a git slug returning discrete stings.
examples
Examples
iex(6)> {:ok, org, repo} = Helpers.split_slug("kitplummer/xmpprails")
{:ok, "kitplummer", "xmpprails"}
iex(7)> org
"kitplummer"
iex(8)> repo
"xmpprails"
validate_url/1: validates field is a valid url.
examples
Examples
iex> "https:://www.url.com"
...> |> Helpers.validate_url()
{:error, "invalid URI path"}
iex> "https://github.com/"
...> |> Helpers.validate_url()
:ok
iex> '"https://"https://www.google.com"'
...> |> Helpers.validate_url()
{:error, "invalid URI"}
iex> "zipbooks.com"
...> |> Helpers.validate_url()
{:error, "invalid URI"}
iex> "https://zipbooks..com"
...> |> Helpers.validate_url()
{:error, "invalid URI host"}
validate_urls/1: validates a list of urls
examples
Examples
iex> ["http://www.google.com","http://www.test.com"]
...> |> Helpers.validate_urls()
:ok
iex> ["https://zipbooks..com", "http://www.test.com"]
...> |> Helpers.validate_urls()
{:error, %{:message => "invalid URI", :urls => ["https://zipbooks..com"]}}
iex> ["https//github.com/kitplummer/xmpp4rails","https://www.zipbooks.com", "http://www.test.com"]
...> |> Helpers.validate_urls()
{:error, %{:message => "invalid URI", :urls => ["https//github.com/kitplummer/xmpp4rails"]}}
iex> "https://zipbooks.com"
...> |> Helpers.validate_urls()
{:error, "invalid URI"}