Created check for Matrix mode
This commit is contained in:
parent
e8463ecc25
commit
4b6bb780d4
78
Program.cs
78
Program.cs
@ -10,27 +10,85 @@ namespace TeleTok
|
||||
.AddJsonFile("config.json", true)
|
||||
.Build();
|
||||
|
||||
// Value to see what bot mode to run in
|
||||
public static string botMode = config.GetSection("TeleTokConf:botMode").Value;
|
||||
|
||||
// Telegram bot config
|
||||
public static string token = config.GetSection("TeleTokConf:token").Value;
|
||||
public static string ptInstance = config.GetSection("TeleTokConf:proxitokInstance").Value;
|
||||
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;
|
||||
|
||||
static async Task Main(string[] args)
|
||||
{
|
||||
//Checks if the config json data is valid
|
||||
if(token == "" || token == null || token == "INSERT TOKEN HERE")
|
||||
//Checks to see what mode to run the bot in
|
||||
|
||||
if(botMode == "telegram")
|
||||
{
|
||||
LogMessage("Telegram bot token is invalid! Exiting...");
|
||||
//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();
|
||||
}
|
||||
}
|
||||
else if(ptInstance == "" || ptInstance == null || ptInstance == "PROXITOK INSTANCE URL")
|
||||
else if(botMode == "matrix")
|
||||
{
|
||||
LogMessage("Proxitok instance is invalid! Exiting...");
|
||||
//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();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
TelegramListener listener = new TelegramListener();
|
||||
LogMessage("Now listening...");
|
||||
LogMessage("Bot mode is not configured! Enter either \'telegram\' or \'matrix\'");
|
||||
}
|
||||
}
|
||||
|
||||
listener.RunListener();
|
||||
}
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
public static void LogMessage(string text)
|
||||
|
Loading…
Reference in New Issue
Block a user