OpenUSSD 1.0.1

Suggested Alternatives

Bobcode.Ussd.Arkesel

Additional Details

Use this package instead

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package OpenUSSD --version 1.0.1
                    
NuGet\Install-Package OpenUSSD -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OpenUSSD" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OpenUSSD" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="OpenUSSD" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add OpenUSSD --version 1.0.1
                    
#r "nuget: OpenUSSD, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package OpenUSSD@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=OpenUSSD&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=OpenUSSD&version=1.0.1
                    
Install as a Cake Tool

OpenUSSD

A modern, strongly-typed .NET SDK for building USSD (Unstructured Supplementary Service Data) applications with ASP.NET Core.

Overview

OpenUSSD simplifies USSD application development by providing a clean, type-safe API with built-in session management, pagination, and navigation support. Build complex USSD flows without magic strings or boilerplate code.

Key Features

  • Strongly-Typed Navigation - Use enums instead of magic strings for menu navigation
  • Fluent Menu Builder - Intuitive API for building hierarchical menu structures
  • Action Handlers - Modular, testable business logic handlers
  • Session Management - Built-in session storage with type-safe session keys
  • Pagination Support - Automatic pagination for long lists
  • Multi-Step Flows - Easy implementation of complex multi-step processes
  • Session Resumption - Allow users to resume interrupted sessions
  • Navigation Commands - Built-in back and home navigation
  • Dependency Injection - Full DI support throughout the SDK
  • Extensible Architecture - Replace session stores, customize behavior

Quick Start

Installation

dotnet add package OpenUSSD

Basic Usage

1. Define Menu Nodes
public enum BankMenuNode
{
    Main,
    CheckBalance,
    Transfer,
    TransferRecipient,
    TransferAmount,
    TransferConfirm
}
2. Build Menu Structure
var menu = new UssdMenuBuilder<BankMenuNode>("bank")
    .Root(BankMenuNode.Main)

    .Page(BankMenuNode.Main, n => n
        .Title("Welcome to Demo Bank")
        .Option("1", "Check Balance").Action<BalanceCheckHandler>()
        .Option("2", "Transfer Money").GoTo(BankMenuNode.TransferRecipient)
    )

    .Title(BankMenuNode.TransferRecipient, n => n
        .Message("Enter recipient phone number:")
        .Input().Action<TransferRecipientHandler>()
    )

    .Build();
3. Configure Services
var builder = WebApplication.CreateBuilder(args);

builder.Services.AddUssdSdk(menu, options =>
{
    options.SessionTimeout = TimeSpan.FromMinutes(5);
    options.BackCommand = "0";
    options.HomeCommand = "#";
    options.EnablePagination = true;
    options.ItemsPerPage = 5;
    options.EnableSessionResumption = true;
});

builder.Services.AddUssdActionsFromAssembly(typeof(Program).Assembly);
4. Create Action Handlers
[UssdAction("balance_check")]
public class BalanceCheckHandler : IActionHandler
{
    public Task<UssdStepResult> HandleAsync(UssdContext context)
    {
        var balance = 1500.00m; // Fetch from database

        return Task.FromResult(new UssdStepResult
        {
            Message = $"Your balance is GHS {balance:N2}",
            ContinueSession = false
        });
    }
}
5. Create Endpoint
app.MapPost("/ussd", async (UssdRequestDto request, UssdApp ussdApp) =>
{
    var response = await ussdApp.HandleRequestAsync(request);
    return Results.Ok(response);
});

Configuration Options

The SDK supports extensive configuration through UssdOptions:

builder.Services.AddUssdSdk(menu, options =>
{
    // Session management
    options.SessionTimeout = TimeSpan.FromMinutes(5);

    // Navigation commands
    options.BackCommand = "0";
    options.HomeCommand = "#";
    options.EnableAutoBackNavigation = true;

    // Pagination
    options.EnablePagination = true;
    options.ItemsPerPage = 5;
    options.NextPageCommand = "99";
    options.PreviousPageCommand = "98";

    // Messages
    options.InvalidInputMessage = "Invalid input. Please try again.";
    options.DefaultEndMessage = "Thank you for using our service.";

    // Session resumption
    options.EnableSessionResumption = true;
    options.ResumeSessionPrompt = "You have an active session.";
    options.ResumeOptionLabel = "Resume";
    options.StartFreshOptionLabel = "Start Fresh";
});

Advanced Features

Session Management

Use strongly-typed session keys for type-safe data storage:

public static class SessionKeys
{
    public static SessionKey<string?> Recipient => new("recipient");
    public static SessionKey<decimal?> Amount => new("amount");
}

// In your handler
Set(context, SessionKeys.Recipient, phoneNumber);
var recipient = Get(context, SessionKeys.Recipient);

Pagination

Automatically paginate long lists:

.Page(BankMenuNode.Products, n => n
    .Title("Our Products:")
    .OptionList(products,
        p => $"{p.Name} - GHS {p.Price}",
        autoPaginate: true,
        itemsPerPage: 3)
)

Custom Session Store

Replace the default in-memory session store with Redis or other implementations:

builder.Services.AddUssdSdk<RedisSessionStore>(menu, options =>
{
    options.SessionTimeout = TimeSpan.FromMinutes(10);
});

Documentation

For detailed documentation, please refer to:

Sample Project

The repository includes a comprehensive sample application demonstrating:

  • Multiple menu nodes and navigation flows
  • Action handlers for business logic
  • Session-based multi-step processes
  • Pagination of product lists
  • Voting functionality
  • Money transfer flows
  • Session resumption

To run the sample:

cd sample
dotnet run

Then send a POST request to http://localhost:5000/ussd:

{
  "sessionID": "unique-session-id",
  "userID": "user123",
  "msisdn": "0244000000",
  "newSession": true,
  "userInput": ""
}

Requirements

  • .NET 8.0 or later
  • ASP.NET Core

License

MIT License - see LICENSE file for details

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Support

For issues, questions, or contributions, please visit the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated