Coder Social home page Coder Social logo

beamkenya / ex_ussd Goto Github PK

View Code? Open in Web Editor NEW
12.0 7.0 5.0 6.03 MB

ExUssd lets you create a simple, flexible, and customizable USSD interface.

Home Page: https://github.com/beamkenya/ex_ussd

License: Other

Elixir 100.00%
ussd infobip africastalking elixir registry

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.

ex_ussd's People

Contributors

kamalogudah avatar lenileiro avatar manuelgeek avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

ex_ussd's Issues

Feature Request: Add Support for zero based menu list

At the moment ExUssd supports one base menu list

example:

 defmodule HomeResolver do
 
    def product_offer(menu, _payload), do: menu |> ExUssd.set(title: "selected product offer")
    def product_a(menu, _payload), do: menu |> ExUssd.set(title: "selected product a")
    def product_b(menu, _payload), do: menu |> ExUssd.set(title: "selected product b")
    def product_c(menu, _payload), do: menu |> ExUssd.set(title: "selected product c")
    
     def products(menu, _payload) do
        menu 
        |> ExUssd.set(title: "Product List")
        |> ExUssd.add(ExUssd.new(name: "Offer", resolve: &product_offer/2))
        |> ExUssd.add(ExUssd.new(name: "Product A", resolve: &product_a/2))
        |> ExUssd.add(ExUssd.new(name: "Product B", resolve: &product_b/2))
        |> ExUssd.add(ExUssd.new(name: "Product C", resolve: &product_c/2))
      end
  end

once you create the menu like so

menu = ExUssd.new(name: "products", resolve: &HomeResolver.products/2)

output:

iex> ExUssd.to_string(menu, [])
{:ok,
 %{
   menu_string: "Product List\n1:Offer\n2:Product A\n3:Product B\n4:Product C",
   should_close: false
 }}

desired output:

iex> ExUssd.to_string(menu, [])
{:ok,
 %{
   menu_string: "Product List\n0:Offer\n1:Product A\n2:Product B\n3:Product C",
   should_close: false
 }}

Ussd Routing

Create Ussd Routing functionality to handle different client sessions

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.