mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-05 01:59:41 +01:00
a84c68d49d
- Added support for Deadbolt - By default, left clicking your own sign doesn't do anything - Restricted signs now check if you've got permission ChestShop.group.groupName - Added support for stacking unstackable things - Updated Register - Changed how plugins are loaded.
57 lines
2.1 KiB
Java
57 lines
2.1 KiB
Java
package com.Acrobot.ChestShop.Logging;
|
|
|
|
import com.Acrobot.ChestShop.Config.Config;
|
|
import com.Acrobot.ChestShop.Config.Property;
|
|
import com.Acrobot.ChestShop.DB.Queue;
|
|
import com.Acrobot.ChestShop.DB.Transaction;
|
|
import com.Acrobot.ChestShop.Shop.Shop;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
import java.text.DateFormat;
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.Date;
|
|
import java.util.logging.Level;
|
|
import java.util.logging.Logger;
|
|
|
|
/**
|
|
* @author Acrobot
|
|
*/
|
|
public class Logging {
|
|
private static final DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
|
|
private static final Logger logger = Logger.getLogger("ChestShop");
|
|
|
|
private static String getDateAndTime() {
|
|
Date date = new Date();
|
|
return dateFormat.format(date);
|
|
}
|
|
|
|
public static void log(String string) {
|
|
if (Config.getBoolean(Property.LOG_TO_CONSOLE)) logger.log(Level.INFO, "[ChestShop] " + string);
|
|
if (Config.getBoolean(Property.LOG_TO_FILE)) FileWriterQueue.addToQueue(getDateAndTime() + ' ' + string);
|
|
}
|
|
|
|
public static void logTransaction(boolean isBuying, Shop shop, Player player) {
|
|
log(player.getName() + (isBuying ? " bought " : " sold ") + shop.stockAmount + ' ' + shop.stock.getType() + " for " + (isBuying ? shop.buyPrice + " from " : shop.sellPrice + " to ") + shop.owner);
|
|
if (Config.getBoolean(Property.LOG_TO_DATABASE) || Config.getBoolean(Property.GENERATE_STATISTICS_PAGE)) logToDatabase(isBuying, shop, player);
|
|
}
|
|
|
|
private static void logToDatabase(boolean isBuying, Shop shop, Player player) {
|
|
Transaction transaction = new Transaction();
|
|
|
|
transaction.setAmount(shop.stockAmount);
|
|
transaction.setBuy(isBuying);
|
|
|
|
ItemStack stock = shop.stock;
|
|
|
|
transaction.setItemDurability(stock.getDurability());
|
|
transaction.setItemID(stock.getTypeId());
|
|
transaction.setPrice((isBuying ? shop.buyPrice : shop.sellPrice));
|
|
transaction.setSec(System.currentTimeMillis() / 1000);
|
|
transaction.setShopOwner(shop.owner);
|
|
transaction.setShopUser(player.getName());
|
|
|
|
Queue.addToQueue(transaction);
|
|
}
|
|
}
|