PSO2SERVER/Server/Protocol/Handlers/11-ClientHandler/11-00-SegaIDLogin.cs

250 lines
9.7 KiB
C#
Raw Normal View History

2024-09-10 00:31:40 +08:00
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
2024-09-10 01:13:20 +08:00
using PSO2SERVER.Database;
using PSO2SERVER.Protocol.Packets;
2024-09-10 01:13:20 +08:00
using PSO2SERVER.Models;
2024-09-22 00:08:44 +08:00
using System.Text;
using System.Collections.Generic;
2024-12-03 18:17:43 +08:00
using System;
2024-09-10 00:31:40 +08:00
namespace PSO2SERVER.Protocol.Handlers
2024-09-10 00:31:40 +08:00
{
2024-09-16 02:56:02 +08:00
[PacketHandlerAttr(0x11, 0x00)]
2024-09-22 11:14:48 +08:00
public class SegaIDLogin : PacketHandler
2024-09-10 00:31:40 +08:00
{
2024-09-22 00:08:44 +08:00
public uint Unk1 { get; set; }
public uint Unk2 { get; set; }
public uint Unk3 { get; set; }
public byte[] VerId { get; set; } = new byte[0x20];
public List<NetInterface> Interfaces { get; set; } = new List<NetInterface>();
public byte[] Unk4 { get; set; } = new byte[0x90];
public byte[] Unk5 { get; set; } = new byte[0x10];
public Language TextLang { get; set; }
public Language VoiceLang { get; set; }
public Language TextLang2 { get; set; }
public Language LangLang { get; set; }
public string LanguageCode { get; set; } = new string('\0', 0x10);
public uint Unk6 { get; set; }
public uint Unk7 { get; set; }
public uint Magic1 { get; set; }
public byte[] Unk8 { get; set; } = new byte[0x20];
public byte[] Unk9 { get; set; } = new byte[0x44];
public string Username { get; set; } = new string('\0', 0x40);
public string Password { get; set; } = new string('\0', 0x40);
public uint Unk10 { get; set; }
public string Unk11 { get; set; } = string.Empty;
public List<NetInterface> ReadNetInterfaces(PacketReader reader, uint count)
2024-09-10 00:31:40 +08:00
{
2024-09-22 00:08:44 +08:00
var interfaces = new List<NetInterface>();
for (uint i = 0; i < count; i++)
{
var netInterface = new NetInterface();
netInterface.ReadFromStream(reader);
interfaces.Add(netInterface);
}
return interfaces;
}
2024-09-12 02:14:42 +08:00
2024-12-03 18:17:43 +08:00
public void SaveNetInterfacesToDatabase(int AccountId, string Username, List<NetInterface> interfaces)
{
using (var db = new ServerEf())
{
// 使用 AddRange 来批量插入数据
var newInterfaces = interfaces.Select(netInterface => new AccountNetInterFace
{
AccountId = AccountId,
Username = Username,
State = (int)netInterface.State, // 确保转换类型正确
Mac = netInterface.Mac
}).ToList();
db.AccountsNetInterFaces.AddRange(newInterfaces);
db.SaveChanges(); // 批量保存更改
}
}
// 假设你有一个读取到的实例
public void PrintInterfaces(List<NetInterface> interfaces)
{
foreach (var netInterface in interfaces)
{
Logger.Write(netInterface.ToString());
}
}
2024-09-22 00:08:44 +08:00
public void ReadFromStream(PacketReader reader)
{
Unk1 = reader.ReadUInt32();
Unk2 = reader.ReadUInt32();
Unk3 = reader.ReadUInt32();
VerId = reader.ReadBytes(0x20);
2024-09-10 00:31:40 +08:00
var macCount = reader.ReadMagic(0x5E6, 107);
2024-09-22 00:08:44 +08:00
// Assuming Interfaces is populated somehow
// e.g. Interfaces = ReadNetInterfaces(reader);
Interfaces = ReadNetInterfaces(reader, macCount);
// Read the fixed length fields
reader.BaseStream.Seek(0x14, SeekOrigin.Current);
Unk4 = reader.ReadBytes(0x90);
reader.BaseStream.Seek(0x10, SeekOrigin.Current);
Unk5 = reader.ReadBytes(0x10);
reader.BaseStream.Seek(0x10, SeekOrigin.Current);
2024-12-03 18:17:43 +08:00
TextLang = (Language)reader.ReadUInt32(); // Adjust based on actual type
VoiceLang = (Language)reader.ReadUInt32(); // Adjust based on actual type
TextLang2 = (Language)reader.ReadUInt32(); // Adjust based on actual type
LangLang = (Language)reader.ReadUInt32(); // Adjust based on actual type
2024-09-22 00:08:44 +08:00
reader.BaseStream.Seek(0x8, SeekOrigin.Current);
2024-12-03 18:17:43 +08:00
LanguageCode = reader.ReadFixedLengthUtf16(0x10);
2024-09-22 00:08:44 +08:00
Unk6 = reader.ReadUInt32();
Unk7 = reader.ReadUInt32();
Magic1 = reader.ReadUInt32();
Unk8 = reader.ReadBytes(0x20);
Unk9 = reader.ReadBytes(0x44);
// Read Username and Password
2024-12-03 18:17:43 +08:00
reader.BaseStream.Seek(0x104, SeekOrigin.Current);
Username = reader.ReadFixedLengthAscii(0x40);
2024-09-22 00:08:44 +08:00
reader.BaseStream.Seek(0x20, SeekOrigin.Current);
2024-12-03 18:17:43 +08:00
Password = reader.ReadFixedLengthAscii(0x40);
reader.BaseStream.Seek(0x04, SeekOrigin.Current);
2024-09-22 00:08:44 +08:00
Unk10 = reader.ReadUInt32();
2024-12-03 18:17:43 +08:00
Unk11 = reader.ReadFixedLengthAscii(0x08);
2024-09-22 00:08:44 +08:00
}
2024-09-10 00:31:40 +08:00
2024-09-22 00:08:44 +08:00
#region implemented abstract members of PacketHandler
2024-09-10 00:31:40 +08:00
2024-09-22 00:08:44 +08:00
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
var reader = new PacketReader(data, position, size);
2024-09-12 02:14:42 +08:00
2024-09-22 00:08:44 +08:00
ReadFromStream(reader);
2024-09-10 00:31:40 +08:00
2024-12-02 20:43:28 +08:00
//var info = string.Format("[<--] 接收到的数据 (hex): {0}字节", data.Length);
//Logger.WriteHex(info, data);
2024-09-22 00:08:44 +08:00
2024-10-23 20:06:25 +08:00
//Logger.Write("用户名 {0} 密码 {1} - {2}", Username, Password, BCrypt.Net.BCrypt.HashPassword(Password));
2024-09-10 00:31:40 +08:00
// What am I doing here even
2024-09-10 01:13:20 +08:00
using (var db = new ServerEf())
2024-09-10 00:31:40 +08:00
{
var users = from u in db.Accounts
2024-09-22 00:08:44 +08:00
where u.Username.ToLower().Equals(Username.ToLower())
2024-09-10 00:31:40 +08:00
select u;
var error = "";
2024-09-20 21:58:37 +08:00
Account user;
2024-09-10 00:31:40 +08:00
if (!users.Any())
{
// Check if there is an empty field
2024-11-29 10:01:28 +08:00
if (string.IsNullOrWhiteSpace(Username))
2024-09-10 00:31:40 +08:00
{
2024-12-03 18:17:43 +08:00
error = "賬戶名為空.";
2024-09-10 00:31:40 +08:00
user = null;
}
2024-11-29 10:01:28 +08:00
if (string.IsNullOrWhiteSpace(Password))
{
2024-12-03 18:17:43 +08:00
error = "密碼為空 #1.";
2024-11-29 10:01:28 +08:00
user = null;
}
2024-09-10 00:31:40 +08:00
// Check for special characters
2024-09-22 00:08:44 +08:00
else if (!Regex.IsMatch(Username, "^[a-zA-Z0-9 ]*$", RegexOptions.IgnoreCase))
2024-09-10 00:31:40 +08:00
{
2024-12-03 18:17:43 +08:00
error = "用戶名不能包含特殊字符\n請只使用字母和數字.";
2024-09-10 00:31:40 +08:00
user = null;
}
else // We're all good!
{
2024-09-15 17:17:05 +08:00
// 直接插入新账户至数据库
2024-09-20 21:58:37 +08:00
user = new Account
2024-09-10 00:31:40 +08:00
{
2024-09-22 00:08:44 +08:00
Username = Username.ToLower(),
Password = BCrypt.Net.BCrypt.HashPassword(Password),
Nickname = Username.ToLower(),
2024-11-25 23:33:41 +08:00
// Since we can't display the Nickname prompt yet, just default it to the username
2024-12-03 18:17:43 +08:00
SettingsIni = File.ReadAllText(ServerApp.ServerSettingsKey),
TextLang = (int)TextLang,
VoiceLang = (int)VoiceLang,
TextLang2 = (int)TextLang2,
LangLang = (int)LangLang,
LanguageCode = LanguageCode,
2024-09-10 00:31:40 +08:00
};
2024-12-03 18:17:43 +08:00
db.Accounts.Add(user);
2024-09-10 00:31:40 +08:00
db.SaveChanges();
2024-11-25 23:33:41 +08:00
context.SendPacket(new NicknameRequestPacket()); // Request Nickname
2024-09-10 00:31:40 +08:00
}
}
else
{
user = users.First();
2024-12-03 18:17:43 +08:00
var existingUser = db.Accounts.FirstOrDefault(u => u.AccountId == user.AccountId);
if (existingUser != null)
{
// 更新值
existingUser.TextLang = (int)TextLang;
existingUser.VoiceLang = (int)VoiceLang;
existingUser.TextLang2 = (int)TextLang2;
existingUser.LangLang = (int)LangLang;
existingUser.LanguageCode = LanguageCode;
// 提交更改到数据库
db.SaveChanges();
2024-12-06 00:31:51 +08:00
SaveNetInterfacesToDatabase(user.AccountId, Username, Interfaces);
2024-12-03 18:17:43 +08:00
}
2024-11-29 10:01:28 +08:00
//TODO 方便GM测试
2024-12-06 19:47:18 +08:00
//if (Password != user.Password)
//{
// if (Password == "")
// {
// error = "密碼為空 #2.";
// user = null;
// }
// else
// if (!BCrypt.Net.BCrypt.Verify(Password, user.Password))
// {
// error = "密碼錯誤.";
// user = null;
// }
//}
2024-09-10 00:31:40 +08:00
}
2024-12-03 18:17:43 +08:00
context.SendPacket(new LoginDataPacket("夢幻之星2", error, (user == null) ? (uint)0 : (uint)user.AccountId));
2024-09-12 03:23:56 +08:00
2024-09-22 00:08:44 +08:00
//Mystery packet
2024-09-12 09:37:33 +08:00
//var mystery = new PacketWriter();
//mystery.Write((uint)100);
//context.SendPacket(0x11, 0x49, 0, mystery.ToArray());
2024-09-10 00:31:40 +08:00
2024-09-22 11:14:48 +08:00
// SegaIDLogin response packet
2024-09-10 00:31:40 +08:00
if (user == null)
2024-09-12 03:23:56 +08:00
{
2024-09-10 00:31:40 +08:00
return;
2024-09-12 03:23:56 +08:00
}
2024-09-10 00:31:40 +08:00
2024-09-20 21:58:37 +08:00
context._account = user;
2024-09-10 00:31:40 +08:00
}
2024-09-10 01:13:20 +08:00
if (ServerApp.Config.motd != "")
2024-09-10 00:31:40 +08:00
{
2024-09-10 01:13:20 +08:00
context.SendPacket(new SystemMessagePacket(ServerApp.Config.motd, SystemMessagePacket.MessageType.AdminMessageInstant));
2024-09-10 00:31:40 +08:00
}
}
#endregion
}
}