Giter VIP home page Giter VIP logo

ex_ussd's Introduction

ExUssd

Actions Status Hex.pm Hex.pm

Goals:

  • An idiomatic, readable, and comfortable API for Elixir developers
  • Extensibility based on small parts that do one thing well.
  • Detailed error messages and documentation.
  • A focus on robustness and production-level performance.

Why Use ExUssd?

ExUssd lets you create simple, flexible, and customizable USSD interface. Under the hood ExUssd uses Elixir Registry to create and route individual USSD session.

Documentation

The docs can be found at https://hexdocs.pm/ex_ussd

Installation

The package can be installed by adding ex_ussd to your list of dependencies in mix.exs:

defp deps do
  [
    {:ex_ussd, "~> 1.1.0"}
  ]
end

Configuration

Add to your config.exs

# config/config.exs
# TODO: This are example values, replace them with your own
config :ex_ussd,
 nav: [
   ExUssd.Nav.new(type: :home, name: "HOME", match: "00", reverse: true, orientation: :vertical),
   ExUssd.Nav.new(type: :back, name: "BACK", match: "0", right: 1),
   ExUssd.Nav.new(type: :next, name: "MORE", match: "98")
 ],
 delimiter: ").",
 default_error: "invalid input,try again\n"

Usage

ExUssd Callbacks

ExUssd provides you with 3 callbacks

Example

Create a new module:

defmodule ApiWeb.HomeResolver do
  use ExUssd
  
  def ussd_init(menu, _payload) do
    {:ok, ExUssd.set(menu, title: "Enter your PIN")}
  end

  def ussd_callback(menu, payload, %{attempt: %{count: count}}) do
    if payload.text == "5555" do
      menu =
        menu
        |> ExUssd.set(data: %{name: "John"}) # use payload `phone_number` to fetch the user from DB
        |> ExUssd.set(resolve: &home_rc/2)
      {:ok, menu}
    else
      {:error, "Wrong PIN, #{2 - count} attempt left"}
    end
  end

  def ussd_after_callback(%{error: true} = menu, _payload, %{attempt: %{count: 3}}) do
    menu = 
      menu
      |> ExUssd.set(title: "Account is locked, Dial *234# to reset your account")
      |> ExUssd.set(should_close: true)
    {:ok, menu}
  end

  def home_rc(%ExUssd{data: %{name: name}} = menu, _) do
    menu =  
      menu
      |> ExUssd.set(title: "Welcome #{name}!")
      |> ExUssd.add(ExUssd.new(name: "option 1"))
      |> ExUssd.add(ExUssd.new(name: "option 2"))
      |> ExUssd.set(show_navigation: false) # hide navigation options
    {:ok, menu}
  end
end

Contribution

If you'd like to contribute, start by searching through the issues and pull requests to see whether someone else has raised a similar idea or question. If you don't see your idea listed, Open an issue.

Check the Contribution guide on how to contribute.

Contributors

Auto-populated from: contributors-img

Licence

ExUssd is released under Apache License 2.0.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.