SKitLs.Bots.Telegram.ArgedInteractions
1.5.3
Prefix Reserved
dotnet add package SKitLs.Bots.Telegram.ArgedInteractions --version 1.5.3
NuGet\Install-Package SKitLs.Bots.Telegram.ArgedInteractions -Version 1.5.3
<PackageReference Include="SKitLs.Bots.Telegram.ArgedInteractions" Version="1.5.3" />
paket add SKitLs.Bots.Telegram.ArgedInteractions --version 1.5.3
#r "nuget: SKitLs.Bots.Telegram.ArgedInteractions, 1.5.3"
// 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
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:
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.
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.
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.
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
Using Terminal Command:
To install the project using the terminal command, follow these steps:
- Open the terminal or command prompt.
- Run command:
dotnet add package SKitLs.Bots.Telegram.ArgedInteractions
Using NuGet Packages Manager:
To install the project using the NuGet Packages Manager, perform the following steps:
- Open your preferred Integrated Development Environment (IDE) that supports NuGet package management (e.g., Visual Studio).
- Create a new project or open an existing one.
- Select "Project" > "Manage NuGet Packages"
- In the "Browse" tab, search for the project package you want to install.
- Click on the "Install" button to add the selected package to your project.
- Follow any additional setup instructions or configurations provided in the project's documentation.
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:
- Visit the project repository on GitHub page.
- Click on the "Code" button and select "Download ZIP" to download the project's source code as a zip archive.
- Extract the downloaded zip archive to the desired location on your local machine.
- Open your existing project or create a new one in your IDE.
- Add the downloaded project files to your solution using the "Add Existing Project" option in your IDE's solution explorer.
- Reference the project in your solution and ensure any required dependencies are resolved.
- 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 | Versions 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. |
-
net8.0
- SKitLs.Bots.Telegram.Core (>= 3.1.2)
- Telegram.Bot (>= 19.0.0)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on SKitLs.Bots.Telegram.ArgedInteractions:
Package | Downloads |
---|---|
SKitLs.Bots.Telegram.AdvancedMessages
Offers enhanced methods for sending messages in Telegram bots. An extension project built upon the SKitLs.Bots.Telegram.Core Framework. |
|
SKitLs.Bots.Telegram.PageNavs
Allows to create special navigational menus. An extension project built upon the SKitLs.Bots.Telegram.Core Framework. |
|
SKitLs.Bots.Telegram.BotProcesses
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
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.5.3 | 193 | 3/26/2024 |
1.5.3-alpha0 | 106 | 3/25/2024 |
1.5.3-alpha.1 | 58 | 3/25/2024 |
1.5.2 | 204 | 3/24/2024 |
1.5.1 | 135 | 3/23/2024 |
1.5.0 | 101 | 3/23/2024 |
1.4.3 | 155 | 3/21/2024 |
1.4.2 | 202 | 10/5/2023 |
1.4.2-alpha0 | 115 | 9/9/2023 |
1.4.1 | 342 | 9/8/2023 |
1.4.0 | 269 | 8/19/2023 |
1.3.3 | 428 | 8/11/2023 |
1.3.2 | 166 | 8/9/2023 |
1.3.1 | 188 | 8/3/2023 |
1.3.0 | 267 | 8/1/2023 |
1.2.1 | 326 | 7/24/2023 |
(~) Updated: ArgedActions -> protected set
(~) Updated: .Core 3.1.2 support