Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/L2J_Mobius_Classic_Interlude/.gitignore b/L2J_Mobius_Classic_Interlude/.gitignore
- new file mode 100644
- index 0000000..ae3c172
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/.gitignore
- @@ -0,0 +1 @@
- +/bin/
- diff --git a/L2J_Mobius_Classic_Interlude/dist/game/config/votesystem.ini b/L2J_Mobius_Classic_Interlude/dist/game/config/votesystem.ini
- new file mode 100644
- index 0000000..10f1f93
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/dist/game/config/votesystem.ini
- @@ -0,0 +1,95 @@
- +EnableVoteSystem = True
- +
- +EnableGlobalVote = True
- +
- +EnableIndividualVote = True
- +
- +## Time to Update table totalVotes from DB
- +NextTimeToAutoUpdateTotalVote = 2
- +
- +## Time to update table individualVotes
- +NextTimeToAutoUpdateIndividualVotes = 2
- +
- +NextTimeToAutoCleanInnecesaryVotes = 30
- +
- +NextTimeToCheckAutoGlobalVotesReward = 1
- +
- +IntervalToNextVote = 12
- +
- +GlobalVotesAmountToNextReward = 1
- +
- +EnableVotingCommand = True
- +
- +VotingCommand = .getreward
- +
- +## l2.topgameserver.net
- +VoteLinkTgs = http://l2.topgameserver.net/lineage/VoteApi/
- +
- +TgsApiKey =
- +
- +## l2top.co
- +VoteLinkTopCo = https://l2top.co/reward/
- +
- +TopCoSrvId =
- +
- +## ITopz.com
- +VoteLinkItopz = https://itopz.com/check/
- +
- +ItopzZpiKey =
- +
- +ItopzSrvId =
- +
- +## l2votes.com
- +VoteLinkVts = https://l2votes.com/
- +
- +VtsApiKey =
- +
- +VtsSid =
- +
- +## Hopzone.net
- +VoteLinkHz = https://api.hopzone.net/lineage2/
- +
- +HzApiKey =
- +
- +## l2network.eu
- +VoteNetworkLink = https://l2network.eu/api.php
- +
- +VoteNetworkUserName =
- +
- +VoteNetworkApiKey =
- +
- +## L2TopServer.com
- +VoteLinkTss = https://l2topservers.com/votes?
- +
- +TssApiToken =
- +
- +TsSrvId = 453
- +
- +TsDomainName= l2catgang
- +
- +## top.l2jbrasil.com
- +BrasilVoteLink = https://top.l2jbrasil.com/votesystem/index.php?
- +
- +BrasilUserName = julioguzman
- +
- +## Mmotop.eu
- +VoteLinkMmotop = https://l2jtop.com/api/
- +
- +MmotopApiKey =
- +
- +## L2TopZone.com
- +VoteLinkTz = https://api.l2topzone.com/v1/
- +
- +TzApiKey =
- +
- +## L2Servers.com
- +VoteLinkServers = https://www.l2servers.com/api/
- +
- +ServersHashCode =
- +
- +ServersSrvId =
- +
- +
- +## for localhost test if your project is live, put the word off or leave it blank
- +TestIp =
- +
- diff --git a/L2J_Mobius_Classic_Interlude/dist/game/data/html/mods/votesystem/900105.html b/L2J_Mobius_Classic_Interlude/dist/game/data/html/mods/votesystem/900105.html
- new file mode 100644
- index 0000000..b2a5624
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/dist/game/data/html/mods/votesystem/900105.html
- @@ -0,0 +1,19 @@
- +<html>
- +<title>Voting panel</title>
- +<body><center>
- + <br><img src="L2UI_CH3.herotower_deco" width=256 height=32><br>
- + <table cellpadding=2 width=280>
- + <tr><td width="280">Hello <font color="C6AF00">%accountName%</font>, welcome to the voting rewards dashboard, please help us by voting by server every <font color="C6AF00">%everyXtime% hours</font> in all voting sites.</td></tr>
- + </table>
- + <table width="290"><tr><td width="290" align="center">You can vote: </td></tr></table>
- + <br><img src="l2ui.SquareWhite" width=290 height=1><br>
- +
- + %enablevote%
- +
- + <br>
- + <img src="l2ui.SquareWhite" width=290 height=1><br>
- +
- +
- +
- +</center></body>
- +</html>
- \ No newline at end of file
- diff --git a/L2J_Mobius_Classic_Interlude/dist/game/data/scripts/handlers/MasterHandler.java b/L2J_Mobius_Classic_Interlude/dist/game/data/scripts/handlers/MasterHandler.java
- index c0b42a7..044617d 100644
- --- a/L2J_Mobius_Classic_Interlude/dist/game/data/scripts/handlers/MasterHandler.java
- +++ b/L2J_Mobius_Classic_Interlude/dist/game/data/scripts/handlers/MasterHandler.java
- @@ -340,6 +340,7 @@
- import handlers.voicedcommandhandlers.ChatAdmin;
- import handlers.voicedcommandhandlers.Lang;
- import handlers.voicedcommandhandlers.Premium;
- +import handlers.voicedcommandhandlers.VoteReward;
- /**
- * Master handler.
- @@ -600,6 +601,7 @@
- Config.ALLOW_CHANGE_PASSWORD ? ChangePassword.class : null,
- Config.PREMIUM_SYSTEM_ENABLED ? Premium.class : null,
- Config.AUTO_POTIONS_ENABLED ? AutoPotion.class : null,
- + (Config.ENABLE_VOTE_SYSTEM && Config.ENABLE_INDIVIDUAL_VOTE && Config.ENABLE_VOTING_COMMAND ? VoteReward.class : null),
- },
- {
- // Target Handlers
- diff --git a/L2J_Mobius_Classic_Interlude/dist/game/data/scripts/handlers/voicedcommandhandlers/VoteReward.java b/L2J_Mobius_Classic_Interlude/dist/game/data/scripts/handlers/voicedcommandhandlers/VoteReward.java
- new file mode 100644
- index 0000000..6e833f0
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/dist/game/data/scripts/handlers/voicedcommandhandlers/VoteReward.java
- @@ -0,0 +1,80 @@
- +/*
- + * This file is part of the L2J Mobius project.
- + *
- + * This program is free software: you can redistribute it and/or modify
- + * it under the terms of the GNU General Public License as published by
- + * the Free Software Foundation, either version 3 of the License, or
- + * (at your option) any later version.
- + *
- + * This program is distributed in the hope that it will be useful,
- + * but WITHOUT ANY WARRANTY; without even the implied warranty of
- + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- + * General Public License for more details.
- + *
- + * You should have received a copy of the GNU General Public License
- + * along with this program. If not, see <http://www.gnu.org/licenses/>.
- + */
- +package handlers.voicedcommandhandlers;
- +
- +import org.l2jmobius.Config;
- +import org.l2jmobius.gameserver.handler.IVoicedCommandHandler;
- +import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
- +import org.l2jmobius.gameserver.votesystem.Enum.voteSite;
- +import org.l2jmobius.gameserver.votesystem.Handler.voteManager;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class VoteReward implements IVoicedCommandHandler
- +{
- +
- + @Override
- + public boolean useVoicedCommand(String command, PlayerInstance player, String params)
- + {
- + if (command.equalsIgnoreCase(Config.VOTING_COMMAND))
- + {
- + if (player.isJailed())
- + {
- + player.sendMessage("You cannot use this function while you are jailed");
- + return false;
- + }
- + if (!Config.ENABLE_VOTE_SYSTEM)
- + {
- + player.sendMessage("The rewards system has been disabled by your administrator");
- + return false;
- + }
- + if (!Config.ENABLE_INDIVIDUAL_VOTE)
- + {
- + player.sendMessage("The individual reward system is disabled");
- + return false;
- + }
- + if (!Config.ENABLE_VOTING_COMMAND)
- + {
- + player.sendMessage("Voting command reward is disabled");
- + return false;
- + }
- +
- + for (voteSite vs : voteSite.values())
- + {
- + new Thread(() ->
- + {
- + voteManager.getInatance().getReward(player, vs.ordinal());
- + }).start();
- + }
- +
- + return true;
- +
- + }
- + return false;
- + }
- +
- + @Override
- + public String[] getVoicedCommandList()
- + {
- + return new String[]
- + {
- + Config.VOTING_COMMAND,
- + };
- + }
- +
- +}
- \ No newline at end of file
- diff --git a/L2J_Mobius_Classic_Interlude/dist/game/data/stats/npcs/custom/custom.xml b/L2J_Mobius_Classic_Interlude/dist/game/data/stats/npcs/custom/custom.xml
- index 2e508bf..7cc4037 100644
- --- a/L2J_Mobius_Classic_Interlude/dist/game/data/stats/npcs/custom/custom.xml
- +++ b/L2J_Mobius_Classic_Interlude/dist/game/data/stats/npcs/custom/custom.xml
- @@ -90,4 +90,22 @@
- <height normal="12.5" />
- </collision>
- </npc>
- + <npc id="900105" displayId="32365" name="Kaaya" usingServerSideName="true" title="Vote Reward System" type="NpcVoteReward">
- + <race>HUMAN</race>
- + <sex>FEMALE</sex>
- + <stats>
- + <vitals hp="2444.46819" hpRegen="7.5" mp="1345.8" mpRegen="2.7" />
- + <attack physical="688.86373" magical="470.40463" random="30" critical="4" accuracy="95" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
- + <defence physical="295.91597" magical="216.53847" />
- + <speed>
- + <walk ground="50" />
- + <run ground="120" />
- + </speed>
- + </stats>
- + <status attackable="false" />
- + <collision>
- + <radius normal="11" />
- + <height normal="22.25" />
- + </collision>
- + </npc>
- </list>
- \ No newline at end of file
- diff --git a/L2J_Mobius_Classic_Interlude/dist/game/data/votesystem.xml b/L2J_Mobius_Classic_Interlude/dist/game/data/votesystem.xml
- new file mode 100644
- index 0000000..c125243
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/dist/game/data/votesystem.xml
- @@ -0,0 +1,71 @@
- +<?xml version="1.0" encoding="UTF-8"?>
- +<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/votesystem.xsd">
- +
- + <votesite name="l2.topgameserver.net" ordinal="0">
- + <items>
- + <item itemId="57" itemCount="100000" />
- + </items>
- + </votesite>
- + <votesite name="ItopZ.com" ordinal="1">
- + <items>
- + <item itemId="57" itemCount="100000" />
- + </items>
- + </votesite>
- + <votesite name="L2Top.co" ordinal="2">
- + <items>
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </items>
- + </votesite>
- + <votesite name="L2Votes.com" ordinal="3">
- + <items>
- + <item itemId="57" itemCount="100000" />
- + </items>
- + </votesite>
- + <votesite name="Hopzone.net" ordinal="4">
- + <items>
- + <item itemId="57" itemCount="100000" />
- + </items>
- + </votesite>
- + <votesite name="L2Network.eu" ordinal="5">
- + <items>
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </items>
- + </votesite>
- + <votesite name="L2Topservers.com" ordinal="6">
- + <items>
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </items>
- + </votesite>
- + <votesite name="top.l2jbrasil.com" ordinal="7">
- + <items>
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </items>
- + </votesite>
- + <votesite name="MMOTOP.eu" ordinal="8">
- + <items>
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </items>
- + </votesite>
- + <votesite name="L2Topzone.com" ordinal="9">
- + <items>
- + <item itemId="57" itemCount="100000" />
- + </items>
- + </votesite>
- + <votesite name="L2Servers.com" ordinal="10">
- + <items>
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </items>
- + </votesite>
- + <votesite name="globalVotes" ordinal="11">
- + <items>
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </items>
- + </votesite>
- +</list>
- \ No newline at end of file
- diff --git a/L2J_Mobius_Classic_Interlude/dist/game/data/xsd/votesystem.xsd b/L2J_Mobius_Classic_Interlude/dist/game/data/xsd/votesystem.xsd
- new file mode 100644
- index 0000000..f5c1e52
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/dist/game/data/xsd/votesystem.xsd
- @@ -0,0 +1,32 @@
- +<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
- + <xs:element name="list">
- + <xs:complexType>
- + <xs:sequence>
- + <xs:element name="votesite" maxOccurs="unbounded" minOccurs="0">
- + <xs:complexType>
- + <xs:sequence>
- + <xs:element name="items">
- + <xs:complexType>
- + <xs:sequence>
- + <xs:element name="item" maxOccurs="unbounded" minOccurs="0">
- + <xs:complexType>
- + <xs:simpleContent>
- + <xs:extension base="xs:string">
- + <xs:attribute type="xs:short" name="itemId" use="optional"/>
- + <xs:attribute type="xs:int" name="itemCount" use="optional"/>
- + </xs:extension>
- + </xs:simpleContent>
- + </xs:complexType>
- + </xs:element>
- + </xs:sequence>
- + </xs:complexType>
- + </xs:element>
- + </xs:sequence>
- + <xs:attribute type="xs:string" name="name" use="optional"/>
- + <xs:attribute type="xs:byte" name="ordinal" use="optional"/>
- + </xs:complexType>
- + </xs:element>
- + </xs:sequence>
- + </xs:complexType>
- + </xs:element>
- +</xs:schema>
- \ No newline at end of file
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/Config.java
- index 6f5f5c7..b27b059 100644
- --- a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/Config.java
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/Config.java
- import java.util.Properties;
- + import java.util.concurrent.TimeUnit;
- import java.util.logging.Level;
- @@ -106,6 +106,7 @@
- private static final String CHAT_FILTER_FILE = "./config/chatfilter.txt";
- private static final String HEXID_FILE = "./config/hexid.txt";
- private static final String IPCONFIG_FILE = "./config/ipconfig.xml";
- + private static final String VOTE_SYSTEM_FILE = "./config/votesystem.ini";
- // --------------------------------------------------
- // Custom Config File Definitions
- @@ -1278,6 +1279,50 @@
- public static int L2JBRASIL_DUALBOXES_ALLOWED;
- public static boolean ALLOW_L2JBRASIL_GAME_SERVER_REPORT;
- + // ---------------------------------------------------
- + // VOTE SYSTEM
- + // ---------------------------------------------------
- + public static boolean ENABLE_VOTE_SYSTEM;
- + public static boolean ENABLE_INDIVIDUAL_VOTE;
- + public static boolean ENABLE_GLOBAL_VOTE;
- + public static long NEXT_TIME_TO_AUTO_UPDATE_TOTAL_VOTE;
- + public static long NEXT_TIME_TO_AUTO_UPDATE_INDIVIDUAL_VOTES;
- + public static long NEXT_TIME_TO_AUTO_CLEAN_INECESARY_VOTES;
- + public static long NEXT_TIME_TO_CHECK_AUTO_GLOBAL_VOTES_REWARD;
- + public static long INTERVAL_TO_NEXT_VOTE;
- + public static int GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD;
- + public static boolean ENABLE_VOTING_COMMAND;
- + public static String VOTING_COMMAND;
- + public static String VOTE_LINK_TGS;
- + public static String TGS_API_KEY;
- + public static String VOTE_LINK_TOP_CO;
- + public static String TOP_CO_SRV_ID;
- + public static String VOTE_LINK_ITOPZ;
- + public static String ITOPZ_API_KEY;
- + public static String ITOPZ_SRV_ID;
- + public static String VOTE_LINK_VTS;
- + public static String VTS_API_KEY;
- + public static String VTS_SID;
- + public static String VOTE_LINK_HZ;
- + public static String HZ_API_KEY;
- + public static String VOTE_NETWORK_LINK;
- + public static String VOTE_NETWORK_USER_NAME;
- + public static String VOTE_NETWORK_API_KEY;
- + public static String VOTE_LINK_TSS;
- + public static String TSS_API_TOKEN;
- + public static String TS_SRV_ID;
- + public static String TS_DOMAIN_NAME;
- + public static String BRASIL_VOTE_LINK;
- + public static String BRASIL_USER_NAME;
- + public static String VOTE_LINK_MMOTOP;
- + public static String MMOTOP_API_KEY;
- + public static String VOTE_LINK_TZ;
- + public static String TZ_API_KEY;
- + public static String VOTE_LINK_SERVERS;
- + public static String SERVERS_HASH_CODE;
- + public static String SERVERS_SRV_ID;
- + public static String TEST_IP;
- +
- /**
- * This class initializes all global variables for configuration.<br>
- * If the key doesn't appear in properties file, a default value is set by this class. {@link #SERVER_CONFIG_FILE} (properties file) for configuring your server.
- @@ -3366,6 +3411,50 @@
- CUSTOM_STARTING_LOC_Y = StartingLocation.getInt("CustomStartingLocY", 186527);
- CUSTOM_STARTING_LOC_Z = StartingLocation.getInt("CustomStartingLocZ", -3625);
- + // Load vote system settings
- + final PropertiesParser votesystem = new PropertiesParser(VOTE_SYSTEM_FILE);
- +
- + ENABLE_VOTE_SYSTEM = votesystem.getBoolean("EnableVoteSystem", true);
- + ENABLE_INDIVIDUAL_VOTE = votesystem.getBoolean("EnableIndividualVote", true);
- + ENABLE_GLOBAL_VOTE = votesystem.getBoolean("EnableGlobalVote", true);
- + NEXT_TIME_TO_AUTO_UPDATE_TOTAL_VOTE = TimeUnit.MINUTES.toMillis(votesystem.getInt("NextTimeToAutoUpdateTotalVote", 60));// -> minutes
- + NEXT_TIME_TO_AUTO_UPDATE_INDIVIDUAL_VOTES = TimeUnit.MINUTES.toMillis(votesystem.getInt("NextTimeToAutoUpdateIndividualVotes", 60));// -> minutes
- + NEXT_TIME_TO_AUTO_CLEAN_INECESARY_VOTES = TimeUnit.MINUTES.toMillis(votesystem.getInt("NextTimeToAutoCleanInnecesaryVotes", 30));// -> minutes
- + NEXT_TIME_TO_CHECK_AUTO_GLOBAL_VOTES_REWARD = TimeUnit.MINUTES.toMillis(votesystem.getInt("NextTimeToCheckAutoGlobalVotesReward", 5));// -> minutes
- + INTERVAL_TO_NEXT_VOTE = TimeUnit.HOURS.toMillis(votesystem.getInt("IntervalTimeToNextVote", 12)); // -> hours
- + GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD = votesystem.getInt("GlobalVotesAmountToNextReward", 50);
- + ENABLE_VOTING_COMMAND = votesystem.getBoolean("EnableVotingCommand", true);
- + VOTING_COMMAND = votesystem.getString("VotingCommand", "getreward");
- + VOTE_LINK_TGS = votesystem.getString("VoteLinkTgs", "");
- + TGS_API_KEY = votesystem.getString("TgsApiKey", "");
- + VOTE_LINK_TOP_CO = votesystem.getString("VoteLinkTopCo", "");
- + TOP_CO_SRV_ID = votesystem.getString("TopCoSrvId", "");
- + VOTE_LINK_ITOPZ = votesystem.getString("VoteLinkItopz", "");
- + ITOPZ_API_KEY = votesystem.getString("ItopzZpiKey", "");
- + ITOPZ_SRV_ID = votesystem.getString("ItopzSrvId", "");
- + VOTE_LINK_VTS = votesystem.getString("VoteLinkVts", "");
- + VTS_API_KEY = votesystem.getString("VtsApiKey", "");
- + VTS_SID = votesystem.getString("VtsSid", "");
- + VOTE_LINK_HZ = votesystem.getString("VoteLinkHz", "");
- + HZ_API_KEY = votesystem.getString("HzApiKey", "");
- + VOTE_NETWORK_LINK = votesystem.getString("VoteNetworkLink", "");
- + VOTE_NETWORK_USER_NAME = votesystem.getString("VoteNetworkUserName", "");
- + VOTE_NETWORK_API_KEY = votesystem.getString("VoteNetworkApiKey", "");
- + VOTE_LINK_TSS = votesystem.getString("VoteLinkTss", "");
- + TSS_API_TOKEN = votesystem.getString("TssApiToken", "");
- + TS_SRV_ID = votesystem.getString("TsSrvId", "");
- + TS_DOMAIN_NAME = votesystem.getString("TsDomainName", "");
- + BRASIL_VOTE_LINK = votesystem.getString("BrasilVoteLink", "");
- + BRASIL_USER_NAME = votesystem.getString("BrasilUserName", "");
- + VOTE_LINK_MMOTOP = votesystem.getString("VoteLinkMmotop", "");
- + MMOTOP_API_KEY = votesystem.getString("MmotopApiKey", "");
- + VOTE_LINK_TZ = votesystem.getString("VoteLinkTz", "");
- + TZ_API_KEY = votesystem.getString("TzApiKey", "");
- + VOTE_LINK_SERVERS = votesystem.getString("VoteLinkServers", "");
- + SERVERS_HASH_CODE = votesystem.getString("ServersHashCode", "");
- + SERVERS_SRV_ID = votesystem.getString("ServersSrvId", "");
- + TEST_IP = votesystem.getString("TestIp", "");
- +
- // Load VoteReward config file (if exists)
- final PropertiesParser VoteReward = new PropertiesParser(CUSTOM_VOTE_REWARD_CONFIG_FILE);
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/commons/util/StatsSet.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/commons/util/StatsSet.java
- new file mode 100644
- index 0000000..cb54758
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/commons/util/StatsSet.java
- @@ -0,0 +1,91 @@
- +/*
- + * This file is part of the L2J Mobius project.
- + *
- + * This program is free software: you can redistribute it and/or modify
- + * it under the terms of the GNU General Public License as published by
- + * the Free Software Foundation, either version 3 of the License, or
- + * (at your option) any later version.
- + *
- + * This program is distributed in the hope that it will be useful,
- + * but WITHOUT ANY WARRANTY; without even the implied warranty of
- + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- + * General Public License for more details.
- + *
- + * You should have received a copy of the GNU General Public License
- + * along with this program. If not, see <http://www.gnu.org/licenses/>.
- + */
- +package org.l2jmobius.commons.util;
- +
- +import java.util.HashMap;
- +
- +/**
- + * @author escor
- + */
- +public class StatsSet extends HashMap<String, Object>
- +{
- +
- + public StatsSet()
- + {
- + super();
- + }
- +
- + public StatsSet(final StatsSet set)
- + {
- + super(set);
- + }
- +
- + public void set(final String key, final Object value)
- + {
- + put(key, value);
- + }
- +
- + public void set(final String key, final int value)
- + {
- + put(key, value);
- + }
- +
- + public void set(final String key, final int[] value)
- + {
- + put(key, value);
- + }
- +
- + public int getInteger(final String key)
- + {
- + final Object val = get(key);
- +
- + if (val instanceof Number)
- + {
- + return ((Number) val).intValue();
- + }
- + if (val instanceof String)
- + {
- + return Integer.parseInt((String) val);
- + }
- + if (val instanceof Boolean)
- + {
- + return (Boolean) val ? 1 : 0;
- + }
- +
- + throw new IllegalArgumentException("StatsSet : Integer value required, but found: " + val + " for key: " + key + ".");
- + }
- +
- + public int getInteger(final String key, final int defaultValue)
- + {
- + final Object val = get(key);
- +
- + if (val instanceof Number)
- + {
- + return ((Number) val).intValue();
- + }
- + if (val instanceof String)
- + {
- + return Integer.parseInt((String) val);
- + }
- + if (val instanceof Boolean)
- + {
- + return (Boolean) val ? 1 : 0;
- + }
- +
- + return defaultValue;
- + }
- +}
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/GameServer.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/GameServer.java
- index 6d6ec5a..4cf0899 100644
- --- a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/GameServer.java
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/GameServer.java
- @@ -155,6 +155,8 @@
- import org.l2jmobius.gameserver.taskmanager.TaskManager;
- import org.l2jmobius.gameserver.ui.Gui;
- import org.l2jmobius.gameserver.util.Broadcast;
- +import org.l2jmobius.gameserver.votesystem.Handler.voteManager;
- +import org.l2jmobius.gameserver.votesystem.VoteUtil.VoteSiteXml;
- public class GameServer
- {
- @@ -300,6 +302,18 @@
- PremiumManager.getInstance();
- }
- + printSection("Vote Reward System");
- + if (Config.ENABLE_VOTE_SYSTEM)
- + {
- + voteManager.getInatance();
- + LOGGER.info("======================Vote System Enabled=========================");
- + VoteSiteXml.getInstance();
- + }
- + else
- + {
- + LOGGER.info("======================Vote System Disabled=========================");
- + }
- +
- printSection("Clans");
- ClanTable.getInstance();
- ResidenceFunctionsData.getInstance();
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/Shutdown.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/Shutdown.java
- index f9e497b..d178a65 100644
- --- a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/Shutdown.java
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/Shutdown.java
- @@ -48,6 +48,7 @@
- import org.l2jmobius.gameserver.network.serverpackets.SystemMessage;
- import org.l2jmobius.gameserver.network.telnet.TelnetServer;
- import org.l2jmobius.gameserver.util.Broadcast;
- +import org.l2jmobius.gameserver.votesystem.Handler.voteManager;
- /**
- * This class provides the functions for shutting down and restarting the server.<br>
- @@ -479,6 +480,12 @@
- LOGGER.info("Items On Ground Manager: Cleaned up(" + tc.getEstimatedTimeAndRestartCounter() + "ms).");
- }
- + // sava individual votes data
- + if (Config.ENABLE_VOTE_SYSTEM)
- + {
- + voteManager.getInatance().Shutdown();
- + }
- +
- // Save bot reports to database
- if (Config.BOTREPORT_ENABLE)
- {
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/NpcVoteRewardInstance.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/NpcVoteRewardInstance.java
- new file mode 100644
- index 0000000..5b3e03c
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/NpcVoteRewardInstance.java
- @@ -0,0 +1,111 @@
- +/*
- + * This file is part of the L2J Mobius project.
- + *
- + * This program is free software: you can redistribute it and/or modify
- + * it under the terms of the GNU General Public License as published by
- + * the Free Software Foundation, either version 3 of the License, or
- + * (at your option) any later version.
- + *
- + * This program is distributed in the hope that it will be useful,
- + * but WITHOUT ANY WARRANTY; without even the implied warranty of
- + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- + * General Public License for more details.
- + *
- + * You should have received a copy of the GNU General Public License
- + * along with this program. If not, see <http://www.gnu.org/licenses/>.
- + */
- +package org.l2jmobius.gameserver.model.actor.instance;
- +
- +import org.l2jmobius.Config;
- +import org.l2jmobius.gameserver.datatables.ItemTable;
- +import org.l2jmobius.gameserver.model.actor.templates.NpcTemplate;
- +import org.l2jmobius.gameserver.network.serverpackets.NpcHtmlMessage;
- +import org.l2jmobius.gameserver.votesystem.Enum.voteSite;
- +import org.l2jmobius.gameserver.votesystem.Handler.voteManager;
- +import org.l2jmobius.gameserver.votesystem.Model.Reward;
- +import org.l2jmobius.gameserver.votesystem.VoteUtil.VoteSiteXml;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class NpcVoteRewardInstance extends NpcInstance
- +{
- +
- + /**
- + * @param template
- + */
- + public NpcVoteRewardInstance(NpcTemplate template)
- + {
- + super(template);
- + }
- +
- + @Override
- + public void onBypassFeedback(PlayerInstance player, String command)
- + {
- + if (command == null)
- + {
- + return;
- + }
- + int Ordinalsite = Integer.parseInt(command);
- + voteManager.getInatance().getReward(player, Ordinalsite);
- + showChatWindow(player, 0);
- + super.onBypassFeedback(player, command);
- + }
- +
- + @Override
- + public void showChatWindow(PlayerInstance player, int val)
- + {
- + final NpcHtmlMessage html = new NpcHtmlMessage(0);
- + StringBuilder sb = new StringBuilder();
- + html.setFile(player, getHtmlPath(getObjectId(), 0, player));
- + for (voteSite vs : voteSite.values())
- + {
- + sb.append("<table bgcolor=000000 width=280><tr>");
- + sb.append("<td width=42><img src=\"icon.etc_treasure_box_i08\" width=32 height=32></td>");
- + sb.append("<td width=220><table width=220>");
- + sb.append("<tr><td><table width=220><tr><td width=145>On " + String.format("%s", VoteSiteXml.getInstance().getSiteName(vs.ordinal())) + "</td>");
- + if (voteManager.getInatance().checkIndividualAvailableVote(player, vs.ordinal()))
- + {
- + sb.append("<td width=75>" + String.format("<button value=\"Get reward\" action=\"bypass -h vote_%s_site %s\" height=17 width=64 back=\"sek.cbui94\" fore=\"sek.cbui92\">", getObjectId(), vs.ordinal()) + "</td>");
- + }
- + else
- + {
- + sb.append(String.format("<td width=75 align=center><font color=C68E00>%s</font></td>", voteManager.getInatance().getTimeRemainingWithSampleFormat(player, vs.ordinal())));
- + }
- + sb.append("</tr></table></td></tr>");
- + sb.append("<tr><td><table width=220><tr>");
- + int i = 0;
- + for (Reward r : VoteSiteXml.getInstance().getRewards(vs.ordinal()))
- + {
- + sb.append(String.format("<td width=110 height=32 align=center><font color=BFAF00>%s x%s</font></td>", ItemTable.getInstance().getTemplate(r.getItemId()).getName(), r.getItemCount()));
- + i++;
- + if ((i % 2) == 0)
- + {
- + sb.append("</tr><tr>");
- + }
- + }
- + sb.append("</tr></table></td></tr></table></td></tr></table><br>");
- + }
- + html.replace("%everyXtime%", Config.INTERVAL_TO_NEXT_VOTE / (3600 * 1000));
- + html.replace("%enablevote%", sb.toString());
- + html.replace("%accountName%", player.getName());
- + player.sendPacket(html);
- + }
- +
- + @Override
- + public String getHtmlPath(int npcId, int val, PlayerInstance player)
- + {
- + String filename = "";
- + if (val == 0)
- + {
- + filename = "" + npcId;
- + }
- + else
- + {
- + filename = npcId + "-" + val;
- + }
- +
- + return "data/html/mods/votesystem/" + filename + ".html";
- + }
- +
- +}
- \ No newline at end of file
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/network/clientpackets/RequestBypassToServer.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/network/clientpackets/RequestBypassToServer.java
- index d02fb65..c9dde0e 100644
- --- a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/network/clientpackets/RequestBypassToServer.java
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/network/clientpackets/RequestBypassToServer.java
- @@ -143,6 +143,29 @@
- {
- comeHere(player);
- }
- + else if (_command.startsWith("vote_"))
- + {
- +
- + int endOfId = _command.indexOf('_', 6);
- + String id;
- + if (endOfId > 0)
- + {
- + id = _command.substring(5, endOfId);
- + }
- + else
- + {
- + id = _command.substring(5);
- + }
- +
- + if (_command.split(" ")[1].toString() != null)
- + {
- + final WorldObject object = World.getInstance().findObject(Integer.parseInt(id));
- + if ((object != null) && object.isNpc() && (endOfId > 0) && player.isInsideRadius2D(object, Npc.INTERACTION_DISTANCE))
- + {
- + ((Npc) object).onBypassFeedback(player, _command.split(" ")[1].toString());
- + }
- + }
- + }
- else if (_command.startsWith("npc_"))
- {
- final int endOfId = _command.indexOf('_', 5);
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/DB/globalVoteDB.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/DB/globalVoteDB.java
- new file mode 100644
- index 0000000..899b19c
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/DB/globalVoteDB.java
- @@ -0,0 +1,123 @@
- +package org.l2jmobius.gameserver.votesystem.DB;
- +
- +import java.sql.Connection;
- +import java.sql.PreparedStatement;
- +import java.sql.ResultSet;
- +import java.sql.SQLException;
- +import java.sql.Statement;
- +import java.util.logging.Logger;
- +
- +import org.l2jmobius.commons.database.DatabaseFactory;
- +import org.l2jmobius.gameserver.votesystem.Enum.voteSite;
- +import org.l2jmobius.gameserver.votesystem.Model.globalVote;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class globalVoteDB
- +{
- + public static final Logger LOGGER = Logger.getLogger(globalVoteDB.class.getName());
- + private Statement st;
- + private Connection con;
- + private final globalVote[] _globalVotes;
- +
- + private globalVoteDB()
- + {
- + _globalVotes = new globalVote[voteSite.values().length];
- + loadGlobalVotes();
- + }
- +
- + public void loadGlobalVotes()
- + {
- + con = DatabaseFactory.getConnection();
- + try (PreparedStatement ps = con.prepareStatement("Select voteSite,lastRewardVotes from globalvotes");
- + ResultSet rs = ps.executeQuery();)
- + {
- + if (rs.getRow() == 0)
- + {
- + for (voteSite vs : voteSite.values())
- + {
- + globalVote gv = new globalVote();
- + gv.setVoteSite(vs.ordinal());
- + gv.setVotesLastReward(0);
- + _globalVotes[gv.getVoyeSite()] = gv;
- + }
- + return;
- + }
- + while (rs.next())
- + {
- + globalVote gv = new globalVote();
- + gv.setVoteSite(rs.getInt("voteSite"));
- + gv.setVotesLastReward(rs.getInt("lastRewardVotes"));
- + _globalVotes[gv.getVoyeSite()] = gv;
- + }
- + ps.close();
- + con.close();
- +
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- + }
- +
- + public void saveGlobalVote(globalVote gb)
- + {
- + try (Connection con = DatabaseFactory.getConnection();
- + PreparedStatement ps = con.prepareStatement("INSERT INTO globalvotes(voteSite,lastRewardVotes) VALUES(?,?)" + "ON DUPLICATE KEY UPDATE voteSite = VALUES(voteSite), lastRewardVotes = VALUES(lastRewardVotes)"))
- +
- + {
- + ps.setInt(1, gb.getVoyeSite());
- + ps.setInt(2, gb.getVotesLastReward());
- + ps.executeUpdate();
- +
- + ps.close();
- + con.close();
- +
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- + }
- +
- + public void saveGlobalVotes(globalVote[] globalVotes)
- + {
- + try (Connection con = DatabaseFactory.getConnection();
- + PreparedStatement ps = con.prepareStatement("INSERT INTO globalvotes(voteSite,lastRewardVotes) VALUES(?,?)" + "ON DUPLICATE KEY UPDATE voteSite = VALUES(voteSite), lastRewardVotes = VALUES(lastRewardVotes)"))
- +
- + {
- + for (voteSite vs : voteSite.values())
- + {
- + globalVote gb = globalVotes[vs.ordinal()];
- + ps.setInt(1, gb.getVoyeSite());
- + ps.setInt(2, gb.getVotesLastReward());
- + ps.addBatch();
- + }
- + ps.executeBatch();
- +
- + ps.close();
- + con.close();
- +
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- + }
- +
- + public globalVote[] getGlobalVotes()
- + {
- + return _globalVotes;
- + }
- +
- + public static final globalVoteDB getInstance()
- + {
- + return SingleHolder.INSTANCE;
- + }
- +
- + private static final class SingleHolder
- + {
- + protected static final globalVoteDB INSTANCE = new globalVoteDB();
- + }
- +}
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/DB/individualVoteDB.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/DB/individualVoteDB.java
- new file mode 100644
- index 0000000..fa9fbe1
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/DB/individualVoteDB.java
- @@ -0,0 +1,183 @@
- +package org.l2jmobius.gameserver.votesystem.DB;
- +
- +import java.sql.Connection;
- +import java.sql.PreparedStatement;
- +import java.sql.ResultSet;
- +import java.sql.SQLException;
- +import java.sql.Statement;
- +import java.util.HashMap;
- +import java.util.HashSet;
- +import java.util.Map;
- +import java.util.logging.Logger;
- +
- +import org.l2jmobius.commons.database.DatabaseFactory;
- +import org.l2jmobius.gameserver.votesystem.Enum.voteSite;
- +import org.l2jmobius.gameserver.votesystem.Model.individualVote;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class individualVoteDB
- +{
- + private static final Logger LOGGER = Logger.getLogger(individualVoteDB.class.getName());
- + private final Map<String, individualVote[]> _votes;
- + private Statement st;
- + private Connection con;
- +
- + private individualVoteDB()
- + {
- + _votes = new HashMap<>();
- + loadVotes();
- + }
- +
- + public void loadVotes()
- + {
- +
- + _votes.clear();
- + try (Connection con = DatabaseFactory.getConnection();
- + PreparedStatement ps = con.prepareStatement("SELECT voterIp,voteSite,diffTime,votingTimeSite,alreadyRewarded FROM individualvotes");
- + ResultSet rs = ps.executeQuery();)
- + {
- + individualVote[] ivs = new individualVote[voteSite.values().length];
- + while (rs.next())
- + {
- + individualVote iv = new individualVote();
- + iv.setVoterIp(rs.getString("voterIp"));
- + iv.setVoteSite(rs.getInt("voteSite"));
- + iv.setDiffTime(rs.getLong("diffTime"));
- + iv.setVotingTimeSite(rs.getLong("votingTimeSite"));
- + iv.setAlreadyRewarded(rs.getBoolean("alreadyRewarded"));
- +
- + if (_votes.containsKey(iv.getVoterIp()))
- + {
- + if (_votes.get(iv.getVoterIp())[iv.getVoteSite()] == null)
- + {
- + ivs[iv.getVoteSite()] = iv;
- + _votes.replace(iv.getVoterIp(), ivs);
- + }
- + }
- + else
- + {
- + ivs[iv.getVoteSite()] = iv;
- + _votes.put(iv.getVoterIp(), ivs);
- +
- + }
- + }
- +
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- +
- + }
- +
- + public void SaveVotes(Map<String, individualVote[]> votes)
- + {
- +
- + if (votes == null)
- + {
- + return;
- + }
- + if (votes.size() == 0)
- + {
- + return;
- + }
- + try (Connection con = DatabaseFactory.getConnection();
- + PreparedStatement ps = con.prepareStatement("INSERT INTO individualvotes(voterIp,voteSite,diffTime,votingTimeSite,alreadyRewarded) VALUES(?,?,?,?,?) ON DUPLICATE KEY UPDATE " + "voterIp = VALUES(voterIp), voteSite = VALUES(voteSite), diffTime = VALUES(diffTime), votingTimeSite = VALUES(votingTimeSite),alreadyRewarded = VALUES(alreadyRewarded)");)
- + {
- +
- + for (Map.Entry<String, individualVote[]> ivm : votes.entrySet())
- + {
- + for (individualVote iv : ivm.getValue())
- + {
- + if (iv == null)
- + {
- + continue;
- + }
- + ps.setString(1, iv.getVoterIp());
- + ps.setInt(2, iv.getVoteSite());
- + ps.setLong(3, iv.getDiffTime());
- + ps.setLong(4, iv.getVotingTimeSite());
- + ps.setBoolean(5, iv.getAlreadyRewarded());
- + ps.addBatch();
- + }
- + }
- + ps.executeBatch();
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- + }
- +
- + public void SaveVote(individualVote vote)
- + {
- +
- + if (vote == null)
- + {
- + return;
- + }
- +
- + try (Connection con = DatabaseFactory.getConnection();
- + PreparedStatement ps = con.prepareStatement("INSERT INTO individualvotes(voterIp,voteSite,diffTime,votingTimeSite,alreadyRewarded) VALUES(?,?,?,?,?) ON DUPLICATE KEY UPDATE" + "voterIp = VALUES(voterIp), voteSite = VALUES(voteSite), diffTime = VALUES(diffTime), votingTimeSite = VALUES(votingTimeSite), alreadyRewarded = VALUES(alreadyRewarded)");)
- + {
- + ps.setString(1, vote.getVoterIp());
- + ps.setInt(2, vote.getVoteSite());
- + ps.setLong(3, vote.getDiffTime());
- + ps.setLong(4, vote.getVotingTimeSite());
- + ps.setBoolean(5, vote.getAlreadyRewarded());
- + ps.executeUpdate();
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- + }
- +
- + public void DeleteVotes(HashSet<individualVote> deleteVotes)
- + {
- + if (deleteVotes == null)
- + {
- + return;
- + }
- + if (deleteVotes.size() == 0)
- + {
- + return;
- + }
- + try
- + {
- + con = DatabaseFactory.getConnection();
- + st = con.createStatement();
- + for (individualVote iv : deleteVotes)
- + {
- + String sql = String.format("Delete from individualvotes where voterIp = '%s' AND voteSite = %s", iv.getVoterIp(), iv.getVoteSite());
- + st.addBatch(sql);
- + }
- + int[] result = st.executeBatch();
- + st.close();
- + con.close();
- + LOGGER.info(result.length + " Innecesary votes has been deleted");
- +
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- + }
- +
- + public Map<String, individualVote[]> getVotesDB()
- + {
- + return _votes;
- + }
- +
- + public static final individualVoteDB getInstance()
- + {
- + return SingleHolder.INSTANCE;
- + }
- +
- + private static final class SingleHolder
- + {
- + protected static final individualVoteDB INSTANCE = new individualVoteDB();
- + }
- +}
- \ No newline at end of file
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Enum/voteSite.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Enum/voteSite.java
- new file mode 100644
- index 0000000..9218452
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Enum/voteSite.java
- @@ -0,0 +1,19 @@
- +package org.l2jmobius.gameserver.votesystem.Enum;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public enum voteSite
- +{
- + L2TOPGAMESERVER, // 0
- + ITOPZ, // 1
- + L2TOPCO, // 2
- + L2VOTES, // 3
- + HOPZONE, // 4
- + L2NETWORK, // 5
- + L2TOPSERVERS, // 6
- + TOPL2JBRASIL, // 7
- + MMOTOP, // 8
- + TOPZONE, // 9
- + L2SERVERS,// 10
- +}
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Handler/voteHandler.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Handler/voteHandler.java
- new file mode 100644
- index 0000000..c1add0a
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Handler/voteHandler.java
- @@ -0,0 +1,509 @@
- +package org.l2jmobius.gameserver.votesystem.Handler;
- +
- +import java.io.BufferedReader;
- +import java.io.DataOutputStream;
- +import java.io.InputStreamReader;
- +import java.net.HttpURLConnection;
- +import java.net.URL;
- +import java.nio.charset.Charset;
- +import java.text.ParseException;
- +import java.text.SimpleDateFormat;
- +import java.util.logging.Logger;
- +
- +import org.l2jmobius.Config;
- +import org.l2jmobius.gameserver.votesystem.Enum.voteSite;
- +import org.l2jmobius.gameserver.votesystem.Model.individualVoteResponse;
- +import org.l2jmobius.gameserver.votesystem.VoteUtil.VoteSiteXml;
- +import org.l2jmobius.gameserver.votesystem.VoteUtil.VoteUtil;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class voteHandler
- +{
- + public static final Logger LOGGER = Logger.getLogger(voteHandler.class.getName());
- +
- + protected static String getNetWorkResponse(String URL, int ordinal)
- + {
- + if ((ordinal == voteSite.L2NETWORK.ordinal()) && ("".equals(Config.VOTE_NETWORK_API_KEY) || "".equals(Config.VOTE_NETWORK_LINK) || "".equals(Config.VOTE_NETWORK_USER_NAME)))
- + {
- + return "";
- + }
- +
- + StringBuffer response = new StringBuffer();
- + try
- + {
- + String API_URL = Config.VOTE_NETWORK_LINK;
- + String detail = URL;
- + String postParameters = "";
- + postParameters += "apiKey=" + VoteUtil.between("apiKey=", detail, "&type=");
- + postParameters += "&type=" + VoteUtil.between("&type=", detail, "&player");
- + String beginIndexPlayer = "&player=";
- + String player = detail.substring(detail.indexOf(beginIndexPlayer) + beginIndexPlayer.length());
- +
- + if ((player != null) && !player.equals(""))
- + {
- + postParameters += "&player=" + player;
- + }
- +
- + byte[] postData = postParameters.getBytes(Charset.forName("UTF-8"));
- + URL url = new URL(API_URL);
- + HttpURLConnection con = (HttpURLConnection) url.openConnection();
- + con.setConnectTimeout(5000);
- + con.setRequestMethod("POST");
- + con.setRequestProperty("Content-Length", Integer.toString(postData.length));
- + con.setRequestProperty("User-Agent", "Mozilla/5.0");
- + con.setDoOutput(true);
- +
- + DataOutputStream os = new DataOutputStream(con.getOutputStream());
- + os.write(postData);
- + os.flush();
- + os.close();
- +
- + BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
- + String inputLine;
- +
- + while ((inputLine = in.readLine()) != null)
- + {
- + response.append(inputLine);
- + }
- + in.close();
- +
- + return response.toString();
- +
- + }
- + catch (Exception e)
- + {
- + LOGGER.warning(VoteUtil.Sites[ordinal] + " Say: An error ocurred " + e.getCause());
- + return "";
- + }
- + }
- +
- + protected static String getResponse(String Url, int ordinal)
- + {
- + if ((ordinal == voteSite.L2NETWORK.ordinal()) && ("".equals(Config.VOTE_NETWORK_API_KEY) || "".equals(Config.VOTE_NETWORK_LINK) || "".equals(Config.VOTE_NETWORK_USER_NAME)))
- + {
- + return "";
- + }
- +
- + try
- + {
- + int responseCode = 0;
- + URL objUrl = new URL(Url);
- + HttpURLConnection con = (HttpURLConnection) objUrl.openConnection();
- + con.setRequestMethod("GET");
- + con.setRequestProperty("User-Agent", "Mozilla/5.0");
- + con.setConnectTimeout(5000);
- + responseCode = con.getResponseCode();
- + if (responseCode == HttpURLConnection.HTTP_OK)
- + {
- + String inputLine;
- + StringBuffer response = new StringBuffer();
- + BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
- + while ((inputLine = in.readLine()) != null)
- + {
- + response.append(inputLine);
- + }
- + in.close();
- + return response.toString();
- + }
- +
- + }
- + catch (Exception e)
- + {
- + LOGGER.warning(VoteSiteXml.getInstance().getSiteName(ordinal) + " Say: An error ocurred " + e.getCause());
- + return "";
- + }
- +
- + return "";
- + }
- +
- + public static individualVoteResponse getIndividualVoteResponse(int ordinal, String ip, String AccountName)
- + {
- + String response = "";
- + boolean isVoted = false;
- + long voteSiteTime = 0L, diffTime = 0L;
- + SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
- + individualVoteResponse ivr = new individualVoteResponse();
- +
- + switch (ordinal)
- + {
- + case 0:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(VoteUtil.between("\"already_voted\":", response, ",\"vote_time\""));
- + if (isVoted)
- + {
- + try
- + {
- + voteSiteTime = format.parse(VoteUtil.between("\"vote_time\":\"", response, "\",\"server_time\"")).getTime();
- + diffTime = System.currentTimeMillis() - format.parse(VoteUtil.between("\"server_time\":\"", response, "\"}")).getTime();
- + }
- + catch (ParseException e)
- + {
- + e.printStackTrace();
- + }
- + }
- + break;
- +
- + case 1:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(VoteUtil.between("\"isvoted\":", response.toString().toLowerCase().replaceAll("\n", "").replaceAll(" ", ""), ",\"votetime").replaceAll("\"", ""));
- + if (isVoted)
- + {
- + try
- + {
- + voteSiteTime = (Long.parseLong(VoteUtil.between("\"votetime\":", response.toString().toLowerCase().replaceAll("\n", "").replaceAll(" ", ""), ",\"servertime"))) * 1000;
- + diffTime = System.currentTimeMillis() - ((Long.parseLong(VoteUtil.between("\"servertime\":", response.toLowerCase().replaceAll("\n", "").replaceAll(" ", ""), "}"))) * 1000);
- + }
- + catch (Exception e)
- + {
- + e.printStackTrace();
- + }
- + }
- + break;
- +
- + case 2:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(response);
- + if (isVoted)
- + {
- + voteSiteTime = System.currentTimeMillis();
- + diffTime = 0;
- + }
- + break;
- +
- + case 3:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = ((VoteUtil.between("\"status\":\"", response, "\",\"date\"") != "") && (Integer.parseInt(VoteUtil.between("\"status\":\"", response, "\",\"date\"")) == 1)) ? true : false;
- + if (isVoted)
- + {
- + String dateString = VoteUtil.between("\"date\":\"", response, "\"}]");
- + try
- + {
- + voteSiteTime = System.currentTimeMillis();
- + diffTime = 0;
- + }
- + catch (Exception e)
- + {
- + e.printStackTrace();
- + }
- +
- + }
- + break;
- +
- + case 4:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(VoteUtil.between("\"voted\":", response, ",\"voteTime\""));
- + if (isVoted)
- + {
- + try
- + {
- + voteSiteTime = format.parse(VoteUtil.between("\"voteTime\":\"", response, "\",\"hopzoneServerTime\"")).getTime();
- + diffTime = System.currentTimeMillis() - format.parse(VoteUtil.between("\"hopzoneServerTime\":\"", response, "\",\"status_code\":")).getTime();
- + }
- + catch (ParseException e)
- + {
- + e.printStackTrace();
- + }
- + }
- + break;
- +
- + case 5:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (!"".equals(response) && (Integer.parseInt(response) == 1)) ? true : false;
- + if (isVoted)
- + {
- + voteSiteTime = System.currentTimeMillis();
- + diffTime = 0;
- + }
- + break;
- +
- + case 6:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = ("".equals(response)) ? false : Boolean.parseBoolean(VoteUtil.between("\"voted\":", response, ",\"voteTime\""));
- + if (isVoted)
- + {
- + try
- + {
- + voteSiteTime = System.currentTimeMillis();
- + diffTime = 0;
- + }
- + catch (Exception e)
- + {
- + e.printStackTrace();
- + }
- +
- + }
- + break;
- +
- + case 7:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = ((VoteUtil.between("\"status\":\"", response, "\",\"server_time\"") != "") && (Integer.parseInt(VoteUtil.between("\"status\":\"", response, "\",\"server_time\"")) == 1)) ? true : false;
- + if (isVoted)
- + {
- + try
- + {
- + voteSiteTime = System.currentTimeMillis();
- + diffTime = 0;
- + }
- + catch (Exception e)
- + {
- + e.printStackTrace();
- + }
- + }
- + break;
- +
- + case 8:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(VoteUtil.between("\"is_voted\":", response, ",\"vote_time\""));
- + if (isVoted)
- + {
- + try
- + {
- + voteSiteTime = (Long.parseLong(VoteUtil.between("\"vote_time\":", response, ",\"server_time\""))) * 1000;
- + diffTime = System.currentTimeMillis() - (Long.parseLong(VoteUtil.between("\"server_time\":", response, "}}")) * 1000);
- + }
- + catch (Exception e)
- + {
- + e.printStackTrace();
- + }
- + }
- + break;
- +
- + case 9:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(VoteUtil.between("\"isVoted\": ", response, ",\"voteTime\""));
- + if (isVoted)
- + {
- + voteSiteTime = Long.parseLong(VoteUtil.between("\"voteTime\": \"", response, "\",\"serverTime\"")) * 1000;
- + diffTime = System.currentTimeMillis() - (Long.parseLong(VoteUtil.between("\"serverTime\": ", response, "}}")) * 1000);
- + }
- + break;
- +
- + case 10:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(response);
- + if (isVoted)
- + {
- + voteSiteTime = System.currentTimeMillis();
- + diffTime = 0;
- + }
- + break;
- +
- + }
- + if (!response.equals(""))
- + {
- + ivr.setIsVoted(isVoted);
- + ivr.setDiffTime(diffTime);
- + ivr.setVoteSiteTime(voteSiteTime);
- + return ivr;
- + }
- + return null;
- + }
- +
- + public int getGlobalVotesResponse(int ordinal)
- + {
- +
- + String response = "";
- + int totalVotes = 0;
- +
- + switch (ordinal)
- + {
- + case 0:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("\"getVotes\":", response, "}");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 1:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("server_votes\":", response.replace(" ", ""), ",\"server_rank");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 2:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 3:
- + response = VoteUtil.getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("Votes:</th><th><a class='votes'>", response, "</a></th></tr><tr><th>Clicks:");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 4:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("\"totalvotes\":", response, ",\"status_code\"");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 5:
- + String responseNetwork = getNetWorkResponse(getGlobalUrl(ordinal), ordinal);
- + totalVotes = (!"".equals(responseNetwork)) ? Integer.parseInt(responseNetwork) : -1;
- + break;
- +
- + case 6:
- + response = VoteUtil.getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("VOTE <span>", response.toString().replaceAll("\n", ""), "</span>");
- +
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 7:
- + response = VoteUtil.getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("nicas:</b> ", response, "<br /><br />");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 8:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("\"monthly_votes\":", response, "}}");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 9:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("\"totalVotes\":\"", response, "\",\"serverRank\"");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 10:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- + }
- +
- + return totalVotes;
- + }
- +
- + public static String getIndividualUrl(int ordinal, String ip, String AccountName)
- + {
- + String url = "";
- + ip = (Config.TEST_IP.equalsIgnoreCase("off") || Config.TEST_IP.equalsIgnoreCase("")) ? ip : Config.TEST_IP;
- + switch (ordinal)
- + {
- + case 0:
- + // l2.topgameserver.net
- + url = String.format("%sAPI_KEY=%s/getData/%s", Config.VOTE_LINK_TGS, Config.TGS_API_KEY, ip);
- + break;
- +
- + case 1:
- + // itopz.com
- + url = String.format("%s%s/%s/%s", Config.VOTE_LINK_ITOPZ, Config.ITOPZ_API_KEY, Config.ITOPZ_SRV_ID, ip);
- + break;
- +
- + case 2:
- + // l2top.co
- + url = String.format("%sVoteCheck.php?id=%s&ip=%s", Config.VOTE_LINK_TOP_CO, Config.TOP_CO_SRV_ID, ip);
- + break;
- +
- + case 3:
- + // l2votes.com
- + url = String.format("%sapi.php?apiKey=%s&ip=%s", Config.VOTE_LINK_VTS, Config.VTS_API_KEY, ip);
- + break;
- +
- + case 4:
- + // hopzone.net
- + url = String.format("%svote?token=%s&ip_address=%s", Config.VOTE_LINK_HZ, Config.HZ_API_KEY, ip);
- + break;
- +
- + case 5:
- + // l2network.eu
- + url = String.format("https://l2network.eu/index.php?a=in&u=%s&ipc=%s", Config.VOTE_NETWORK_USER_NAME, ip);
- + break;
- +
- + case 6:
- + // l2topservers.com
- + url = String.format("%stoken=%s&ip=%s", Config.VOTE_LINK_TSS, Config.TSS_API_TOKEN, ip);
- + break;
- +
- + case 7:
- + // top.l2jbrasil.com
- + url = String.format("%susername=%s&ip=%s&type=json", Config.BRASIL_VOTE_LINK, Config.BRASIL_USER_NAME, ip);
- + break;
- +
- + case 8:
- + // mmotop
- + url = String.format("%s%s/ip/%s", Config.VOTE_LINK_MMOTOP, Config.MMOTOP_API_KEY, ip);
- + break;
- +
- + case 9:
- + // topzone.com
- + url = String.format("%svote?token=%s&ip=%s", Config.VOTE_LINK_TZ, Config.TZ_API_KEY, ip);
- + break;
- +
- + case 10:
- + // l2servers.com
- + url = String.format("%scheckip.php?hash=%s&server_id=%s&ip=%s", Config.VOTE_LINK_SERVERS, Config.SERVERS_HASH_CODE, Config.SERVERS_SRV_ID, ip);
- + break;
- + }
- +
- + return url;
- + }
- +
- + public String getGlobalUrl(int ordinal)
- + {
- + String url = "";
- +
- + switch (ordinal)
- + {
- + case 0:
- + // l2.topgameserver.net
- + url = String.format("%sAPI_KEY=%s/getData", Config.VOTE_LINK_TGS, Config.TGS_API_KEY);
- + break;
- +
- + case 1:
- + // itopz.com
- + url = String.format("%s%s/%s", Config.VOTE_LINK_ITOPZ, Config.ITOPZ_API_KEY, Config.ITOPZ_SRV_ID);
- + break;
- +
- + case 2:
- + // l2top.co
- + url = String.format("%sVoteCheck_Total.php?id=%s", Config.VOTE_LINK_TOP_CO, Config.TOP_CO_SRV_ID);
- + break;
- +
- + case 3:
- + // l2votes.com
- + url = String.format("%sserverPage.php?sid=%s", Config.VOTE_LINK_VTS, Config.VTS_SID);
- + break;
- +
- + case 4:
- + // hopzone.net
- + url = String.format("%svotes?token=%s", Config.VOTE_LINK_HZ, Config.HZ_API_KEY);
- + break;
- +
- + case 5:
- + // l2network.eu
- + url = String.format("apiKey=%s&type=%s&player=", Config.VOTE_NETWORK_API_KEY, 1);
- + break;
- +
- + case 6:
- + // l2topservers
- + url = String.format("https://l2topservers.com/l2top/%s/%s", Config.TS_SRV_ID, Config.TS_DOMAIN_NAME);
- + break;
- +
- + case 7:
- + // top.l2jbrasil.com
- + url = String.format("https://top.l2jbrasil.com/index.php?a=stats&u=%s", Config.BRASIL_USER_NAME);
- + break;
- +
- + case 8:
- + // mmotop.eu/l2/
- + url = String.format("%s%s/info/", Config.VOTE_LINK_MMOTOP, Config.MMOTOP_API_KEY);
- + break;
- +
- + case 9:
- + // l2topzone.com
- + url = String.format("%sserver_%s/getServerData", Config.VOTE_LINK_TZ, Config.TZ_API_KEY);
- + break;
- +
- + case 10:
- + // l2servers.com
- + url = String.format("%syearlyvotes.php?server_id=%s", Config.VOTE_LINK_SERVERS, Config.SERVERS_SRV_ID);
- + break;
- + }
- +
- + return url;
- + }
- +}
- \ No newline at end of file
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Handler/voteManager.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Handler/voteManager.java
- new file mode 100644
- index 0000000..006e4a2
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Handler/voteManager.java
- @@ -0,0 +1,393 @@
- +package org.l2jmobius.gameserver.votesystem.Handler;
- +
- +import java.util.HashSet;
- +import java.util.Map;
- +import java.util.concurrent.ConcurrentHashMap;
- +import java.util.concurrent.ScheduledFuture;
- +
- +import org.l2jmobius.Config;
- +import org.l2jmobius.commons.concurrent.ThreadPool;
- +import org.l2jmobius.gameserver.model.World;
- +import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
- +import org.l2jmobius.gameserver.network.GameClient;
- +import org.l2jmobius.gameserver.network.SystemMessageId;
- +import org.l2jmobius.gameserver.network.serverpackets.ItemList;
- +import org.l2jmobius.gameserver.network.serverpackets.SystemMessage;
- +import org.l2jmobius.gameserver.util.Broadcast;
- +import org.l2jmobius.gameserver.votesystem.DB.globalVoteDB;
- +import org.l2jmobius.gameserver.votesystem.DB.individualVoteDB;
- +import org.l2jmobius.gameserver.votesystem.Enum.voteSite;
- +import org.l2jmobius.gameserver.votesystem.Model.Reward;
- +import org.l2jmobius.gameserver.votesystem.Model.globalVote;
- +import org.l2jmobius.gameserver.votesystem.Model.individualVote;
- +import org.l2jmobius.gameserver.votesystem.Model.individualVoteResponse;
- +import org.l2jmobius.gameserver.votesystem.VoteUtil.VoteSiteXml;
- +import org.l2jmobius.gameserver.votesystem.VoteUtil.VoteUtil;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public final class voteManager extends voteHandler
- +{
- + private ScheduledFuture<?> _saveGlobalVotes;
- + private ScheduledFuture<?> _updateIndividualVotes;
- + private ScheduledFuture<?> _autoGlobalVotesReward;
- +
- + private HashSet<individualVote> _votes;
- + private Map<String, individualVote[]> _foundVoters;
- + private globalVote[] _globalVotes = new globalVote[voteSite.values().length];
- +
- + public voteManager()
- + {
- + _foundVoters = new ConcurrentHashMap<>();
- + loadVotes();
- + loadGlobalVotes();
- + checkAllResponseGlobalVotes();
- + stopAutoTasks();
- +
- + if (Config.ENABLE_INDIVIDUAL_VOTE && Config.ENABLE_VOTE_SYSTEM)
- + {
- + _updateIndividualVotes = ThreadPool.scheduleAtFixedRate(new AutoUpdateIndividualVotesTask(), 30000, Config.NEXT_TIME_TO_AUTO_UPDATE_INDIVIDUAL_VOTES);
- + }
- + if (Config.ENABLE_GLOBAL_VOTE && Config.ENABLE_VOTE_SYSTEM)
- + {
- + _autoGlobalVotesReward = ThreadPool.scheduleAtFixedRate(new AutoGlobalVoteRewardTask(), 10000, Config.NEXT_TIME_TO_CHECK_AUTO_GLOBAL_VOTES_REWARD);
- + _saveGlobalVotes = ThreadPool.scheduleAtFixedRate(new AutoSaveGlobalVotesTask(), 30000, Config.NEXT_TIME_TO_AUTO_UPDATE_TOTAL_VOTE);
- + }
- + }
- +
- + private void stopAutoTasks()
- + {
- + if (_saveGlobalVotes != null)
- + {
- + _saveGlobalVotes.cancel(true);
- + _saveGlobalVotes = null;
- + }
- + if (_updateIndividualVotes != null)
- + {
- + _updateIndividualVotes.cancel(true);
- + _updateIndividualVotes = null;
- + }
- + if (_autoGlobalVotesReward != null)
- + {
- + _autoGlobalVotesReward.cancel(true);
- + _autoGlobalVotesReward = null;
- + }
- + }
- +
- + public void getReward(PlayerInstance player, int ordinalSite)
- + {
- + String ip = existIp(player);
- + if (ip == null)
- + {
- + return;
- + }
- + individualVoteResponse ivr = getIndividualVoteResponse(ordinalSite, ip, player.getAccountName());
- + if (ivr == null)
- + {
- + player.sendMessage("We were unable to verify your vote with: " + VoteSiteXml.getInstance().getSiteName(ordinalSite) + ", please try again");
- + return;
- + }
- +
- + if (getTimeRemaining(new individualVote(ip, ivr.getVoteSiteTime(), ordinalSite, false)) < 0)
- + {
- + player.sendMessage("We were unable to verify your vote with: " + VoteSiteXml.getInstance().getSiteName(ordinalSite) + ", please try again");
- + return;
- + }
- + if (!ivr.getIsVoted())
- + {
- + player.sendMessage(String.format("You haven't vote on %s yet!", VoteSiteXml.getInstance().getSiteName(ordinalSite)));
- + return;
- + }
- + if (!checkIndividualAvailableVote(player, ordinalSite))
- + {
- + player.sendMessage(String.format("You can get the reward again on %s at %s", VoteSiteXml.getInstance().getSiteName(ordinalSite), getTimeRemainingWithSampleFormat(player, ordinalSite)));
- + return;
- + }
- + individualVote iv = new individualVote(ip, ivr.getDiffTime(), ivr.getVoteSiteTime(), ordinalSite, false);
- +
- + individualVote[] aiv;
- + if (!_foundVoters.containsKey(ip))
- + {
- + aiv = new individualVote[voteSite.values().length];
- + iv.setAlreadyRewarded(true);
- + aiv[ordinalSite] = iv;
- + _foundVoters.put(ip, aiv);
- + }
- + else
- + {
- + aiv = _foundVoters.get(ip);
- + iv.setAlreadyRewarded(true);
- + aiv[ordinalSite] = iv;
- + _foundVoters.replace(ip, aiv);
- +
- + }
- + for (Reward reward : VoteSiteXml.getInstance().getRewards(ordinalSite))
- + {
- + player.getInventory().addItem("VoteSystem", reward.getItemId(), reward.getItemCount(), player, null);
- + player.sendPacket(new SystemMessage(SystemMessageId.YOU_HAVE_EARNED_S2_S1_S).addItemName(reward.getItemId()).addInt(reward.getItemCount()));
- + }
- + player.sendMessage(String.format("%s: Thank you for voting for our server, your reward has been delivered.", VoteSiteXml.getInstance().getSiteName(ordinalSite)));
- + player.sendPacket(new ItemList(player, true));
- + }
- +
- + public boolean checkIndividualAvailableVote(PlayerInstance player, int ordinalSite)
- + {
- + String ip = existIp(player);
- + if (_foundVoters.containsKey(ip))
- + {
- + individualVote[] ivs = _foundVoters.get(ip);
- + if (ivs[ordinalSite] == null)
- + {
- + return true;
- + }
- + if (ivs[ordinalSite] != null)
- + {
- + individualVote iv = ivs[ordinalSite];
- + if (getTimeRemaining(iv) < 0)
- + {
- + return true;
- + }
- + }
- + }
- + else
- + {
- + return true;
- + }
- +
- + return false;
- + }
- +
- + public long getTimeRemaining(individualVote iv)
- + {
- + long timeRemaining = 0L;
- + timeRemaining = ((iv.getVotingTimeSite() + Config.INTERVAL_TO_NEXT_VOTE) - ((iv.getDiffTime() > 0) ? (System.currentTimeMillis() + iv.getDiffTime()) : (System.currentTimeMillis() - iv.getDiffTime())));
- + return timeRemaining;
- + }
- +
- + public String getTimeRemainingWithSampleFormat(PlayerInstance player, int ordinalSite)
- + {
- + String ip = existIp(player);
- + String timeRemainingWithSampleFormat = "";
- + if (_foundVoters.containsKey(ip))
- + {
- + individualVote[] ivs = _foundVoters.get(ip);
- + if (ivs[ordinalSite] != null)
- + {
- + individualVote iv = ivs[ordinalSite];
- + long timeRemaining = getTimeRemaining(iv);
- + if (timeRemaining > 0)
- + {
- + timeRemainingWithSampleFormat = CalculateTimeRemainingWithSampleDateFormat(timeRemaining);
- + return timeRemainingWithSampleFormat;
- + }
- + }
- + }
- + return timeRemainingWithSampleFormat;
- + }
- +
- + public String CalculateTimeRemainingWithSampleDateFormat(long timeRemaining)
- + {
- + long t = timeRemaining / 1000;
- + int hours = Math.round(((t / 3600) % 24));
- + int minutes = Math.round((t / 60) % 60);
- + int seconds = Math.round(t % 60);
- + return String.format("%sH:%sm:%ss", hours, minutes, seconds);
- + }
- +
- + public String existIp(PlayerInstance p)
- + {
- +
- + GameClient client = p.getClient();
- + if ((client.getConnectionAddress() != null) && (client.getPlayer() != null) && !client.isDetached())
- + {
- + try
- + {
- + return client.getConnectionAddress().getHostAddress();
- + }
- + catch (Exception e)
- + {
- + e.printStackTrace();
- + }
- + }
- + return null;
- +
- + }
- +
- + public final void loadVotes()
- + {
- + _foundVoters = individualVoteDB.getInstance().getVotesDB();
- + }
- +
- + protected void loadGlobalVotes()
- + {
- + _globalVotes = globalVoteDB.getInstance().getGlobalVotes();
- + }
- +
- + public void saveVotes()
- + {
- + individualVoteDB.getInstance().SaveVotes(_foundVoters);
- + }
- +
- + protected void AutoGlobalVoteReward()
- + {
- + HashSet<String> ipList = new HashSet<>();
- + for (voteSite vs : voteSite.values())
- + {
- +
- + new Thread(() ->
- + {
- + checkNewUpdate(vs.ordinal());
- + if (_globalVotes[vs.ordinal()].getCurrentVotes() >= (_globalVotes[vs.ordinal()].getVotesLastReward() + (vs.ordinal() == voteSite.L2SERVERS.ordinal() ? 25 * Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD : Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD)))
- + {
- + _globalVotes[vs.ordinal()].setVotesLastReward(_globalVotes[vs.ordinal()].getVotesLastReward() + (vs.ordinal() == voteSite.L2SERVERS.ordinal() ? 25 * Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD : Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD));
- + for (PlayerInstance player : World.getInstance().getPlayers())
- + {
- + String ip = existIp(player);
- + if (ip == null)
- + {
- + continue;
- + }
- + if (ipList.contains(ip))
- + {
- + continue;
- + }
- + for (Reward reward : VoteSiteXml.getInstance().getRewards(11))
- + {
- + player.getInventory().addItem("VoteSystem: ", reward.getItemId(), reward.getItemCount(), player, null);
- + player.sendPacket(new SystemMessage(SystemMessageId.YOU_HAVE_EARNED_S2_S1_S).addItemName(reward.getItemId()).addInt(reward.getItemCount()));
- + }
- + ipList.add(ip);
- + player.sendPacket(new ItemList(player, true));
- + }
- + Broadcast.toAllOnlinePlayers(VoteUtil.Sites[vs.ordinal()] + ": All players has been rewarded, please check your inventory", true);
- + }
- + else
- + {
- + String encourage = "";
- + int nextReward = _globalVotes[vs.ordinal()].getVotesLastReward() + (vs.ordinal() == voteSite.L2SERVERS.ordinal() ? 25 * Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD : Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD);
- + encourage = String.format("Vote for %s current Votes: %s, next quantity of votes to reward : %s, need votes to next reward: %s", VoteUtil.Sites[vs.ordinal()], _globalVotes[vs.ordinal()].getCurrentVotes(), nextReward, nextReward - _globalVotes[vs.ordinal()].getCurrentVotes());
- + Broadcast.toAllOnlinePlayers(encourage, true);
- + }
- + }).start();
- +
- + }
- + }
- +
- + protected void AutoSaveGlobalVotes()
- + {
- + globalVoteDB.getInstance().saveGlobalVotes(_globalVotes);
- + }
- +
- + protected synchronized void AutoUpdateIndividualVotes()
- + {
- + AutoCleanInnecesaryIndividualVotes();
- + individualVoteDB.getInstance().SaveVotes(_foundVoters);
- + }
- +
- + protected synchronized void AutoCleanInnecesaryIndividualVotes()
- + {
- + HashSet<individualVote> removeVotes = new HashSet<>();
- + for (Map.Entry<String, individualVote[]> ivs : _foundVoters.entrySet())
- + {
- + for (individualVote individualvote : ivs.getValue())
- + {
- + if (individualvote == null)
- + {
- + continue;
- + }
- + if (getTimeRemaining(individualvote) < 0)
- + {
- + removeVotes.add(individualvote);
- + if (_foundVoters.containsKey(individualvote.getVoterIp()))
- + {
- + if (_foundVoters.get(individualvote.getVoterIp())[individualvote.getVoteSite()] != null)
- + {
- + _foundVoters.get(individualvote.getVoterIp())[individualvote.getVoteSite()] = null;
- + }
- + }
- + }
- + }
- + }
- + individualVoteDB.getInstance().DeleteVotes(removeVotes);
- + }
- +
- + public void checkAllResponseGlobalVotes()
- + {
- + for (voteSite vs : voteSite.values())
- + {
- + new Thread(() ->
- + {
- + checkNewUpdate(vs.ordinal());
- + });
- + }
- + }
- +
- + public void checkNewUpdate(int ordinalSite)
- + {
- + int globalVotesResponse = getGlobalVotesResponse(ordinalSite);
- + if (globalVotesResponse == -1)
- + {
- + return;
- + }
- + _globalVotes[ordinalSite].setCurrentVotes(globalVotesResponse);
- + int last = globalVotesResponse - (ordinalSite == voteSite.L2SERVERS.ordinal() ? 25 * Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD : Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD);
- + if (last < 0)
- + {
- + _globalVotes[ordinalSite].setVotesLastReward(0);
- + return;
- + }
- + if ((_globalVotes[ordinalSite].getVotesLastReward() + (ordinalSite == voteSite.L2SERVERS.ordinal() ? 25 * Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD : Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD)) < globalVotesResponse)
- + {
- + _globalVotes[ordinalSite].setVotesLastReward(globalVotesResponse);
- + return;
- + }
- + }
- +
- + public void Shutdown()
- + {
- + AutoSaveGlobalVotes();
- + AutoCleanInnecesaryIndividualVotes();
- + AutoUpdateIndividualVotes();
- + }
- +
- + protected class AutoGlobalVoteRewardTask implements Runnable
- + {
- +
- + @Override
- + public void run()
- + {
- + AutoGlobalVoteReward();
- +
- + }
- +
- + }
- +
- + protected class AutoSaveGlobalVotesTask implements Runnable
- + {
- +
- + @Override
- + public void run()
- + {
- + AutoSaveGlobalVotes();
- +
- + }
- +
- + }
- +
- + protected class AutoUpdateIndividualVotesTask implements Runnable
- + {
- +
- + @Override
- + public void run()
- + {
- + AutoUpdateIndividualVotes();
- +
- + }
- +
- + }
- +
- + public static voteManager getInatance()
- + {
- + return SingleHolder.INSTANCE;
- + }
- +
- + private static class SingleHolder
- + {
- + protected static final voteManager INSTANCE = new voteManager();
- + }
- +}
- \ No newline at end of file
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/Reward.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/Reward.java
- new file mode 100644
- index 0000000..92068aa
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/Reward.java
- @@ -0,0 +1,38 @@
- +package org.l2jmobius.gameserver.votesystem.Model;
- +
- +import org.l2jmobius.commons.util.StatsSet;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class Reward
- +{
- + private int _itemId;
- + private int _itemCount;
- +
- + public Reward(StatsSet set)
- + {
- + _itemId = set.getInteger("itemId");
- + _itemCount = set.getInteger("itemCount");
- + }
- +
- + public void setItemId(int itemId)
- + {
- + _itemId = itemId;
- + }
- +
- + public void setItemCount(int itemCount)
- + {
- + _itemCount = itemCount;
- + }
- +
- + public int getItemId()
- + {
- + return _itemId;
- + }
- +
- + public int getItemCount()
- + {
- + return _itemCount;
- + }
- +}
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/VoteSite.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/VoteSite.java
- new file mode 100644
- index 0000000..0b26c01
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/VoteSite.java
- @@ -0,0 +1,53 @@
- +package org.l2jmobius.gameserver.votesystem.Model;
- +
- +import java.util.ArrayList;
- +import java.util.List;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class VoteSite
- +{
- + private int _siteOrdinal;
- + private String _siteName;
- + private final List<Reward> _rewards = new ArrayList<>();
- +
- + public VoteSite()
- + {
- +
- + }
- +
- + public void setSiteOrdinal(int siteOrdinal)
- + {
- + _siteOrdinal = siteOrdinal;
- + }
- +
- + public void setSiteName(String siteName)
- + {
- + _siteName = siteName;
- + }
- +
- + public void setRewardList(List<Reward> rewards)
- + {
- + for (Reward r : rewards)
- + {
- + _rewards.add(r);
- + }
- + }
- +
- + public int getSiteOrdinal()
- + {
- + return _siteOrdinal;
- + }
- +
- + public String getSiteName()
- + {
- + return _siteName;
- + }
- +
- + public List<Reward> getRewardList()
- + {
- + return _rewards;
- + }
- +
- +}
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/globalVote.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/globalVote.java
- new file mode 100644
- index 0000000..6ed7b6b
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/globalVote.java
- @@ -0,0 +1,53 @@
- +package org.l2jmobius.gameserver.votesystem.Model;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class globalVote
- +{
- + private int _voteSite;
- + private int _votesLastReward;
- + private int _currentVotes;
- +
- + public globalVote()
- + {
- +
- + }
- +
- + public globalVote(int voteSite, int votesLastReward)
- + {
- + _voteSite = voteSite;
- + _votesLastReward = votesLastReward;
- + }
- +
- + public void setVoteSite(int voteSite)
- + {
- + _voteSite = voteSite;
- + }
- +
- + public void setVotesLastReward(int votesLastReward)
- + {
- + _votesLastReward = votesLastReward;
- + }
- +
- + public void setCurrentVotes(int currentVotes)
- + {
- + _currentVotes = currentVotes;
- + }
- +
- + public int getVoyeSite()
- + {
- + return _voteSite;
- + }
- +
- + public int getVotesLastReward()
- + {
- + return _votesLastReward;
- + }
- +
- + public int getCurrentVotes()
- + {
- + return _currentVotes;
- + }
- +
- +}
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/individualVote.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/individualVote.java
- new file mode 100644
- index 0000000..2b22289
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/individualVote.java
- @@ -0,0 +1,78 @@
- +package org.l2jmobius.gameserver.votesystem.Model;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class individualVote
- +{
- + private String _voterIp;
- + private long _diffTime;
- + private long _votingTimeSite;
- + private int _voteSite;
- + private boolean _alreadyRewarded;
- +
- + public individualVote(String voterIp, long diffTime, long votingTimeSite, int voteSite, boolean alreadyRewarded)
- + {
- + _voterIp = voterIp;
- + _diffTime = diffTime;
- + _votingTimeSite = votingTimeSite;
- + _voteSite = voteSite;
- + _alreadyRewarded = alreadyRewarded;
- + }
- +
- + public individualVote()
- + {
- +
- + }
- +
- + public void setVoterIp(String voterIp)
- + {
- + _voterIp = voterIp;
- + }
- +
- + public void setDiffTime(long diffTime)
- + {
- + _diffTime = diffTime;
- + }
- +
- + public void setVotingTimeSite(long votingTimeSite)
- + {
- + _votingTimeSite = votingTimeSite;
- + }
- +
- + public void setVoteSite(int voteSite)
- + {
- + _voteSite = voteSite;
- + }
- +
- + public void setAlreadyRewarded(boolean alreadyRewarded)
- + {
- + _alreadyRewarded = alreadyRewarded;
- + }
- +
- + public String getVoterIp()
- + {
- + return _voterIp;
- + }
- +
- + public long getDiffTime()
- + {
- + return _diffTime;
- + }
- +
- + public long getVotingTimeSite()
- + {
- + return _votingTimeSite;
- + }
- +
- + public int getVoteSite()
- + {
- + return _voteSite;
- + }
- +
- + public boolean getAlreadyRewarded()
- + {
- + return _alreadyRewarded;
- + }
- +
- +}
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/individualVoteResponse.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/individualVoteResponse.java
- new file mode 100644
- index 0000000..6707e1b
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/Model/individualVoteResponse.java
- @@ -0,0 +1,46 @@
- +package org.l2jmobius.gameserver.votesystem.Model;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class individualVoteResponse
- +{
- + private boolean _isVoted;
- + private long _diffTime;
- + private long _voteSiteTime;
- +
- + public individualVoteResponse()
- + {
- +
- + }
- +
- + public void setIsVoted(boolean isVoted)
- + {
- + _isVoted = isVoted;
- + }
- +
- + public void setDiffTime(long diffTime)
- + {
- + _diffTime = diffTime;
- + }
- +
- + public void setVoteSiteTime(long voteSiteTime)
- + {
- + _voteSiteTime = voteSiteTime;
- + }
- +
- + public boolean getIsVoted()
- + {
- + return _isVoted;
- + }
- +
- + public long getDiffTime()
- + {
- + return _diffTime;
- + }
- +
- + public long getVoteSiteTime()
- + {
- + return _voteSiteTime;
- + }
- +}
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/VoteUtil/VoteSiteXml.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/VoteUtil/VoteSiteXml.java
- new file mode 100644
- index 0000000..618de10
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/VoteUtil/VoteSiteXml.java
- @@ -0,0 +1,92 @@
- +package org.l2jmobius.gameserver.votesystem.VoteUtil;
- +
- +import java.io.File;
- +import java.util.Collection;
- +import java.util.HashMap;
- +import java.util.Map;
- +import java.util.logging.Level;
- +
- +import org.w3c.dom.Document;
- +import org.w3c.dom.NamedNodeMap;
- +import org.w3c.dom.Node;
- +
- +import org.l2jmobius.commons.util.IXmlReader;
- +import org.l2jmobius.commons.util.StatsSet;
- +import org.l2jmobius.gameserver.votesystem.Model.Reward;
- +import org.l2jmobius.gameserver.votesystem.Model.VoteSite;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class VoteSiteXml implements IXmlReader
- +{
- +
- + private final Map<Integer, VoteSite> _voteSites = new HashMap<>();
- +
- + protected VoteSiteXml()
- + {
- + load();
- + }
- +
- + @Override
- + public synchronized void load()
- + {
- + parseDatapackFile("data/votesystem.xml");
- + LOGGER.log(Level.INFO, "Loaded {} reward sites", _voteSites.size());
- + }
- +
- + @Override
- + public void parseDocument(Document doc, File f)
- + {
- + forEach(doc, "list", listNode ->
- + {
- + forEach(listNode, "votesite", votesiteNode ->
- + {
- + final VoteSite votesite = new VoteSite();
- + final NamedNodeMap attrs = votesiteNode.getAttributes();
- + votesite.setSiteOrdinal(parseInteger(attrs, "ordinal"));
- + votesite.setSiteName(parseString(attrs, "name"));
- + forEach(votesiteNode, "items", itemsNode -> forEach(itemsNode, "item", itemNode -> votesite.getRewardList().add(new Reward(parseAttributes(itemNode)))));
- + _voteSites.put(votesite.getSiteOrdinal(), votesite);
- + });
- + });
- + }
- +
- + /**
- + * @param itemNode
- + * @return
- + */
- + @Override
- + public StatsSet parseAttributes(Node node)
- + {
- + final NamedNodeMap attrs = node.getAttributes();
- + final StatsSet map = new StatsSet();
- + for (int i = 0; i < attrs.getLength(); i++)
- + {
- + final Node att = attrs.item(i);
- + map.put(att.getNodeName(), att.getNodeValue());
- + }
- + return map;
- + }
- +
- + public String getSiteName(int ordinal)
- + {
- + return _voteSites.get(ordinal).getSiteName();
- + }
- +
- + public Collection<Reward> getRewards(int ordinal)
- + {
- + return _voteSites.get(ordinal).getRewardList();
- + }
- +
- + public static final VoteSiteXml getInstance()
- + {
- + return SingletonHolder.INSTANCE;
- + }
- +
- + private static final class SingletonHolder
- + {
- + protected static final VoteSiteXml INSTANCE = new VoteSiteXml();
- + }
- +
- +}
- diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/VoteUtil/VoteUtil.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/VoteUtil/VoteUtil.java
- new file mode 100644
- index 0000000..1a904c1
- --- /dev/null
- +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/votesystem/VoteUtil/VoteUtil.java
- @@ -0,0 +1,123 @@
- +package org.l2jmobius.gameserver.votesystem.VoteUtil;
- +
- +import java.io.BufferedReader;
- +import java.io.InputStreamReader;
- +import java.net.HttpURLConnection;
- +import java.net.URL;
- +import java.time.LocalDateTime;
- +import java.time.ZoneId;
- +import java.time.ZonedDateTime;
- +import java.util.logging.Logger;
- +
- +import org.l2jmobius.gameserver.votesystem.Handler.voteHandler;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public final class VoteUtil
- +{
- + public static final Logger LOGGER = Logger.getLogger(voteHandler.class.getName());
- +
- + private static String voteTimeZones[] =
- + {
- + "topgameserver.net=Europe/Berlin",
- + "itopz.com=America/New_York",
- + "l2top.co=Europe/London",
- + "l2votes.com=GMT",
- + "hopzone.net=Europe/Athens",
- + "l2network.eu=America/Chicago",
- + "l2topservers.com=Europe/Athens",
- + "top.l2jbrasil.com=America/Sao_Paulo",
- + "mmotop.eu=America/Chicago",
- + "l2topzone.com=America/Chicago",
- + "l2servers.com=America/Chicago",
- + };
- +
- + public static final long getTimeVotingSite(int ordinalSite)
- + {
- + LocalDateTime ldt = LocalDateTime.now(ZoneId.of(voteTimeZones[ordinalSite].split("=")[1]));
- + ZonedDateTime zdt = ldt.atZone(ZoneId.systemDefault());
- + long millis = zdt.toInstant().toEpochMilli();
- + return millis;
- + }
- +
- + public static final String Sites[] =
- + {
- + "L2.TopGameServer.net",
- + "ITopZ.com",
- + "L2Top.co",
- + "L2Votes.com",
- + "L2.Hopzone.net",
- + "L2Network.eu",
- + "L2TopServers.com",
- + "top.l2jbrasil.com",
- + "MMOTOP.eu",
- + "L2Topzone.com",
- + "L2Servers.com"
- + };
- +
- + public static final String getResponse(String Url, int ordinal)
- + {
- +
- + try
- + {
- + int responseCode = 0;
- + URL objUrl = new URL(Url);
- + HttpURLConnection con = (HttpURLConnection) objUrl.openConnection();
- + con.setRequestMethod("GET");
- + con.setRequestProperty("User-Agent", "Mozilla/5.0");
- + con.setConnectTimeout(5000);
- + responseCode = con.getResponseCode();
- + if (responseCode == HttpURLConnection.HTTP_OK)
- + {
- +
- + String inputLine;
- + StringBuffer response = new StringBuffer();
- + BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
- + while ((inputLine = in.readLine()) != null)
- + {
- + if (ordinal == 3)
- + {
- + if (inputLine.contains("Votes:"))
- + {
- + response.append(inputLine);
- + break;
- + }
- + }
- + if (ordinal == 7)
- + {
- + if (inputLine.contains("<b>Entradas "))
- + {
- + response.append(inputLine);
- + break;
- + }
- + }
- + }
- + in.close();
- + return response.toString();
- + }
- +
- + }
- + catch (Exception e)
- + {
- + LOGGER.warning(VoteUtil.Sites[ordinal] + " Say: An error ocurred " + e.getStackTrace());
- + return "";
- + }
- +
- + return "";
- + }
- +
- + public static final String between(String p1, String str, String p2)
- + {
- + String returnValue = "";
- + int i1 = str.indexOf(p1);
- + int i2 = str.indexOf(p2);
- + if ((i1 != -1) && (i2 != -1))
- + {
- + i1 = i1 + p1.length();
- + returnValue = str.substring(i1, i2);
- + }
- + return returnValue;
- + }
- +
- +}
- ==========================================SQL================================
- -- ----------------------------
- -- Table structure for globalvotes
- -- ----------------------------
- DROP TABLE IF EXISTS `globalvotes`;
- CREATE TABLE `globalvotes` (
- `voteSite` tinyint(2) NOT NULL,
- `lastRewardVotes` int(11) NULL DEFAULT NULL,
- PRIMARY KEY (`voteSite`) USING BTREE
- ) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
- -- ----------------------------
- -- Records of globalvotes
- -- ----------------------------
- INSERT INTO `globalvotes` VALUES (0, 13);
- INSERT INTO `globalvotes` VALUES (1, 68);
- INSERT INTO `globalvotes` VALUES (2, 0);
- INSERT INTO `globalvotes` VALUES (3, 3);
- INSERT INTO `globalvotes` VALUES (4, 2);
- INSERT INTO `globalvotes` VALUES (5, 0);
- INSERT INTO `globalvotes` VALUES (6, 0);
- INSERT INTO `globalvotes` VALUES (7, 2);
- INSERT INTO `globalvotes` VALUES (8, 3);
- INSERT INTO `globalvotes` VALUES (9, 0);
- INSERT INTO `globalvotes` VALUES (10, 75);
- -- ----------------------------
- -- Table structure for individualvotes
- -- ----------------------------
- DROP TABLE IF EXISTS `individualvotes`;
- CREATE TABLE `individualvotes` (
- `voterIp` varchar(40) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
- `voteSite` tinyint(3) NOT NULL,
- `diffTime` bigint(20) NULL DEFAULT NULL,
- `votingTimeSite` bigint(20) NULL DEFAULT NULL,
- `alreadyRewarded` tinyint(3) NULL DEFAULT NULL,
- PRIMARY KEY (`voterIp`, `voteSite`) USING BTREE
- ) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
Add Comment
Please, Sign In to add comment