Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/messenger/Message.java

68 lines
1.7 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.messenger;
import com.eu.habbo.Emulator;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
public class Message implements Runnable
{
private final int fromId;
private final int toId;
private String message;
private final int timestamp;
public Message(int fromId, int toId, String message)
{
this.fromId = fromId;
this.toId = toId;
this.message = message;
this.timestamp = Emulator.getIntUnixTimestamp();
}
@Override
public void run()
{
//TODO Turn into scheduler
if(Messenger.SAVE_PRIVATE_CHATS)
{
try (Connection connection = Emulator.getDatabase().getDataSource().getConnection(); PreparedStatement statement = connection.prepareStatement("INSERT INTO chatlogs_private (user_from_id, user_to_id, message, timestamp) VALUES (?, ?, ?, ?)"))
{
statement.setInt(1, this.fromId);
statement.setInt(2, this.toId);
statement.setString(3, this.message);
statement.setInt(4, this.timestamp);
statement.execute();
}
catch(SQLException e)
{
Emulator.getLogging().logSQLException(e);
}
}
}
public int getToId()
{
return this.toId;
}
public int getFromId() {
return this.fromId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message)
{
this.message = message;
}
public int getTimestamp() {
return this.timestamp;
}
}