229 lines
8.1 KiB
C#
229 lines
8.1 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Net.Sockets;
|
|
using System.Text;
|
|
using Client;
|
|
using Newtonsoft.Json;
|
|
using System.Security.Cryptography;
|
|
|
|
namespace Server
|
|
{
|
|
class Client
|
|
{
|
|
private Communication communication;
|
|
private TcpClient tcpClient;
|
|
private NetworkStream stream;
|
|
private byte[] buffer = new byte[1024];
|
|
private byte[] totalBuffer = new byte[1024];
|
|
private int totalBufferReceived = 0;
|
|
private SaveData saveData;
|
|
private string username = null;
|
|
private DateTime sessionStart;
|
|
private string fileName;
|
|
|
|
|
|
|
|
public string Username { get; set; }
|
|
|
|
public Client(Communication communication, TcpClient tcpClient)
|
|
{
|
|
this.sessionStart = DateTime.Now;
|
|
this.communication = communication;
|
|
this.tcpClient = tcpClient;
|
|
this.stream = this.tcpClient.GetStream();
|
|
this.fileName = Directory.GetCurrentDirectory() + "/userInfo.dat";
|
|
stream.BeginRead(buffer, 0, buffer.Length, new AsyncCallback(OnRead), null);
|
|
}
|
|
|
|
private void OnRead(IAsyncResult ar)
|
|
{
|
|
int receivedBytes = this.stream.EndRead(ar);
|
|
|
|
if (totalBufferReceived + receivedBytes > 1024)
|
|
{
|
|
throw new OutOfMemoryException("buffer too small");
|
|
}
|
|
Array.Copy(buffer, 0, totalBuffer, totalBufferReceived, receivedBytes);
|
|
totalBufferReceived += receivedBytes;
|
|
|
|
int expectedMessageLength = BitConverter.ToInt32(totalBuffer, 0);
|
|
while (totalBufferReceived >= expectedMessageLength)
|
|
{
|
|
//volledig packet binnen
|
|
byte[] messageBytes = new byte[expectedMessageLength];
|
|
Array.Copy(totalBuffer, 0, messageBytes, 0, expectedMessageLength);
|
|
HandleData(messageBytes);
|
|
|
|
Array.Copy(totalBuffer, expectedMessageLength, totalBuffer, 0, (totalBufferReceived - expectedMessageLength)); //maybe unsafe idk
|
|
|
|
totalBufferReceived -= expectedMessageLength;
|
|
expectedMessageLength = BitConverter.ToInt32(totalBuffer, 0);
|
|
if (expectedMessageLength <= 5)
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
this.stream.BeginRead(this.buffer, 0, this.buffer.Length, new AsyncCallback(OnRead), null);
|
|
|
|
}
|
|
|
|
private void OnWrite(IAsyncResult ar)
|
|
{
|
|
this.stream.EndWrite(ar);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// handles all incoming data from the client
|
|
/// </summary>
|
|
/// <param name="message">including message length and messageId (can be changed)</param>
|
|
private void HandleData(byte[] message)
|
|
{
|
|
//Console.WriteLine("Data " + packet);
|
|
//JsonConvert.DeserializeObject(packet);
|
|
//0x01 Json
|
|
//0x01 Raw data
|
|
|
|
byte[] payloadbytes = new byte[BitConverter.ToInt32(message, 0) - 5];
|
|
|
|
Array.Copy(message, 5, payloadbytes, 0, payloadbytes.Length);
|
|
|
|
string identifier;
|
|
bool isJson = DataParser.getJsonIdentifier(message, out identifier);
|
|
if (isJson)
|
|
{
|
|
switch (identifier)
|
|
{
|
|
case DataParser.LOGIN:
|
|
string username;
|
|
string password;
|
|
bool worked = DataParser.GetUsernamePassword(payloadbytes, out username, out password);
|
|
if (worked)
|
|
{
|
|
if (verifyLogin(username, password))
|
|
{
|
|
Console.WriteLine("Log in");
|
|
this.username = username;
|
|
sendMessage(DataParser.getLoginResponse("OK"));
|
|
sendMessage(DataParser.getStartSessionJson());
|
|
}
|
|
else
|
|
{
|
|
sendMessage(DataParser.getLoginResponse("wrong username or password"));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
sendMessage(DataParser.getLoginResponse("invalid json"));
|
|
}
|
|
break;
|
|
case DataParser.START_SESSION:
|
|
this.saveData = new SaveData(Directory.GetCurrentDirectory() + "/" + this.username + "/" + sessionStart.ToString("yyyy-MM-dd HH-mm-ss"));
|
|
break;
|
|
case DataParser.STOP_SESSION:
|
|
this.saveData = null;
|
|
break;
|
|
case DataParser.SET_RESISTANCE:
|
|
worked = DataParser.getResistanceFromResponseJson(payloadbytes);
|
|
Console.WriteLine($"set resistance worked is " + worked);
|
|
//set resistance on doctor GUI
|
|
break;
|
|
default:
|
|
Console.WriteLine($"Received json with identifier {identifier}:\n{Encoding.ASCII.GetString(payloadbytes)}");
|
|
break;
|
|
}
|
|
saveData?.WriteDataJSON(Encoding.ASCII.GetString(payloadbytes));
|
|
|
|
Array.Copy(message, 5, payloadbytes, 0, message.Length - 5);
|
|
dynamic json = JsonConvert.DeserializeObject(Encoding.ASCII.GetString(payloadbytes));
|
|
|
|
}
|
|
else if (DataParser.isRawData(message))
|
|
{
|
|
// print the raw data
|
|
Console.WriteLine(BitConverter.ToString(payloadbytes));
|
|
// TODO change, checking for length is not that safe
|
|
if (payloadbytes.Length == 8)
|
|
{
|
|
saveData?.WriteDataRAWBike(payloadbytes);
|
|
}
|
|
else if (payloadbytes.Length == 2)
|
|
{
|
|
saveData?.WriteDataRAWBPM(payloadbytes);
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine("received raw data with weird lenght " + BitConverter.ToString(payloadbytes));
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|
|
private void sendMessage(byte[] message)
|
|
{
|
|
stream.BeginWrite(message, 0, message.Length, new AsyncCallback(OnWrite), null);
|
|
}
|
|
|
|
private bool verifyLogin(string username, string password)
|
|
{
|
|
|
|
|
|
if (!File.Exists(fileName))
|
|
{
|
|
File.Create(fileName);
|
|
Console.WriteLine("file doesnt exist");
|
|
newUsers(username, password);
|
|
Console.WriteLine("true");
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine("file exists, located at " + Path.GetFullPath(fileName));
|
|
string[] usernamesPasswords = File.ReadAllLines(fileName);
|
|
if (usernamesPasswords.Length == 0)
|
|
{
|
|
newUsers(username, password);
|
|
return true;
|
|
}
|
|
|
|
foreach (string s in usernamesPasswords)
|
|
{
|
|
string[] combo = s.Split(" ");
|
|
if (combo[0] == username)
|
|
{
|
|
Console.WriteLine("correct info");
|
|
return combo[1] == password;
|
|
}
|
|
|
|
}
|
|
Console.WriteLine("combo was not found in file");
|
|
|
|
}
|
|
Console.WriteLine("false");
|
|
return false;
|
|
|
|
}
|
|
|
|
private void newUsers(string username, string password)
|
|
{
|
|
|
|
Console.WriteLine("creating new entry in file");
|
|
using (StreamWriter sw = File.AppendText(fileName))
|
|
{
|
|
sw.WriteLine(username + " " + password);
|
|
}
|
|
}
|
|
|
|
public static string ByteArrayToString(byte[] ba)
|
|
{
|
|
StringBuilder hex = new StringBuilder(ba.Length * 2);
|
|
foreach (byte b in ba)
|
|
hex.AppendFormat("{0:x2}", b);
|
|
return hex.ToString();
|
|
}
|
|
}
|
|
}
|