2023-02-13 16:34:22 -05:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace TeleTok
|
|
|
|
|
{
|
2023-02-14 12:04:24 -05:00
|
|
|
|
public class TeleTok
|
2023-02-13 16:34:22 -05:00
|
|
|
|
{
|
2023-02-14 12:04:24 -05:00
|
|
|
|
public static IConfigurationRoot config = new ConfigurationBuilder()
|
|
|
|
|
.SetBasePath(Directory.GetCurrentDirectory())
|
|
|
|
|
.AddJsonFile("config.json", true)
|
|
|
|
|
.Build();
|
2023-02-13 16:34:22 -05:00
|
|
|
|
|
2023-02-16 10:53:08 -05:00
|
|
|
|
// Value to see what bot mode to run in
|
|
|
|
|
public static string botMode = config.GetSection("TeleTokConf:botMode").Value;
|
|
|
|
|
|
|
|
|
|
// Telegram bot config
|
2023-02-14 12:04:24 -05:00
|
|
|
|
public static string token = config.GetSection("TeleTokConf:token").Value;
|
2023-02-16 10:53:08 -05:00
|
|
|
|
public static string ptInstance = config.GetSection("TeleTokConf:ptInstance").Value;
|
|
|
|
|
|
|
|
|
|
// Matrix bot config
|
|
|
|
|
public static string matrixAddress = config.GetSection("TeleTokConf:matrixAddress").Value;
|
|
|
|
|
public static string mBotUser = config.GetSection("TeleTokConf:mBotUser").Value;
|
|
|
|
|
public static string mBotPass = config.GetSection("TeleTokConf:mBotPass").Value;
|
2023-02-13 16:34:22 -05:00
|
|
|
|
|
2023-02-14 12:04:24 -05:00
|
|
|
|
static async Task Main(string[] args)
|
|
|
|
|
{
|
2023-02-16 10:53:08 -05:00
|
|
|
|
//Checks to see what mode to run the bot in
|
|
|
|
|
|
|
|
|
|
if(botMode == "telegram")
|
2023-02-15 13:53:47 -05:00
|
|
|
|
{
|
2023-02-16 10:53:08 -05:00
|
|
|
|
//Checks if the config json data is valid
|
|
|
|
|
if(ConfigCheck(token) == false)
|
|
|
|
|
{
|
|
|
|
|
LogMessage("Telegram bot token is invalid! Exiting...");
|
|
|
|
|
}
|
|
|
|
|
else if(ConfigCheck(ptInstance) == false)
|
|
|
|
|
{
|
|
|
|
|
LogMessage("Proxitok instance is invalid! Exiting...");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
TelegramListener tListener = new TelegramListener();
|
|
|
|
|
LogMessage("Now listening...");
|
|
|
|
|
|
|
|
|
|
tListener.RunListener();
|
|
|
|
|
}
|
2023-02-15 13:53:47 -05:00
|
|
|
|
}
|
2023-02-16 10:53:08 -05:00
|
|
|
|
else if(botMode == "matrix")
|
2023-02-15 13:53:47 -05:00
|
|
|
|
{
|
2023-02-16 10:53:08 -05:00
|
|
|
|
//Checks if the config json data is valid
|
|
|
|
|
if(ConfigCheck(matrixAddress) == false)
|
|
|
|
|
{
|
|
|
|
|
LogMessage("Synapse address is invalid! Exiting...");
|
|
|
|
|
}
|
|
|
|
|
else if(ConfigCheck(mBotUser) == false)
|
|
|
|
|
{
|
|
|
|
|
LogMessage("Matrix bot username is invalid! Exiting...");
|
|
|
|
|
}
|
|
|
|
|
else if(ConfigCheck(mBotPass) == false)
|
|
|
|
|
{
|
|
|
|
|
LogMessage("Matrix bot password is invalid! Exiting...");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
MatrixListener mListener = new MatrixListener();
|
|
|
|
|
LogMessage("Now listening...");
|
|
|
|
|
|
|
|
|
|
mListener.RunListener();
|
|
|
|
|
}
|
2023-02-15 13:53:47 -05:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2023-02-16 10:53:08 -05:00
|
|
|
|
LogMessage("Bot mode is not configured! Enter either \'telegram\' or \'matrix\'");
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-02-14 13:59:20 -05:00
|
|
|
|
|
2023-02-16 10:53:08 -05:00
|
|
|
|
public static bool ConfigCheck(string confItem)
|
|
|
|
|
{
|
|
|
|
|
if(confItem == "" || confItem == null
|
|
|
|
|
|| confItem == "INSERT TOKEN HERE"
|
|
|
|
|
|| confItem == "PROXITOK INSTANCE URL"
|
|
|
|
|
|| confItem == "SYNAPSE SERVER URL"
|
|
|
|
|
|| confItem == "MATRIX BOT USERNAMEL"
|
|
|
|
|
|| confItem == "MATRIX BOT PASSWORD")
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2023-02-13 16:34:22 -05:00
|
|
|
|
}
|
2023-02-15 12:17:08 -05:00
|
|
|
|
|
|
|
|
|
public static void LogMessage(string text)
|
|
|
|
|
{
|
|
|
|
|
DateTime now =DateTime.Now;
|
|
|
|
|
|
|
|
|
|
Console.WriteLine("[" + now.ToString() + "] " + text);
|
|
|
|
|
}
|
2023-02-13 16:34:22 -05:00
|
|
|
|
}
|
|
|
|
|
}
|