2017-12-12 01:06:58 +01:00
|
|
|
package net.Broken;
|
|
|
|
|
|
|
|
import net.Broken.Commandes.*;
|
|
|
|
import net.Broken.Commandes.Over18.*;
|
|
|
|
import net.Broken.Outils.DayListener;
|
|
|
|
import net.dv8tion.jda.core.AccountType;
|
|
|
|
import net.dv8tion.jda.core.JDA;
|
|
|
|
import net.dv8tion.jda.core.JDABuilder;
|
|
|
|
import net.dv8tion.jda.core.OnlineStatus;
|
|
|
|
import net.dv8tion.jda.core.entities.Game;
|
|
|
|
import net.dv8tion.jda.core.entities.Guild;
|
|
|
|
import net.dv8tion.jda.core.entities.Member;
|
|
|
|
import net.dv8tion.jda.core.exceptions.RateLimitedException;
|
|
|
|
import net.dv8tion.jda.core.managers.GuildManager;
|
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
|
|
|
|
import javax.security.auth.login.LoginException;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public class Init {
|
|
|
|
static private Logger logger = LogManager.getLogger();
|
|
|
|
|
|
|
|
static JDA initBot(String token, boolean dev){
|
|
|
|
boolean okInit;
|
|
|
|
JDA jda = null;
|
2017-12-22 19:20:26 +01:00
|
|
|
logger.debug("-------------------INITIALISATION-------------------");
|
2017-12-12 01:06:58 +01:00
|
|
|
|
|
|
|
//Bot démarrer sans token
|
|
|
|
if (token == null) {
|
|
|
|
logger.fatal("Veuilliez indiquer le token du bot en argument...");
|
|
|
|
okInit=false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//Token présent
|
|
|
|
try
|
|
|
|
{
|
|
|
|
|
|
|
|
logger.info("Connection au serveur...");
|
|
|
|
//connection au bot
|
|
|
|
jda = new JDABuilder(AccountType.BOT).addEventListener(new BotListener()).setToken(token).setBulkDeleteSplittingEnabled(false).buildBlocking();
|
|
|
|
jda.setAutoReconnect(true);
|
|
|
|
jda.addEventListener();
|
|
|
|
|
|
|
|
/*************************************
|
|
|
|
* Definition des commande *
|
|
|
|
*************************************/
|
|
|
|
jda.getPresence().setGame(Game.of("Statut: Loading..."));
|
|
|
|
jda.getTextChannels().forEach(textChannel -> textChannel.sendTyping().queue());
|
|
|
|
MainBot.commandes.put("ping", new PingCommande());
|
|
|
|
MainBot.commandes.put("help", new Help());
|
|
|
|
MainBot.commandes.put("move", new Move());
|
|
|
|
MainBot.commandes.put("spam", new Spam());
|
|
|
|
MainBot.commandes.put("spaminfo", new SpamInfo());
|
|
|
|
MainBot.commandes.put("flush", new Flush());
|
|
|
|
MainBot.commandes.put("music", new Music());
|
|
|
|
|
|
|
|
if (!dev) {
|
|
|
|
MainBot.commandes.put("ass", new Ass());
|
|
|
|
jda.getTextChannels().forEach(textChannel -> textChannel.sendTyping().queue());
|
|
|
|
MainBot.commandes.put("boobs", new Boobs());
|
|
|
|
jda.getTextChannels().forEach(textChannel -> textChannel.sendTyping().queue());
|
|
|
|
MainBot.commandes.put("pipe", new Pipe());
|
|
|
|
jda.getTextChannels().forEach(textChannel -> textChannel.sendTyping().queue());
|
|
|
|
MainBot.commandes.put("sm", new SM());
|
|
|
|
MainBot.commandes.put("madame", new Madame());
|
|
|
|
MainBot.commandes.put("cat", new Cat());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//On recupere le l'id serveur
|
|
|
|
Guild serveur = jda.getGuilds().get(0);
|
|
|
|
|
|
|
|
//on recupere les utilisateur
|
|
|
|
List<Member> utilisateurCo = serveur.getMembers();
|
|
|
|
|
2017-12-22 19:20:26 +01:00
|
|
|
logger.info("Utilisatieur connecté: "+utilisateurCo.size());
|
2017-12-12 01:06:58 +01:00
|
|
|
for (Member anUtilisateurCo : utilisateurCo)
|
|
|
|
{
|
|
|
|
if (anUtilisateurCo.getOnlineStatus().equals(OnlineStatus.ONLINE))
|
2017-12-22 19:20:26 +01:00
|
|
|
logger.debug("\t*" + anUtilisateurCo.getEffectiveName());
|
2017-12-12 01:06:58 +01:00
|
|
|
}
|
|
|
|
|
2017-12-22 19:20:26 +01:00
|
|
|
logger.debug("Utilisatieur absent: ");
|
2017-12-12 01:06:58 +01:00
|
|
|
for (Member anUtilisateurCo : utilisateurCo)
|
|
|
|
{
|
|
|
|
if (anUtilisateurCo.getOnlineStatus().equals(OnlineStatus.DO_NOT_DISTURB))
|
2017-12-22 19:20:26 +01:00
|
|
|
logger.debug("\t*" + anUtilisateurCo.getEffectiveName());
|
2017-12-12 01:06:58 +01:00
|
|
|
}
|
|
|
|
|
2017-12-22 19:20:26 +01:00
|
|
|
logger.debug("Utilisatieur hors ligne: ");
|
2017-12-12 01:06:58 +01:00
|
|
|
for (Member anUtilisateurCo : utilisateurCo)
|
|
|
|
{
|
|
|
|
if (anUtilisateurCo.getOnlineStatus().equals(OnlineStatus.OFFLINE))
|
2017-12-22 19:20:26 +01:00
|
|
|
logger.debug("\t*" + anUtilisateurCo.getEffectiveName());
|
2017-12-12 01:06:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
MainBot.ModoTimer modotimer = new MainBot.ModoTimer();
|
|
|
|
modotimer.start();
|
|
|
|
DayListener dayListener = new DayListener();
|
|
|
|
dayListener.start();
|
2017-12-22 19:20:26 +01:00
|
|
|
logger.debug("-----------------FIN INITIALISATION-----------------");
|
2017-12-12 01:06:58 +01:00
|
|
|
|
|
|
|
jda.getPresence().setGame(Game.of("Statut: Ok!"));
|
|
|
|
|
|
|
|
}
|
|
|
|
catch (LoginException | InterruptedException | RateLimitedException e)
|
|
|
|
{
|
|
|
|
logger.catching(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return jda;
|
|
|
|
}
|
|
|
|
}
|