123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /*
- * 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 com.l2jserver.gameserver.taskmanager.tasks;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.sql.SQLException;
- import java.util.Calendar;
- import java.util.GregorianCalendar;
- import java.util.logging.Level;
- import com.l2jserver.Config;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.datatables.CharNameTable;
- import com.l2jserver.gameserver.instancemanager.MailManager;
- import com.l2jserver.gameserver.model.entity.Message;
- import com.l2jserver.gameserver.model.itemcontainer.Mail;
- import com.l2jserver.gameserver.taskmanager.Task;
- import com.l2jserver.gameserver.taskmanager.TaskManager;
- import com.l2jserver.gameserver.taskmanager.TaskManager.ExecutedTask;
- import com.l2jserver.gameserver.taskmanager.TaskTypes;
- import com.l2jserver.gameserver.util.Util;
- /**
- * @author Nyaran
- */
- public class TaskBirthday extends Task
- {
- private static final String NAME = "birthday";
- private static final String QUERY = "SELECT charId, createDate FROM characters WHERE createDate LIKE ?";
- private static final Calendar _today = Calendar.getInstance();
- private int _count = 0;
-
- @Override
- public String getName()
- {
- return NAME;
- }
-
- @Override
- public void onTimeElapsed(ExecutedTask task)
- {
- Calendar lastExecDate = Calendar.getInstance();
- long lastActivation = task.getLastActivation();
-
- if (lastActivation > 0)
- {
- lastExecDate.setTimeInMillis(lastActivation);
- }
-
- String rangeDate = "[" + Util.getDateString(lastExecDate.getTime()) + "] - [" + Util.getDateString(_today.getTime()) + "]";
-
- for (; !_today.before(lastExecDate); lastExecDate.add(Calendar.DATE, 1))
- {
- checkBirthday(lastExecDate.get(Calendar.YEAR), lastExecDate.get(Calendar.MONTH), lastExecDate.get(Calendar.DATE));
- }
-
- _log.info("BirthdayManager: " + _count + " gifts sent. " + rangeDate);
- }
-
- private void checkBirthday(int year, int month, int day)
- {
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement(QUERY))
- {
- statement.setString(1, "%-" + getNum(month + 1) + "-" + getNum(day));
- try (ResultSet rset = statement.executeQuery())
- {
- while (rset.next())
- {
- int playerId = rset.getInt("charId");
- Calendar createDate = Calendar.getInstance();
- createDate.setTime(rset.getDate("createDate"));
-
- int age = year - createDate.get(Calendar.YEAR);
- if (age <= 0)
- {
- continue;
- }
-
- String text = Config.ALT_BIRTHDAY_MAIL_TEXT;
-
- if (text.contains("$c1"))
- {
- text = text.replace("$c1", CharNameTable.getInstance().getNameById(playerId));
- }
- if (text.contains("$s1"))
- {
- text = text.replace("$s1", String.valueOf(age));
- }
-
- Message msg = new Message(playerId, Config.ALT_BIRTHDAY_MAIL_SUBJECT, text, Message.SendBySystem.ALEGRIA);
-
- Mail attachments = msg.createAttachments();
- attachments.addItem("Birthday", Config.ALT_BIRTHDAY_GIFT, 1, null, null);
-
- MailManager.getInstance().sendMessage(msg);
- _count++;
- }
- }
- }
- catch (SQLException e)
- {
- _log.log(Level.WARNING, "Error checking birthdays. ", e);
- }
-
- // If character birthday is 29-Feb and year isn't leap, send gift on 28-feb
- GregorianCalendar calendar = new GregorianCalendar();
- if ((month == Calendar.FEBRUARY) && (day == 28) && !calendar.isLeapYear(_today.get(Calendar.YEAR)))
- {
- checkBirthday(year, Calendar.FEBRUARY, 29);
- }
- }
-
- /**
- * @param num the number to format.
- * @return the formatted number starting with a 0 if it is lower or equal than 10.
- */
- private String getNum(int num)
- {
- return (num <= 9) ? "0" + num : String.valueOf(num);
- }
-
- @Override
- public void initializate()
- {
- super.initializate();
- TaskManager.addUniqueTask(NAME, TaskTypes.TYPE_GLOBAL_TASK, "1", "06:30:00", "");
- }
- }
|