Because git is dumb and kept this stuff here.

This commit is contained in:
NovaFox161
2018-08-26 15:13:42 -05:00
parent 96181390bd
commit c76c7b2a66
4 changed files with 0 additions and 1553 deletions

View File

@@ -1,103 +0,0 @@
package discal.api.database;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
/**
* Created by Nova Fox on 11/10/17.
* Website: www.cloudcraftgaming.com
* For Project: DisCal-Discord-Bot
*/
@SuppressWarnings({"unused", "WeakerAccess"})
public abstract class Database {
protected Connection connection;
/**
* Creates a new Database
*/
protected Database() {
this.connection = null;
}
/**
* Opens a connection with the database
*
* @return Opened connection
* @throws SQLException if the connection can not be opened
* @throws ClassNotFoundException if the driver cannot be found
*/
public abstract Connection openConnection() throws SQLException, ClassNotFoundException;
/**
* Checks if a connection is open with the database
*
* @return true if the connection is open
* @throws SQLException if the connection cannot be checked
*/
public boolean checkConnection() throws SQLException {
return connection != null && !connection.isClosed();
}
/**
* Gets the connection with the database
*
* @return Connection with the database, null if none
*/
public Connection getConnection() {
return connection;
}
/**
* Closes the connection with the database
*
* @return true if successful
* @throws SQLException if the connection cannot be closed
*/
public boolean closeConnection() throws SQLException {
if (connection == null)
return false;
connection.close();
return true;
}
/**
* Executes a SQL Query<br>
* <p>
* If the connection is closed, it will be opened
*
* @param query Query to be run
* @return the results of the query
* @throws SQLException If the query cannot be executed
* @throws ClassNotFoundException If the driver cannot be found; see {@link #openConnection()}
*/
public ResultSet querySQL(String query) throws SQLException, ClassNotFoundException {
if (!checkConnection())
openConnection();
Statement statement = connection.createStatement();
return statement.executeQuery(query);
}
/**
* Executes an Update SQL Query<br>
* See {@link java.sql.Statement#executeUpdate(String)}<br>
* If the connection is closed, it will be opened
*
* @param query Query to be run
* @return Result Code, see {@link java.sql.Statement#executeUpdate(String)}
* @throws SQLException If the query cannot be executed
* @throws ClassNotFoundException If the driver cannot be found; see {@link #openConnection()}
*/
public int updateSQL(String query) throws SQLException, ClassNotFoundException {
if (!checkConnection())
openConnection();
Statement statement = connection.createStatement();
return statement.executeUpdate(query);
}
}

View File

@@ -1,319 +0,0 @@
package discal.api.message;
import discal.api.DisCalAPI;
import discal.api.file.ReadFile;
import discal.api.object.GuildSettings;
import discal.logger.Logger;
import sx.blah.discord.api.internal.json.objects.EmbedObject;
import sx.blah.discord.handle.impl.events.guild.channel.message.MessageReceivedEvent;
import sx.blah.discord.handle.obj.IChannel;
import sx.blah.discord.handle.obj.IMessage;
import sx.blah.discord.handle.obj.IPrivateChannel;
import sx.blah.discord.handle.obj.IUser;
import sx.blah.discord.util.DiscordException;
import sx.blah.discord.util.MessageBuilder;
import sx.blah.discord.util.MissingPermissionsException;
import sx.blah.discord.util.RequestBuffer;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
/**
* Created by Nova Fox on 11/10/17.
* Website: www.cloudcraftgaming.com
* For Project: DisCal-Discord-Bot
*/
@SuppressWarnings("unchecked")
public class MessageManager {
public static String lineBreak = System.getProperty("line.separator");
private static Map<String, Map<String, String>> langs;
//Language handling
public static void loadLangs() {
langs = ReadFile.readAllLangFiles();
}
public static boolean reloadLangs() {
try {
langs = ReadFile.readAllLangFiles();
return true;
} catch (Exception e) {
Logger.getLogger().exception(null, "Failed to reload lang files!", e, MessageManager.class, true);
return false;
}
}
public static List<String> getLangs() {
return new ArrayList<>(langs.keySet());
}
public static boolean isSupported(String _value) {
for (String l : langs.keySet()) {
if (l.equalsIgnoreCase(_value))
return true;
}
return false;
}
public static String getValidLang(String _value) {
for (String l : langs.keySet()) {
if (l.equalsIgnoreCase(_value))
return l;
}
return "ENGLISH";
}
public static String getMessage(String key, GuildSettings settings) {
Map<String, String> messages;
if (settings.getLang() != null && langs.containsKey(settings.getLang()))
messages = langs.get(settings.getLang());
else
messages = langs.get("ENGLISH");
return messages.getOrDefault(key, "***FAILSAFE MESSAGE*** MESSAGE NOT FOUND!! Message requested: " + key).replace("%lb%", lineBreak);
}
public static String getMessage(String key, String var, String replace, GuildSettings settings) {
Map<String, String> messages;
if (settings.getLang() != null && langs.containsKey(settings.getLang()))
messages = langs.get(settings.getLang());
else
messages = langs.get("ENGLISH");
return messages.getOrDefault(key, "***FAILSAFE MESSAGE*** MESSAGE NOT FOUND!! Message requested: " + key).replace(var, replace).replace("%lb%", lineBreak);
}
//Sending messages and shit handling...
/**
* Sends a message via Discord as DisCal.
*
* @param message The message to send, with formatting.
* @param event The Event received (to send to the same channel and guild).
*/
public static IMessage sendMessage(String message, MessageReceivedEvent event) {
return RequestBuffer.request(() -> {
try {
return new MessageBuilder(DisCalAPI.getAPI().getClient()).appendContent(message).withChannel(event.getMessage().getChannel()).build();
} catch (DiscordException | MissingPermissionsException e) {
//Failed to send message.
return null;
}
}).get();
}
/**
* Sends a message via Discord as DisCal.
*
* @param message The message to send, with formatting.
* @param channel The channel to send the message to.
*/
public static IMessage sendMessage(String message, IChannel channel) {
return RequestBuffer.request(() -> {
try {
return new MessageBuilder(DisCalAPI.getAPI().getClient()).appendContent(message).withChannel(channel).build();
} catch (DiscordException | MissingPermissionsException e) {
//Failed to send message.
return null;
}
}).get();
}
/**
* Sends a message via Discord as DisCal.
*
* @param embed The EmbedObject to append to the message.
* @param event The event received (to send to the same channel and guild).
*/
public static IMessage sendMessage(EmbedObject embed, MessageReceivedEvent event) {
return RequestBuffer.request(() -> {
try {
return new MessageBuilder(DisCalAPI.getAPI().getClient()).withEmbed(embed).withChannel(event.getMessage().getChannel()).build();
} catch (DiscordException | MissingPermissionsException e) {
//Failed to send message.
return null;
}
}).get();
}
/**
* Sends a message via Discord as DisCal.
*
* @param embed The EmbedObject to append to the message.
* @param channel The channel to send the message to.
*/
public static IMessage sendMessage(EmbedObject embed, IChannel channel) {
return RequestBuffer.request(() -> {
try {
return new MessageBuilder(DisCalAPI.getAPI().getClient()).withEmbed(embed).withChannel(channel).build();
} catch (DiscordException | MissingPermissionsException e) {
//Failed to send message.
return null;
}
}).get();
}
/**
* Sends a message via Discord as DisCal.
*
* @param embed The EmbedObject to append to the message.
* @param message The message to send, with formatting.
* @param event The event received (to send to the same channel and guild).
*/
public static IMessage sendMessage(EmbedObject embed, String message, MessageReceivedEvent event) {
return RequestBuffer.request(() -> {
try {
return new MessageBuilder(DisCalAPI.getAPI().getClient()).appendContent(message).withEmbed(embed).withChannel(event.getMessage().getChannel()).build();
} catch (DiscordException | MissingPermissionsException e) {
//Failed to send message.
return null;
}
}).get();
}
/**
* Sends a message via Discord as DisCal.
*
* @param embed The EmbedObject to append to the message.
* @param message The message to send, with formatting.
* @param channel The channel to send the message to.
*/
public static IMessage sendMessage(EmbedObject embed, String message, IChannel channel) {
return RequestBuffer.request(() -> {
try {
return new MessageBuilder(DisCalAPI.getAPI().getClient()).appendContent(message).withEmbed(embed).withChannel(channel).build();
} catch (DiscordException | MissingPermissionsException e) {
//Failed to send message.
return null;
}
}).get();
}
public static void sendMessageAsync(EmbedObject embedObject, String message, IChannel channel) {
RequestBuffer.request(() -> {
try {
new MessageBuilder(DisCalAPI.getAPI().getClient()).appendContent(message).withEmbed(embedObject).withChannel(channel).build();
} catch (DiscordException | MissingPermissionsException e) {
//No reason to print exception.
}
});
}
public static IMessage sendDirectMessage(String message, IUser user) {
return RequestBuffer.request(() -> {
try {
IPrivateChannel pc = user.getOrCreatePMChannel();
return new MessageBuilder(DisCalAPI.getAPI().getClient()).withChannel(pc).appendContent(message).build();
} catch (DiscordException | MissingPermissionsException e) {
//Failed to send message.
return null;
}
}).get();
}
public static IMessage sendDirectMessage(EmbedObject embed, IUser user) {
return RequestBuffer.request(() -> {
try {
IPrivateChannel pc = user.getOrCreatePMChannel();
return new MessageBuilder(DisCalAPI.getAPI().getClient()).withChannel(pc).withEmbed(embed).build();
} catch (DiscordException | MissingPermissionsException e) {
//Failed to send message.
return null;
}
}).get();
}
public static IMessage sendDirectMessage(String message, EmbedObject embed, IUser user) {
return RequestBuffer.request(() -> {
try {
IPrivateChannel pc = user.getOrCreatePMChannel();
return new MessageBuilder(DisCalAPI.getAPI().getClient()).withChannel(pc).appendContent(message).withEmbed(embed).build();
} catch (DiscordException | MissingPermissionsException e) {
//Failed to send message.
return null;
}
}).get();
}
public static boolean deleteMessage(MessageReceivedEvent event) {
try {
return RequestBuffer.request(() -> {
try {
if (!event.getMessage().isDeleted())
event.getMessage().delete();
return true;
} catch (DiscordException | MissingPermissionsException e) {
//Failed to delete
return false;
}
}).get();
} catch (NullPointerException e) {
return false;
}
}
public static boolean deleteMessage(IMessage message) {
try {
return RequestBuffer.request(() -> {
try {
if (!message.isDeleted())
message.delete();
return true;
} catch (DiscordException | MissingPermissionsException e) {
//Failed to delete.
return false;
}
}).get();
} catch (NullPointerException e) {
return false;
}
}
public static boolean editMessage(IMessage message, String content) {
try {
return RequestBuffer.request(() -> {
try {
if (message != null && !message.isDeleted())
message.edit(content);
return true;
} catch (DiscordException | MissingPermissionsException e) {
//Failed to edit.
return false;
}
}).get();
} catch (NullPointerException e) {
return false;
}
}
public static boolean editMessage(IMessage message, String content, EmbedObject embed) {
try {
return RequestBuffer.request(() -> {
try {
if (!message.isDeleted())
message.edit(content, embed);
return true;
} catch (DiscordException | MissingPermissionsException e) {
//Failed to edit.
return false;
}
}).get();
} catch (NullPointerException e) {
return false;
}
}
}

View File

@@ -1,54 +0,0 @@
package discal.bot.internal.network.discordpw;
import discal.api.DisCalAPI;
import discal.api.object.BotSettings;
import discal.logger.Logger;
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.JsonNode;
import com.mashape.unirest.http.Unirest;
import org.json.JSONObject;
import java.util.Timer;
import java.util.TimerTask;
/**
* Created by Nova Fox on 1/13/2017.
* Website: www.cloudcraftgaming.com
* For Project: DisCal
*/
public class UpdateDisPwData {
private static Timer timer;
public static void init() {
if (BotSettings.UPDATE_SITES.get().equalsIgnoreCase("true")) {
timer = new Timer(true);
timer.schedule(new TimerTask() {
@Override
public void run() {
updateSiteBotMeta();
}
}, 60 * 60 * 1000);
}
}
public static void shutdown() {
if (timer != null)
timer.cancel();
}
private static void updateSiteBotMeta() {
try {
int serverCount = DisCalAPI.getAPI().getClient().getGuilds().size();
JSONObject json = new JSONObject().put("server_count", serverCount);
//noinspection unused
HttpResponse<JsonNode> response = Unirest.post("https://bots.discord.pw/api/bots/265523588918935552/stats").header("Authorization", BotSettings.PW_TOKEN.get()).header("Content-Type", "application/json").body(json).asJson();
} catch (Exception e) {
//Handle issue.
System.out.println("Failed to update Discord PW list metadata!");
Logger.getLogger().exception(null, "Failed to update Discord PW list.", e, UpdateDisPwData.class, true);
e.printStackTrace();
}
}
}

File diff suppressed because it is too large Load Diff