SKitLs.Bots.Telegram.ArgedInteractions 1.5.3

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package SKitLs.Bots.Telegram.ArgedInteractions --version 1.5.3
NuGet\Install-Package SKitLs.Bots.Telegram.ArgedInteractions -Version 1.5.3
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="SKitLs.Bots.Telegram.ArgedInteractions" Version="1.5.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SKitLs.Bots.Telegram.ArgedInteractions --version 1.5.3
#r "nuget: SKitLs.Bots.Telegram.ArgedInteractions, 1.5.3"
#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.
// Install SKitLs.Bots.Telegram.ArgedInteractions as a Cake Addin
#addin nuget:?package=SKitLs.Bots.Telegram.ArgedInteractions&version=1.5.3

// Install SKitLs.Bots.Telegram.ArgedInteractions as a Cake Tool
#tool nuget:?package=SKitLs.Bots.Telegram.ArgedInteractions&version=1.5.3

SKitLs.Bots.Telegram.ArgedInteractions Static Badge GitHub Nuget CodeFactor

README version: 2024.03.23

An extension project built upon the SKitLs.Bots.Telegram.Core Framework.

Provides a structured and efficient mechanism for the serialization and deserialization of textual data

Need a boost? Jump to Usage section!

Description

SKitLs.Bots.Telegram.ArgedInteractions is an extension project built upon the SKitLs.Bots.Telegram.Core Framework. Its primary objective is to provide a structured and efficient mechanism for the serialization and deserialization of textual data to facilitate the creation of specialized actions that support arguments.

SKitLs.Bots.Telegram.ArgedInteractions is a project that enhances the capabilities of the SKitLs.Bots.Telegram.Core Framework by introducing essential methods for handling text-based data. The project focuses on organizing the serialization and deserialization processes, which are crucial for implementing actions with argument support in Telegram bots.

Key Features:

  1. Textual Data Serialization:

    The project offers robust methods to convert textual data into a serializable format. These methods ensure that the text-based information can be efficiently transmitted and utilized within the Telegram bot ecosystem.

  2. Textual Data Deserialization:

    SKitLs.Bots.Telegram.ArgedInteractions includes advanced techniques for deserializing received text-based data. This allows the bot to interpret and extract relevant information from incoming messages and updates, making it possible to handle user input effectively.

  3. Specialized Actions with Argument Support:

    The project's core focus lies in empowering developers to create specialized bot actions that can accept arguments. These actions are designed to process textual data with attached arguments, enabling the bot to execute complex and context-sensitive tasks.

  4. Seamless Integration:

    SKitLs.Bots.Telegram.ArgedInteractions seamlessly integrates with the existing SKitLs.Bots.Telegram.Core Framework. The project harmoniously leverages the core functionality while providing an additional layer of support for argument-based interactions.

Setup

Ensure getting localization packs (*.ai.*).

Installation

  1. Using Terminal Command:

    To install the project using the terminal command, follow these steps:

    1. Open the terminal or command prompt.
    2. Run command:
    dotnet add package SKitLs.Bots.Telegram.ArgedInteractions
    
  2. Using NuGet Packages Manager:

    To install the project using the NuGet Packages Manager, perform the following steps:

    1. Open your preferred Integrated Development Environment (IDE) that supports NuGet package management (e.g., Visual Studio).
    2. Create a new project or open an existing one.
    3. Select "Project" > "Manage NuGet Packages"
    4. In the "Browse" tab, search for the project package you want to install.
    5. Click on the "Install" button to add the selected package to your project.
    6. Follow any additional setup instructions or configurations provided in the project's documentation.
  3. Downloading Source Code and Direct Linking:

    To install the project by downloading the source code and directly linking it to your project, adhere to the following steps:

    1. Visit the project repository on GitHub page.
    2. Click on the "Code" button and select "Download ZIP" to download the project's source code as a zip archive.
    3. Extract the downloaded zip archive to the desired location on your local machine.
    4. Open your existing project or create a new one in your IDE.
    5. Add the downloaded project files to your solution using the "Add Existing Project" option in your IDE's solution explorer.
    6. Reference the project in your solution and ensure any required dependencies are resolved.
    7. Follow any additional setup or configuration instructions provided in the project's documentation.

Please note that each method may have specific requirements or configurations that need to be followed for successful installation. Refer to the project's documentation for any additional steps or considerations.

Usage

Registering Custom Serialization Rule

To serialize specific types of data in a Telegram bot, you can register custom serialization rules using the IArgsSerializeService interface. This allows the bot to handle complex data structures effectively.

Here's an example of registering a custom serialization rule for a custom data type:

IArgsSerializeService argsSerializeService = new DefaultArgsSerializeService();
argsSerializeService.AddRule<MyCustomDataType>(input =>
{
    MyCustomDataType customDataInstance;
    // Custom logic to convert the string input into MyCustomDataType
    // ... (implementation details)
    return ConvertResult<MyCustomDataType>.Success(customDataInstance);
});

←- or (since v1.5.0) -->

public class MyCustomDataTypeConverter : ConverterBase<MyCustomDataType>
{
    /// <inheritdoc/>
    public override ConvertResult<MyCustomDataType> Converter(string input)
    {
        if (string.IsNullOrEmpty(input))
            return ConvertResult<MyCustomDataType>.NullInput();

        MyCustomDataType customDataInstance;
        // Custom logic to convert the string input into MyCustomDataType
        // ... (implementation details)
        if (customDataInstance is null)
            return ConvertResult<MyCustomDataType>.Incorrect();
        else
            return ConvertResult<MyCustomDataType>.OK(customDataInstance);
    }
}

Creating an Argumented Action (ex. Callback)

You can create specialized bot actions that support arguments using IArgedAction<TArg, TUpdate> classes (BotArgedCommand<TArg>, BotArgedCallback<TArg>, BotArgedTextInput<TArg>). This allows the bot to respond to user interactions with context-specific actions.

Below is an example of creating an argumented callback:

LabeledData labeledData = new LabeledData("This is label", "argedCallbackId");
BotArgedInteraction<MyCustomDataType, SignedCallbackUpdate> customArgAction = async (args, update) =>
{
    // Custom logic to handle the callback with the provided arguments
    // ... (implementation details)
};

// Creating the BotArgedCallback instance
BotArgedCallback<MyCustomDataType> argedCallback = new BotArgedCallback<MyCustomDataType>(labeledData, customArgAction);

And implement it into Telegram.Bot.InlineKeyboardMarkup with:

MyCustomDataType data = new(...);
var callbackData = argedCallback.GetSerializedData(data, argsSerializeService);
_ = InlineKeyboardMarkup.WithCallbackData(argedCallback.Label, callbackData);

You can use SKitLs.Bots.Telegram.AdvancedMessages package to get better messaging experience.

Contributors

Currently, there are no contributors actively involved in this project. However, our team is eager to welcome contributions from anyone interested in advancing the project's development.

We value every contribution and look forward to collaborating with individuals who share our vision and passion for this endeavor. Your participation will be greatly appreciated in moving the project forward.

Thank you for considering contributing to our project.

License

This project is distributed under the terms of the MIT License.

Copyright (C) 2023-2024, SKitLs

Developer contact

For any issues related to the project, please feel free to reach out to us through the project's GitHub page. We welcome bug reports, feedback, and any other inquiries that can help us improve the project.

You can also contact the project owner directly via their GitHub profile at the following link or email: skitlsdev@gmail.com

Your collaboration and support are highly appreciated, and we will do our best to address any concerns or questions promptly and professionally. Thank you for your interest in our project.

Notes

Thank you for choosing our solution for your needs, and we look forward to contributing to your project's success.

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on SKitLs.Bots.Telegram.ArgedInteractions:

Package Downloads
SKitLs.Bots.Telegram.AdvancedMessages The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Offers enhanced methods for sending messages in Telegram bots. An extension project built upon the SKitLs.Bots.Telegram.Core Framework.

SKitLs.Bots.Telegram.PageNavs The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Allows to create special navigational menus. An extension project built upon the SKitLs.Bots.Telegram.Core Framework.

SKitLs.Bots.Telegram.BotProcesses The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Provides methods of creating bot processes with advanced textual input mechanics. An extension project built upon the SKitLs.Bots.Telegram.Core Framework.

SKitLs.Bots.Telegram.DataBases The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.3 113 3/26/2024
1.5.3-alpha0 83 3/25/2024
1.5.3-alpha.1 49 3/25/2024
1.5.2 171 3/24/2024
1.5.1 97 3/23/2024
1.5.0 80 3/23/2024
1.4.3 125 3/21/2024
1.4.2 144 10/5/2023
1.4.2-alpha0 92 9/9/2023
1.4.1 292 9/8/2023
1.4.0 229 8/19/2023
1.3.3 344 8/11/2023
1.3.2 143 8/9/2023
1.3.1 164 8/3/2023
1.3.0 236 8/1/2023
1.2.1 273 7/24/2023

(~) Updated: ArgedActions -> protected set
(~) Updated: .Core 3.1.2 support