mirror-ac/server/Program.cs

106 lines
3 KiB
C#
Raw Normal View History

2023-09-02 17:56:46 +02:00
using Serilog;
2023-09-07 19:49:36 +02:00
using server.Database;
2023-09-09 17:36:19 +02:00
using server.Database.Entity;
using server.Database.Model;
using System.Configuration;
2023-09-02 17:56:46 +02:00
using System.Net;
2023-08-29 19:36:58 +02:00
using System.Net.Sockets;
using System.Reflection.Metadata.Ecma335;
using System.Text;
namespace server
2023-09-02 17:56:46 +02:00
{
public class Program
{
public static async Task Main(string[] args)
{
using var logger = new LoggerConfiguration()
.WriteTo.Console()
.CreateLogger();
2023-09-08 20:41:11 +02:00
2023-09-09 17:36:19 +02:00
using (var context = new ModelContext())
{
context.Database.EnsureCreated();
Database.Entity.UserEntity user = new Database.Entity.UserEntity(logger, context);
user.IsBanned = false;
user.Steam64Id = 123123123;
user.HardwareConfigurationEntity = new HardwareConfigurationEntity(context);
user.HardwareConfigurationEntity.MotherboardSerial = 987654321;
user.HardwareConfigurationEntity.DeviceDrive0Serial = 123456789;
if (user.IsUsersHardwareBanned())
{
logger.Information("Users hardware is banned");
}
else
{
if (user.CheckIfUserExists())
{
if (user.CheckIfUserIsBanned())
{
logger.Information("User is banned");
}
else
{
logger.Information("User is not banned");
}
}
else
{
logger.Information("User does not exist");
user.InsertUser();
}
}
await context.SaveChangesAsync();
}
2023-09-07 19:49:36 +02:00
2023-09-02 17:56:46 +02:00
Server server = new Server(logger);
await server.Listen();
}
}
}
/*namespace server
2023-08-29 19:36:58 +02:00
{
public class Program
{
public static async Task Main(string[] args)
{
await Program.Listen();
}
public static async Task Listen()
{
var ipEndPoint = new IPEndPoint(IPAddress.Any, 8888);
TcpListener listener = new(ipEndPoint);
try
{
listener.Start();
using TcpClient handler = await listener.AcceptTcpClientAsync();
await using NetworkStream stream = handler.GetStream();
stream.BeginRead(new byte[1024], 0, 1024, Callback, null);
var message = $"📅 {DateTime.Now} 🕛";
var dateTimeBytes = Encoding.UTF8.GetBytes(message);
await stream.WriteAsync(dateTimeBytes);
}
finally
{
listener.Stop();
}
}
public static void Callback(IAsyncResult ar)
{
Console.WriteLine("Is ocmpleted: {0}", ar.IsCompleted);
}
}
2023-09-02 17:56:46 +02:00
}*/