mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 11:37:01 +00:00
864 lines
32 KiB
C#
864 lines
32 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.IO;
|
||
using System.Runtime.InteropServices;
|
||
using System.Text;
|
||
using System.Threading;
|
||
using Sys = Cosmos.System;
|
||
|
||
namespace CMLeonOS
|
||
{
|
||
public class User
|
||
{
|
||
public string Username { get; set; }
|
||
public string Password { get; set; }
|
||
public bool IsAdmin { get; set; }
|
||
public string Hostname { get; set; }
|
||
}
|
||
|
||
public class UserSystem
|
||
{
|
||
private string sysDirectory = @"0:\system";
|
||
private string userFilePath;
|
||
private List<User> users;
|
||
public bool fixmode = Kernel.FixMode;
|
||
private User currentLoggedInUser;
|
||
|
||
public User CurrentLoggedInUser
|
||
{
|
||
get { return currentLoggedInUser; }
|
||
}
|
||
|
||
public void ShowError(string error)
|
||
{
|
||
Console.ForegroundColor = ConsoleColor.Red;
|
||
Console.WriteLine($"{error}");
|
||
Console.ResetColor();
|
||
}
|
||
|
||
public void ShowSuccess(string message)
|
||
{
|
||
Console.ForegroundColor = ConsoleColor.Green;
|
||
Console.WriteLine($"{message}");
|
||
Console.ResetColor();
|
||
}
|
||
|
||
public static string HashPasswordSha256(string password)
|
||
{
|
||
Sha256 sha256 = new Sha256();
|
||
|
||
byte[] passwordBytesUnhashed = Encoding.Unicode.GetBytes(password);
|
||
sha256.AddData(passwordBytesUnhashed, 0, (uint)passwordBytesUnhashed.Length);
|
||
|
||
return Convert.ToBase64String(sha256.GetHash());
|
||
}
|
||
|
||
public UserSystem()
|
||
{
|
||
EnsureSysDirectoryExists();
|
||
|
||
userFilePath = Path.Combine(sysDirectory, "user.dat");
|
||
|
||
currentLoggedInUser = null;
|
||
|
||
LoadUsers();
|
||
|
||
LoadHostname();
|
||
}
|
||
|
||
private void EnsureSysDirectoryExists()
|
||
{
|
||
try
|
||
{
|
||
if (!Directory.Exists(sysDirectory))
|
||
{
|
||
Directory.CreateDirectory(sysDirectory);
|
||
}
|
||
}
|
||
catch
|
||
{
|
||
// 忽略目录创建错误
|
||
}
|
||
}
|
||
|
||
private void LoadHostname()
|
||
{
|
||
string hostnameFilePath = Path.Combine(sysDirectory, "hostname.dat");
|
||
|
||
try
|
||
{
|
||
if (File.Exists(hostnameFilePath))
|
||
{
|
||
string hostname = File.ReadAllText(hostnameFilePath);
|
||
if (!string.IsNullOrWhiteSpace(hostname))
|
||
{
|
||
if (users.Count > 0)
|
||
{
|
||
users[0].Hostname = hostname;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
catch
|
||
{
|
||
}
|
||
}
|
||
|
||
private void SaveHostname()
|
||
{
|
||
string hostnameFilePath = Path.Combine(sysDirectory, "hostname.dat");
|
||
|
||
try
|
||
{
|
||
if (users.Count > 0)
|
||
{
|
||
string hostname = users[0].Hostname;
|
||
File.WriteAllText(hostnameFilePath, hostname);
|
||
}
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
ShowError($"Error saving hostname: {ex.Message}");
|
||
}
|
||
}
|
||
|
||
public string GetHostname()
|
||
{
|
||
if (users.Count > 0)
|
||
{
|
||
return users[0].Hostname;
|
||
}
|
||
return "Not set";
|
||
}
|
||
|
||
public void SetHostname(string hostname)
|
||
{
|
||
if (string.IsNullOrWhiteSpace(hostname))
|
||
{
|
||
ShowError("Hostname cannot be empty");
|
||
return;
|
||
}
|
||
|
||
if (users.Count > 0)
|
||
{
|
||
users[0].Hostname = hostname;
|
||
SaveHostname();
|
||
ShowSuccess($"Hostname set to: {hostname}");
|
||
}
|
||
else
|
||
{
|
||
ShowError("No users found. Please create a user first.");
|
||
}
|
||
}
|
||
|
||
public void ProcessHostnameCommand(string args)
|
||
{
|
||
if (string.IsNullOrEmpty(args))
|
||
{
|
||
ShowError("Usage: hostname <new_hostname>");
|
||
return;
|
||
}
|
||
|
||
SetHostname(args);
|
||
}
|
||
|
||
private void LoadUsers()
|
||
{
|
||
try
|
||
{
|
||
if (File.Exists(userFilePath))
|
||
{
|
||
string[] lines = File.ReadAllLines(userFilePath);
|
||
users = new List<User>();
|
||
|
||
foreach (string line in lines)
|
||
{
|
||
if (string.IsNullOrWhiteSpace(line) || line.StartsWith("#"))
|
||
{
|
||
continue;
|
||
}
|
||
|
||
string[] parts = line.Split('|');
|
||
if (parts.Length >= 2)
|
||
{
|
||
User user = new User
|
||
{
|
||
Username = parts[0].Trim(),
|
||
Password = parts[1].Trim(),
|
||
IsAdmin = parts.Length >= 3 && parts[2].Trim().ToLower() == "admin",
|
||
Hostname = parts.Length >= 4 ? parts[3].Trim() : ""
|
||
};
|
||
users.Add(user);
|
||
}
|
||
}
|
||
|
||
// Note: Passwords are stored as SHA256 hashes in the file
|
||
// When comparing passwords during login, hash the input password first
|
||
}
|
||
else
|
||
{
|
||
users = new List<User>();
|
||
}
|
||
}
|
||
catch
|
||
{
|
||
users = new List<User>();
|
||
}
|
||
}
|
||
|
||
private void SaveUsers()
|
||
{
|
||
try
|
||
{
|
||
List<string> lines = new List<string>();
|
||
foreach (User user in users)
|
||
{
|
||
string passwordToSave;
|
||
|
||
if (IsPasswordAlreadyHashed(user.Password))
|
||
{
|
||
passwordToSave = user.Password;
|
||
}
|
||
else
|
||
{
|
||
passwordToSave = HashPasswordSha256(user.Password);
|
||
}
|
||
|
||
string line = $"{user.Username}|{passwordToSave}|{(user.IsAdmin ? "admin" : "user")}|{user.Hostname}";
|
||
lines.Add(line);
|
||
}
|
||
File.WriteAllLines(userFilePath, lines.ToArray());
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
ShowError($"Error saving users: {ex.Message}");
|
||
}
|
||
}
|
||
|
||
private bool IsPasswordAlreadyHashed(string password)
|
||
{
|
||
if (string.IsNullOrWhiteSpace(password))
|
||
{
|
||
return false;
|
||
}
|
||
|
||
string trimmedPassword = password.Trim();
|
||
|
||
if (trimmedPassword.Length < 32)
|
||
{
|
||
return false;
|
||
}
|
||
|
||
foreach (char c in trimmedPassword)
|
||
{
|
||
if (!((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || c == '+' || c == '/' || c == '='))
|
||
{
|
||
return false;
|
||
}
|
||
}
|
||
|
||
return true;
|
||
}
|
||
|
||
public bool HasUsers
|
||
{
|
||
get { return users.Count > 0; }
|
||
}
|
||
|
||
public bool IsAdminSet
|
||
{
|
||
get
|
||
{
|
||
foreach (User user in users)
|
||
{
|
||
if (user.IsAdmin)
|
||
{
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
}
|
||
|
||
public string CurrentUsername
|
||
{
|
||
get
|
||
{
|
||
if (currentLoggedInUser != null)
|
||
{
|
||
return currentLoggedInUser.Username;
|
||
}
|
||
return "Not logged in";
|
||
}
|
||
}
|
||
|
||
public bool CurrentUserIsAdmin
|
||
{
|
||
get
|
||
{
|
||
if (currentLoggedInUser != null)
|
||
{
|
||
return currentLoggedInUser.IsAdmin;
|
||
}
|
||
return false;
|
||
}
|
||
}
|
||
|
||
public void FirstTimeSetup()
|
||
{
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.White, global::System.ConsoleColor.Black);
|
||
global::System.Console.Clear();
|
||
|
||
var titleBar = new CMLeonOS.UI.Window(new CMLeonOS.UI.Rect(0, 0, 80, 3), "First Time Setup", () => { }, false);
|
||
titleBar.Render();
|
||
|
||
var termsBox = new CMLeonOS.UI.Window(new CMLeonOS.UI.Rect(5, 5, 70, 18), "User Terms and Conditions", () => { }, true);
|
||
termsBox.Render();
|
||
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.Gray, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 7);
|
||
global::System.Console.WriteLine("1. This operating system is provided as-is without warranty");
|
||
global::System.Console.SetCursorPosition(7, 8);
|
||
global::System.Console.WriteLine("2. You are responsible for your data and backups");
|
||
global::System.Console.SetCursorPosition(7, 9);
|
||
global::System.Console.WriteLine("3. Unauthorized access attempts may be logged");
|
||
global::System.Console.SetCursorPosition(7, 10);
|
||
global::System.Console.WriteLine("4. System administrators have full access to all data");
|
||
global::System.Console.SetCursorPosition(7, 11);
|
||
global::System.Console.WriteLine("5. By using this system, you agree to these terms");
|
||
global::System.Console.SetCursorPosition(7, 12);
|
||
global::System.Console.WriteLine("6. Data privacy: Your personal data is stored locally");
|
||
global::System.Console.SetCursorPosition(7, 13);
|
||
global::System.Console.WriteLine("7. System updates may be installed automatically");
|
||
global::System.Console.SetCursorPosition(7, 14);
|
||
global::System.Console.WriteLine("8. No liability for data loss or corruption");
|
||
global::System.Console.SetCursorPosition(7, 15);
|
||
global::System.Console.WriteLine("9. Support available at: leonmmcoset@outlook.com");
|
||
global::System.Console.SetCursorPosition(7, 16);
|
||
global::System.Console.WriteLine("10. This license is for personal use only");
|
||
|
||
bool termsAccepted = false;
|
||
while (!termsAccepted)
|
||
{
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.White, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(5, 24);
|
||
global::System.Console.Write("Do you accept the User Terms? (yes/no): ");
|
||
string response = global::System.Console.ReadLine()?.ToLower();
|
||
|
||
if (response == "yes" || response == "y")
|
||
{
|
||
termsAccepted = true;
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.Green, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(5, 24);
|
||
global::System.Console.Write("Terms accepted. ");
|
||
}
|
||
else if (response == "no" || response == "n")
|
||
{
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.Red, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(5, 24);
|
||
global::System.Console.Write("You must accept the User Terms to continue.");
|
||
global::System.Threading.Thread.Sleep(2000);
|
||
Sys.Power.Reboot();
|
||
}
|
||
else
|
||
{
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.Red, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(5, 24);
|
||
global::System.Console.Write("Invalid response. Please enter 'yes' or 'no'.");
|
||
}
|
||
}
|
||
|
||
global::System.Console.Clear();
|
||
titleBar.Render();
|
||
|
||
var setupBox = new CMLeonOS.UI.Window(new CMLeonOS.UI.Rect(5, 5, 70, 12), "Admin Account Setup", () => { }, true);
|
||
setupBox.Render();
|
||
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.White, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 7);
|
||
global::System.Console.Write("Username: ");
|
||
string username = global::System.Console.ReadLine();
|
||
|
||
while (string.IsNullOrWhiteSpace(username))
|
||
{
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.Red, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 24);
|
||
global::System.Console.Write("Username cannot be empty. ");
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.White, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 7);
|
||
global::System.Console.Write("Username: ");
|
||
username = global::System.Console.ReadLine();
|
||
}
|
||
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.White, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 8);
|
||
global::System.Console.Write("Password: ");
|
||
string password = ReadPassword();
|
||
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.White, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 9);
|
||
global::System.Console.Write("Confirm Password: ");
|
||
string confirmPassword = ReadPassword();
|
||
|
||
while (password != confirmPassword)
|
||
{
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.Red, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 24);
|
||
global::System.Console.Write("Passwords do not match. Please try again. ");
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.White, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 7);
|
||
global::System.Console.Write("Username: ");
|
||
username = global::System.Console.ReadLine();
|
||
|
||
while (string.IsNullOrWhiteSpace(username))
|
||
{
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.Red, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 24);
|
||
global::System.Console.Write("Username cannot be empty. ");
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.White, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 7);
|
||
global::System.Console.Write("Username: ");
|
||
username = global::System.Console.ReadLine();
|
||
}
|
||
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.White, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 8);
|
||
global::System.Console.Write("Password: ");
|
||
password = ReadPassword();
|
||
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.White, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 9);
|
||
global::System.Console.Write("Confirm Password: ");
|
||
confirmPassword = ReadPassword();
|
||
}
|
||
|
||
try
|
||
{
|
||
User adminUser = new User
|
||
{
|
||
Username = username,
|
||
Password = password,
|
||
IsAdmin = true
|
||
};
|
||
users.Add(adminUser);
|
||
SaveUsers();
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.Green, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 24);
|
||
global::System.Console.Write("Admin user created successfully! ");
|
||
|
||
global::System.Console.Clear();
|
||
titleBar.Render();
|
||
|
||
var hostnameBox = new CMLeonOS.UI.Window(new CMLeonOS.UI.Rect(5, 5, 70, 8), "Hostname Setup", () => { }, true);
|
||
hostnameBox.Render();
|
||
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.White, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 7);
|
||
global::System.Console.Write("Hostname: ");
|
||
string hostname = global::System.Console.ReadLine();
|
||
|
||
while (string.IsNullOrWhiteSpace(hostname))
|
||
{
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.Red, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 24);
|
||
global::System.Console.Write("Hostname cannot be empty. ");
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.White, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 7);
|
||
global::System.Console.Write("Hostname: ");
|
||
hostname = global::System.Console.ReadLine();
|
||
}
|
||
|
||
if (users.Count > 0)
|
||
{
|
||
users[0].Hostname = hostname;
|
||
SaveUsers();
|
||
}
|
||
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.Green, global::System.ConsoleColor.Black);
|
||
global::System.Console.SetCursorPosition(7, 24);
|
||
global::System.Console.Write("Hostname set successfully! ");
|
||
global::System.Threading.Thread.Sleep(2000);
|
||
|
||
CMLeonOS.UI.TUIHelper.SetColors(global::System.ConsoleColor.White, global::System.ConsoleColor.Black);
|
||
global::System.Console.Clear();
|
||
global::System.Console.SetCursorPosition(30, 12);
|
||
global::System.Console.Write("Setup completed!");
|
||
global::System.Console.SetCursorPosition(20, 13);
|
||
global::System.Console.Write("System will restart in 3 seconds...");
|
||
global::System.Threading.Thread.Sleep(3000);
|
||
|
||
Sys.Power.Reboot();
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
ShowError($"Error creating admin user: {ex.Message}");
|
||
}
|
||
}
|
||
|
||
private void CreateUserFolder(string username)
|
||
{
|
||
try
|
||
{
|
||
Console.WriteLine($"Creating user folder for {username}...");
|
||
|
||
// 在user文件夹下创建用户文件夹
|
||
string userFolderPath = Path.Combine(@"0:\user", username);
|
||
|
||
// 检查用户文件夹是否存在
|
||
if (!Directory.Exists(userFolderPath))
|
||
{
|
||
Directory.CreateDirectory(userFolderPath);
|
||
Console.WriteLine($"Created user folder for {username}.");
|
||
}
|
||
else
|
||
{
|
||
Console.WriteLine($"User folder for {username} already exists.");
|
||
}
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
ShowError($"Error creating user folder: {ex.Message}");
|
||
}
|
||
}
|
||
|
||
public bool Login()
|
||
{
|
||
Console.WriteLine("====================================");
|
||
Console.WriteLine(" System Login");
|
||
Console.WriteLine("====================================");
|
||
// Console.ReadKey(true);
|
||
|
||
// 检测ALT+Space按键
|
||
bool useFixMode = false;
|
||
ConsoleKeyInfo keyInfo;
|
||
try
|
||
{
|
||
if (fixmode == true) {
|
||
keyInfo = Console.ReadKey(true);
|
||
if (keyInfo.Key == ConsoleKey.Spacebar && (keyInfo.Modifiers & ConsoleModifiers.Alt) != 0)
|
||
{
|
||
// 检测到ALT+Space,进入修复模式
|
||
useFixMode = true;
|
||
Console.WriteLine();
|
||
Console.WriteLine("Fix Mode Activated");
|
||
Console.Write("Enter fix code: ");
|
||
|
||
string fixCode = "";
|
||
while (true)
|
||
{
|
||
var codeKey = Console.ReadKey(true);
|
||
if (codeKey.Key == ConsoleKey.Enter)
|
||
{
|
||
Console.WriteLine();
|
||
break;
|
||
}
|
||
else if (codeKey.Key == ConsoleKey.Backspace)
|
||
{
|
||
if (fixCode.Length > 0)
|
||
{
|
||
fixCode = fixCode.Substring(0, fixCode.Length - 1);
|
||
}
|
||
}
|
||
else
|
||
{
|
||
fixCode += codeKey.KeyChar;
|
||
Console.Write(codeKey.KeyChar);
|
||
}
|
||
}
|
||
|
||
if (fixCode == "FixMyComputer")
|
||
{
|
||
Console.WriteLine("Fix mode enabled!");
|
||
}
|
||
else
|
||
{
|
||
Console.WriteLine("Invalid fix code. Exiting fix mode.");
|
||
useFixMode = false;
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
// 正常登录流程
|
||
Console.Write("Username: ");
|
||
string username = Console.ReadLine();
|
||
|
||
if (string.IsNullOrWhiteSpace(username))
|
||
{
|
||
ShowError("Username cannot be empty.");
|
||
return false;
|
||
}
|
||
|
||
Console.Write("Password: ");
|
||
string password = ReadPassword();
|
||
|
||
// 查找用户
|
||
User foundUser = null;
|
||
foreach (User user in users)
|
||
{
|
||
if (user.Username.ToLower() == username.ToLower())
|
||
{
|
||
foundUser = user;
|
||
break;
|
||
}
|
||
}
|
||
|
||
if (foundUser == null)
|
||
{
|
||
ShowError("User not found.");
|
||
return false;
|
||
}
|
||
|
||
// 使用SHA256加密输入的密码后比较
|
||
string hashedInputPassword = HashPasswordSha256(password);
|
||
// Console.WriteLine($"Hashed Input Password: {hashedInputPassword}");
|
||
// Console.WriteLine($"Stored Password: {foundUser.Password}");
|
||
|
||
if (foundUser.Password != hashedInputPassword)
|
||
{
|
||
ShowError("Invalid password.");
|
||
return false;
|
||
}
|
||
|
||
ShowSuccess("Login successful!");
|
||
Console.Beep();
|
||
|
||
// 设置当前登录用户
|
||
currentLoggedInUser = foundUser;
|
||
|
||
// 创建用户文件夹
|
||
CreateUserFolder(foundUser.Username);
|
||
|
||
return true;
|
||
}
|
||
}
|
||
catch
|
||
{
|
||
// 如果读取按键失败,使用普通登录
|
||
ShowError("Error reading key input. Using normal login.");
|
||
return false;
|
||
}
|
||
|
||
// 如果使用了修复模式,返回true
|
||
if (useFixMode)
|
||
{
|
||
return true;
|
||
}
|
||
|
||
return false;
|
||
}
|
||
|
||
public bool AddUser(string args, bool isAdmin)
|
||
{
|
||
Console.WriteLine("====================================");
|
||
Console.WriteLine($" Add {(isAdmin ? "Admin" : "User")}");
|
||
Console.WriteLine("====================================");
|
||
|
||
string[] parts = args.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
|
||
if (parts.Length < 2)
|
||
{
|
||
ShowError("Error: Please specify username and password");
|
||
ShowError($"Usage: user add {(isAdmin ? "admin" : "user")} <username> <password>");
|
||
return false;
|
||
}
|
||
|
||
string username = parts[0];
|
||
string password = parts[1];
|
||
|
||
// 检查用户名是否已存在
|
||
foreach (User user in users)
|
||
{
|
||
if (user.Username.ToLower() == username.ToLower())
|
||
{
|
||
ShowError($"Error: User '{username}' already exists.");
|
||
return false;
|
||
}
|
||
}
|
||
|
||
try
|
||
{
|
||
User newUser = new User
|
||
{
|
||
Username = username,
|
||
Password = password,
|
||
IsAdmin = isAdmin
|
||
};
|
||
users.Add(newUser);
|
||
SaveUsers();
|
||
|
||
// 创建用户文件夹
|
||
CreateUserFolder(username);
|
||
|
||
ShowSuccess($"{(isAdmin ? "Admin" : "User")} '{username}' created successfully!");
|
||
ShowSuccess("You shall restart the system to apply the changes.");
|
||
|
||
return true;
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
ShowError($"Error adding user: {ex.Message}");
|
||
return false;
|
||
}
|
||
}
|
||
|
||
public bool DeleteUser(string username)
|
||
{
|
||
Console.WriteLine("====================================");
|
||
Console.WriteLine(" Delete User");
|
||
Console.WriteLine("====================================");
|
||
|
||
if (string.IsNullOrWhiteSpace(username))
|
||
{
|
||
ShowError("Error: Please specify username");
|
||
ShowError("Usage: user delete <username>");
|
||
return false;
|
||
}
|
||
|
||
// 查找用户
|
||
User foundUser = null;
|
||
foreach (User user in users)
|
||
{
|
||
if (user.Username.ToLower() == username.ToLower())
|
||
{
|
||
foundUser = user;
|
||
break;
|
||
}
|
||
}
|
||
|
||
if (foundUser == null)
|
||
{
|
||
ShowError($"Error: User '{username}' not found.");
|
||
return false;
|
||
}
|
||
|
||
// 检查是否是最后一个管理员
|
||
int adminCount = 0;
|
||
foreach (User user in users)
|
||
{
|
||
if (user.IsAdmin)
|
||
{
|
||
adminCount++;
|
||
}
|
||
}
|
||
|
||
if (foundUser.IsAdmin && adminCount <= 1)
|
||
{
|
||
ShowError("Error: Cannot delete the last admin user.");
|
||
return false;
|
||
}
|
||
|
||
try
|
||
{
|
||
users.Remove(foundUser);
|
||
SaveUsers();
|
||
ShowSuccess($"User '{username}' deleted successfully!");
|
||
return true;
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
ShowError($"Error deleting user: {ex.Message}");
|
||
return false;
|
||
}
|
||
}
|
||
|
||
public void ListUsers()
|
||
{
|
||
Console.WriteLine("====================================");
|
||
Console.WriteLine(" User List");
|
||
Console.WriteLine("====================================");
|
||
|
||
if (users.Count == 0)
|
||
{
|
||
Console.WriteLine("No users found.");
|
||
return;
|
||
}
|
||
|
||
Console.WriteLine();
|
||
foreach (User user in users)
|
||
{
|
||
string userType = user.IsAdmin ? "[ADMIN]" : "[USER]";
|
||
Console.WriteLine($"{userType} {user.Username}");
|
||
}
|
||
}
|
||
|
||
public bool ChangePassword()
|
||
{
|
||
Console.WriteLine("====================================");
|
||
Console.WriteLine(" Change Password");
|
||
Console.WriteLine("====================================");
|
||
|
||
Console.Write("Please enter your current password: ");
|
||
string currentPassword = ReadPassword();
|
||
|
||
// 检查是否有用户登录
|
||
if (currentLoggedInUser == null)
|
||
{
|
||
ShowError("Error: No user logged in.");
|
||
return false;
|
||
}
|
||
|
||
Console.Write("Please enter your new password: ");
|
||
string newPassword = ReadPassword();
|
||
|
||
Console.WriteLine("Please confirm your new password: ");
|
||
string confirmPassword = ReadPassword();
|
||
|
||
if (newPassword == confirmPassword)
|
||
{
|
||
try
|
||
{
|
||
currentLoggedInUser.Password = newPassword;
|
||
SaveUsers();
|
||
ShowSuccess("Password changed successfully!");
|
||
return true;
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
ShowError($"Error changing password: {ex.Message}");
|
||
return false;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
ShowError("New passwords do not match.");
|
||
return false;
|
||
}
|
||
}
|
||
|
||
private string ReadPassword()
|
||
{
|
||
string password = "";
|
||
while (true)
|
||
{
|
||
ConsoleKeyInfo keyInfo = Console.ReadKey(true);
|
||
if (keyInfo.Key == ConsoleKey.Enter)
|
||
{
|
||
Console.WriteLine();
|
||
break;
|
||
}
|
||
else if (keyInfo.Key == ConsoleKey.Backspace)
|
||
{
|
||
if (password.Length > 0)
|
||
{
|
||
password = password.Substring(0, password.Length - 1);
|
||
int cursorLeft = Console.CursorLeft;
|
||
int cursorTop = Console.CursorTop;
|
||
if (cursorLeft > 0)
|
||
{
|
||
Console.SetCursorPosition(cursorLeft - 1, cursorTop);
|
||
Console.Write(" ");
|
||
Console.SetCursorPosition(cursorLeft - 1, cursorTop);
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
password += keyInfo.KeyChar;
|
||
Console.Write("*");
|
||
}
|
||
}
|
||
return password;
|
||
}
|
||
}
|
||
}
|