mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2025-12-16 22:40:30 +00:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
07049e71c0 | ||
|
|
4710d9c1eb | ||
|
|
d08462745a | ||
|
|
eb4e9ee077 | ||
|
|
601a486b13 | ||
|
|
14867f470d | ||
|
|
187f0800b2 | ||
|
|
3afa202d0b | ||
|
|
d33e76c8b0 | ||
|
|
3061c55eaf |
@@ -172,15 +172,9 @@ namespace ArchiSteamFarm {
|
|||||||
SentryFile = botPath + ".bin";
|
SentryFile = botPath + ".bin";
|
||||||
|
|
||||||
// Support and convert SDA files
|
// Support and convert SDA files
|
||||||
if (BotDatabase.SteamGuardAccount == null && File.Exists(botPath + ".maFile")) {
|
string maFilePath = botPath + ".maFile";
|
||||||
Logging.LogGenericInfo("Converting SDA .maFile into ASF format...", botName);
|
if (BotDatabase.SteamGuardAccount == null && File.Exists(maFilePath)) {
|
||||||
try {
|
ImportAuthenticator(maFilePath);
|
||||||
BotDatabase.SteamGuardAccount = JsonConvert.DeserializeObject<SteamGuardAccount>(File.ReadAllText(botPath + ".maFile"));
|
|
||||||
File.Delete(botPath + ".maFile");
|
|
||||||
Logging.LogGenericInfo("Success!", botName);
|
|
||||||
} catch (Exception e) {
|
|
||||||
Logging.LogGenericException(e, botName);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialize
|
// Initialize
|
||||||
@@ -262,16 +256,16 @@ namespace ArchiSteamFarm {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!await BotDatabase.SteamGuardAccount.RefreshSessionAsync().ConfigureAwait(false)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Confirmation[] confirmations = await BotDatabase.SteamGuardAccount.FetchConfirmationsAsync().ConfigureAwait(false);
|
|
||||||
if (confirmations == null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
if (!await BotDatabase.SteamGuardAccount.RefreshSessionAsync().ConfigureAwait(false)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Confirmation[] confirmations = await BotDatabase.SteamGuardAccount.FetchConfirmationsAsync().ConfigureAwait(false);
|
||||||
|
if (confirmations == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
foreach (Confirmation confirmation in confirmations) {
|
foreach (Confirmation confirmation in confirmations) {
|
||||||
if (BotDatabase.SteamGuardAccount.AcceptConfirmation(confirmation)) {
|
if (BotDatabase.SteamGuardAccount.AcceptConfirmation(confirmation)) {
|
||||||
Logging.LogGenericInfo("Accepting confirmation: Success!", BotName);
|
Logging.LogGenericInfo("Accepting confirmation: Success!", BotName);
|
||||||
@@ -283,6 +277,9 @@ namespace ArchiSteamFarm {
|
|||||||
Logging.LogGenericWarning("Accepting confirmation: Failed!", BotName);
|
Logging.LogGenericWarning("Accepting confirmation: Failed!", BotName);
|
||||||
Logging.LogGenericWarning("Confirmation could not be accepted because of invalid token exception", BotName);
|
Logging.LogGenericWarning("Confirmation could not be accepted because of invalid token exception", BotName);
|
||||||
Logging.LogGenericWarning("If issue persists, consider removing and readding ASF 2FA", BotName);
|
Logging.LogGenericWarning("If issue persists, consider removing and readding ASF 2FA", BotName);
|
||||||
|
} catch (Exception e) {
|
||||||
|
Logging.LogGenericException(e, BotName);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -329,6 +326,10 @@ namespace ArchiSteamFarm {
|
|||||||
case "!exit":
|
case "!exit":
|
||||||
Program.Exit();
|
Program.Exit();
|
||||||
return null;
|
return null;
|
||||||
|
case "!farm":
|
||||||
|
return await ResponseFarm().ConfigureAwait(false);
|
||||||
|
case "!loot":
|
||||||
|
return await ResponseSendTrade().ConfigureAwait(false);
|
||||||
case "!rejoinchat":
|
case "!rejoinchat":
|
||||||
return ResponseRejoinChat();
|
return ResponseRejoinChat();
|
||||||
case "!restart":
|
case "!restart":
|
||||||
@@ -340,8 +341,9 @@ namespace ArchiSteamFarm {
|
|||||||
return ResponseStatusAll();
|
return ResponseStatusAll();
|
||||||
case "!stop":
|
case "!stop":
|
||||||
return ResponseStop();
|
return ResponseStop();
|
||||||
case "!loot":
|
case "!update":
|
||||||
return await ResponseSendTrade().ConfigureAwait(false);
|
await Program.CheckForUpdate().ConfigureAwait(false);
|
||||||
|
return "Done!";
|
||||||
default:
|
default:
|
||||||
return "Unrecognized command: " + message;
|
return "Unrecognized command: " + message;
|
||||||
}
|
}
|
||||||
@@ -360,6 +362,10 @@ namespace ArchiSteamFarm {
|
|||||||
} else {
|
} else {
|
||||||
return await ResponseAddLicense(BotName, args[1]).ConfigureAwait(false);
|
return await ResponseAddLicense(BotName, args[1]).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
case "!farm":
|
||||||
|
return await ResponseFarm(args[1]).ConfigureAwait(false);
|
||||||
|
case "!loot":
|
||||||
|
return await ResponseSendTrade(args[1]).ConfigureAwait(false);
|
||||||
case "!play":
|
case "!play":
|
||||||
if (args.Length > 2) {
|
if (args.Length > 2) {
|
||||||
return await ResponsePlay(args[1], args[2]).ConfigureAwait(false);
|
return await ResponsePlay(args[1], args[2]).ConfigureAwait(false);
|
||||||
@@ -374,12 +380,10 @@ namespace ArchiSteamFarm {
|
|||||||
}
|
}
|
||||||
case "!start":
|
case "!start":
|
||||||
return await ResponseStart(args[1]).ConfigureAwait(false);
|
return await ResponseStart(args[1]).ConfigureAwait(false);
|
||||||
case "!stop":
|
|
||||||
return ResponseStop(args[1]);
|
|
||||||
case "!status":
|
case "!status":
|
||||||
return ResponseStatus(args[1]);
|
return ResponseStatus(args[1]);
|
||||||
case "!loot":
|
case "!stop":
|
||||||
return await ResponseSendTrade(args[1]).ConfigureAwait(false);
|
return ResponseStop(args[1]);
|
||||||
default:
|
default:
|
||||||
return "Unrecognized command: " + args[0];
|
return "Unrecognized command: " + args[0];
|
||||||
}
|
}
|
||||||
@@ -422,6 +426,62 @@ namespace ArchiSteamFarm {
|
|||||||
Program.OnBotShutdown();
|
Program.OnBotShutdown();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void ImportAuthenticator(string maFilePath) {
|
||||||
|
if (BotDatabase.SteamGuardAccount != null || !File.Exists(maFilePath)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Logging.LogGenericInfo("Converting SDA .maFile into ASF format...", BotName);
|
||||||
|
try {
|
||||||
|
BotDatabase.SteamGuardAccount = JsonConvert.DeserializeObject<SteamGuardAccount>(File.ReadAllText(maFilePath));
|
||||||
|
File.Delete(maFilePath);
|
||||||
|
Logging.LogGenericInfo("Success!", BotName);
|
||||||
|
} catch (Exception e) {
|
||||||
|
Logging.LogGenericException(e, BotName);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If this is SDA file, then we should already have everything ready
|
||||||
|
if (BotDatabase.SteamGuardAccount.Session != null) {
|
||||||
|
Logging.LogGenericInfo("Successfully finished importing mobile authenticator!", BotName);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// But here we're dealing with WinAuth authenticator
|
||||||
|
Logging.LogGenericInfo("ASF requires a few more steps to complete authenticator import...", BotName);
|
||||||
|
|
||||||
|
InitializeLoginAndPassword();
|
||||||
|
|
||||||
|
UserLogin userLogin = new UserLogin(BotConfig.SteamLogin, BotConfig.SteamPassword);
|
||||||
|
LoginResult loginResult;
|
||||||
|
while ((loginResult = userLogin.DoLogin()) != LoginResult.LoginOkay) {
|
||||||
|
switch (loginResult) {
|
||||||
|
case LoginResult.Need2FA:
|
||||||
|
userLogin.TwoFactorCode = Program.GetUserInput(BotName, Program.EUserInputType.TwoFactorAuthentication);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
Logging.LogGenericError("Unhandled situation: " + loginResult, BotName);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (userLogin.Session == null) {
|
||||||
|
BotDatabase.SteamGuardAccount = null;
|
||||||
|
Logging.LogGenericError("Session is invalid, linking can't be completed!", BotName);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
BotDatabase.SteamGuardAccount.FullyEnrolled = true;
|
||||||
|
BotDatabase.SteamGuardAccount.Session = userLogin.Session;
|
||||||
|
|
||||||
|
if (string.IsNullOrEmpty(BotDatabase.SteamGuardAccount.DeviceID)) {
|
||||||
|
BotDatabase.SteamGuardAccount.DeviceID = Program.GetUserInput(BotName, Program.EUserInputType.DeviceID);
|
||||||
|
}
|
||||||
|
|
||||||
|
BotDatabase.Save();
|
||||||
|
Logging.LogGenericInfo("Successfully finished importing mobile authenticator!", BotName);
|
||||||
|
}
|
||||||
|
|
||||||
private string ResponseStatus() {
|
private string ResponseStatus() {
|
||||||
if (CardsFarmer.CurrentGamesFarming.Count > 0) {
|
if (CardsFarmer.CurrentGamesFarming.Count > 0) {
|
||||||
return "Bot " + BotName + " is currently farming appIDs: " + string.Join(", ", CardsFarmer.CurrentGamesFarming) + " and has a total of " + CardsFarmer.GamesToFarm.Count + " games left to farm.";
|
return "Bot " + BotName + " is currently farming appIDs: " + string.Join(", ", CardsFarmer.CurrentGamesFarming) + " and has a total of " + CardsFarmer.GamesToFarm.Count + " games left to farm.";
|
||||||
@@ -562,6 +622,24 @@ namespace ArchiSteamFarm {
|
|||||||
return await bot.Response2FAOK().ConfigureAwait(false);
|
return await bot.Response2FAOK().ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private async Task<string> ResponseFarm() {
|
||||||
|
await CardsFarmer.RestartFarming().ConfigureAwait(false);
|
||||||
|
return "Done!";
|
||||||
|
}
|
||||||
|
|
||||||
|
private static async Task<string> ResponseFarm(string botName) {
|
||||||
|
if (string.IsNullOrEmpty(botName)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
Bot bot;
|
||||||
|
if (!Bots.TryGetValue(botName, out bot)) {
|
||||||
|
return "Couldn't find any bot named " + botName + "!";
|
||||||
|
}
|
||||||
|
|
||||||
|
return await bot.ResponseFarm().ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
|
||||||
private async Task<string> ResponseRedeem(string message, bool validate) {
|
private async Task<string> ResponseRedeem(string message, bool validate) {
|
||||||
if (string.IsNullOrEmpty(message)) {
|
if (string.IsNullOrEmpty(message)) {
|
||||||
return null;
|
return null;
|
||||||
@@ -895,6 +973,9 @@ namespace ArchiSteamFarm {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Logging.LogGenericInfo("Linking new ASF MobileAuthenticator...", BotName);
|
Logging.LogGenericInfo("Linking new ASF MobileAuthenticator...", BotName);
|
||||||
|
|
||||||
|
InitializeLoginAndPassword();
|
||||||
|
|
||||||
UserLogin userLogin = new UserLogin(BotConfig.SteamLogin, BotConfig.SteamPassword);
|
UserLogin userLogin = new UserLogin(BotConfig.SteamLogin, BotConfig.SteamPassword);
|
||||||
LoginResult loginResult;
|
LoginResult loginResult;
|
||||||
while ((loginResult = userLogin.DoLogin()) != LoginResult.LoginOkay) {
|
while ((loginResult = userLogin.DoLogin()) != LoginResult.LoginOkay) {
|
||||||
@@ -957,6 +1038,16 @@ namespace ArchiSteamFarm {
|
|||||||
SteamFriends.JoinChat(BotConfig.SteamMasterClanID);
|
SteamFriends.JoinChat(BotConfig.SteamMasterClanID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void InitializeLoginAndPassword() {
|
||||||
|
if (string.IsNullOrEmpty(BotConfig.SteamLogin)) {
|
||||||
|
BotConfig.SteamLogin = Program.GetUserInput(BotName, Program.EUserInputType.Login);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (string.IsNullOrEmpty(BotConfig.SteamPassword) && string.IsNullOrEmpty(BotDatabase.LoginKey)) {
|
||||||
|
BotConfig.SteamPassword = Program.GetUserInput(BotName, Program.EUserInputType.Password);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void OnConnected(SteamClient.ConnectedCallback callback) {
|
private void OnConnected(SteamClient.ConnectedCallback callback) {
|
||||||
if (callback == null) {
|
if (callback == null) {
|
||||||
return;
|
return;
|
||||||
@@ -985,13 +1076,7 @@ namespace ArchiSteamFarm {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(BotConfig.SteamLogin)) {
|
InitializeLoginAndPassword();
|
||||||
BotConfig.SteamLogin = Program.GetUserInput(BotName, Program.EUserInputType.Login);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(BotConfig.SteamPassword) && string.IsNullOrEmpty(BotDatabase.LoginKey)) {
|
|
||||||
BotConfig.SteamPassword = Program.GetUserInput(BotName, Program.EUserInputType.Password);
|
|
||||||
}
|
|
||||||
|
|
||||||
SteamUser.LogOn(new SteamUser.LogOnDetails {
|
SteamUser.LogOn(new SteamUser.LogOnDetails {
|
||||||
Username = BotConfig.SteamLogin,
|
Username = BotConfig.SteamLogin,
|
||||||
@@ -1217,14 +1302,7 @@ namespace ArchiSteamFarm {
|
|||||||
// Support and convert SDA files
|
// Support and convert SDA files
|
||||||
string maFilePath = Path.Combine(Program.ConfigDirectory, callback.ClientSteamID.ConvertToUInt64() + ".maFile");
|
string maFilePath = Path.Combine(Program.ConfigDirectory, callback.ClientSteamID.ConvertToUInt64() + ".maFile");
|
||||||
if (BotDatabase.SteamGuardAccount == null && File.Exists(maFilePath)) {
|
if (BotDatabase.SteamGuardAccount == null && File.Exists(maFilePath)) {
|
||||||
Logging.LogGenericInfo("Converting SDA .maFile into ASF format...", BotName);
|
ImportAuthenticator(maFilePath);
|
||||||
try {
|
|
||||||
BotDatabase.SteamGuardAccount = JsonConvert.DeserializeObject<SteamGuardAccount>(File.ReadAllText(maFilePath));
|
|
||||||
File.Delete(maFilePath);
|
|
||||||
Logging.LogGenericInfo("Success!", BotName);
|
|
||||||
} catch (Exception e) {
|
|
||||||
Logging.LogGenericException(e, BotName);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (BotConfig.UseAsfAsMobileAuthenticator && TwoFactorAuth == null && BotDatabase.SteamGuardAccount == null) {
|
if (BotConfig.UseAsfAsMobileAuthenticator && TwoFactorAuth == null && BotDatabase.SteamGuardAccount == null) {
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ namespace ArchiSteamFarm {
|
|||||||
// This constructor is used only by deserializer
|
// This constructor is used only by deserializer
|
||||||
private BotDatabase() { }
|
private BotDatabase() { }
|
||||||
|
|
||||||
private void Save() {
|
internal void Save() {
|
||||||
lock (FilePath) {
|
lock (FilePath) {
|
||||||
try {
|
try {
|
||||||
File.WriteAllText(FilePath, JsonConvert.SerializeObject(this));
|
File.WriteAllText(FilePath, JsonConvert.SerializeObject(this));
|
||||||
|
|||||||
@@ -35,6 +35,8 @@ using System.Threading.Tasks;
|
|||||||
namespace ArchiSteamFarm {
|
namespace ArchiSteamFarm {
|
||||||
internal static class Program {
|
internal static class Program {
|
||||||
internal enum EUserInputType : byte {
|
internal enum EUserInputType : byte {
|
||||||
|
Unknown,
|
||||||
|
DeviceID,
|
||||||
Login,
|
Login,
|
||||||
Password,
|
Password,
|
||||||
PhoneNumber,
|
PhoneNumber,
|
||||||
@@ -78,7 +80,7 @@ namespace ArchiSteamFarm {
|
|||||||
private static Timer AutoUpdatesTimer;
|
private static Timer AutoUpdatesTimer;
|
||||||
private static EMode Mode = EMode.Normal;
|
private static EMode Mode = EMode.Normal;
|
||||||
|
|
||||||
private static async Task CheckForUpdate() {
|
internal static async Task CheckForUpdate() {
|
||||||
string oldExeFile = ExecutableFile + ".old";
|
string oldExeFile = ExecutableFile + ".old";
|
||||||
|
|
||||||
// We booted successfully so we can now remove old exe file
|
// We booted successfully so we can now remove old exe file
|
||||||
@@ -277,10 +279,17 @@ namespace ArchiSteamFarm {
|
|||||||
}
|
}
|
||||||
|
|
||||||
internal static string GetUserInput(string botLogin, EUserInputType userInputType, string extraInformation = null) {
|
internal static string GetUserInput(string botLogin, EUserInputType userInputType, string extraInformation = null) {
|
||||||
|
if (userInputType == EUserInputType.Unknown) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
string result;
|
string result;
|
||||||
lock (ConsoleLock) {
|
lock (ConsoleLock) {
|
||||||
ConsoleIsBusy = true;
|
ConsoleIsBusy = true;
|
||||||
switch (userInputType) {
|
switch (userInputType) {
|
||||||
|
case EUserInputType.DeviceID:
|
||||||
|
Console.Write("<" + botLogin + "> Please enter your Device ID (including \"android:\"): ");
|
||||||
|
break;
|
||||||
case EUserInputType.Login:
|
case EUserInputType.Login:
|
||||||
Console.Write("<" + botLogin + "> Please enter your login: ");
|
Console.Write("<" + botLogin + "> Please enter your login: ");
|
||||||
break;
|
break;
|
||||||
@@ -307,6 +316,9 @@ namespace ArchiSteamFarm {
|
|||||||
case EUserInputType.TwoFactorAuthentication:
|
case EUserInputType.TwoFactorAuthentication:
|
||||||
Console.Write("<" + botLogin + "> Please enter your 2 factor auth code from your authenticator app: ");
|
Console.Write("<" + botLogin + "> Please enter your 2 factor auth code from your authenticator app: ");
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
Console.Write("<" + botLogin + "> Please enter not documented yet value of \"" + userInputType + "\": ");
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
result = Console.ReadLine();
|
result = Console.ReadLine();
|
||||||
Console.Clear(); // For security purposes
|
Console.Clear(); // For security purposes
|
||||||
@@ -334,7 +346,7 @@ namespace ArchiSteamFarm {
|
|||||||
private static void InitServices() {
|
private static void InitServices() {
|
||||||
GlobalConfig = GlobalConfig.Load();
|
GlobalConfig = GlobalConfig.Load();
|
||||||
if (GlobalConfig == null) {
|
if (GlobalConfig == null) {
|
||||||
Logging.LogGenericError("Global config could not be loaded, please make sure that ASF.db exists and is valid!");
|
Logging.LogGenericError("Global config could not be loaded, please make sure that ASF.json exists and is valid!");
|
||||||
Thread.Sleep(5000);
|
Thread.Sleep(5000);
|
||||||
Exit(1);
|
Exit(1);
|
||||||
}
|
}
|
||||||
@@ -454,7 +466,7 @@ namespace ArchiSteamFarm {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Bot bot = new Bot(botName);
|
Bot bot = new Bot(botName);
|
||||||
if (!bot.BotConfig.Enabled) {
|
if (bot.BotConfig == null || !bot.BotConfig.Enabled) {
|
||||||
Logging.LogGenericInfo("Not starting this instance because it's disabled in config file", botName);
|
Logging.LogGenericInfo("Not starting this instance because it's disabled in config file", botName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("2.0.0.5")]
|
[assembly: AssemblyVersion("2.0.0.8")]
|
||||||
[assembly: AssemblyFileVersion("2.0.0.5")]
|
[assembly: AssemblyFileVersion("2.0.0.8")]
|
||||||
|
|||||||
Reference in New Issue
Block a user