Search in sources :

Example 1 with StoreBuyingItemDataRecord

use of com.almuradev.generated.store.tables.records.StoreBuyingItemDataRecord in project Almura by AlmuraDev.

the class ServerStoreManager method handleListBuyingItems.

public void handleListBuyingItems(final Player player, final String id, final List<ServerboundListItemsRequestPacket.ListCandidate> candidates) {
    checkNotNull(player);
    checkNotNull(id);
    if (!player.hasPermission(Almura.ID + ".store.admin")) {
        this.notificationManager.sendPopupNotification(player, Text.of(TextColors.RED, "Store"), Text.of("You do not have permission " + "to list items!"), 5);
        return;
    }
    final Store store = this.getStore(id).orElse(null);
    if (store == null) {
        this.logger.error("Player '{}' attempted to list buying items for store '{}' but the server has no knowledge of it. Syncing " + "store registry...", player.getName(), id);
        this.syncStoreRegistryTo(player);
        return;
    }
    this.scheduler.createTaskBuilder().async().execute(() -> {
        try (final DSLContext context = this.databaseManager.createContext(true)) {
            final Map<StoreBuyingItemRecord, VanillaStack> inserted = new HashMap<>();
            for (final ServerboundListItemsRequestPacket.ListCandidate candidate : candidates) {
                final VanillaStack stack = candidate.stack;
                final int index = candidate.index;
                final BigDecimal price = candidate.price;
                final StoreBuyingItemRecord itemRecord = StoreQueries.createInsertBuyingItem(store.getId(), Instant.now(), stack.getItem(), stack.getQuantity(), stack.getMetadata(), index, price).build(context).fetchOne();
                if (itemRecord == null) {
                    this.notificationManager.sendWindowMessage(player, Text.of("Store"), Text.of("Critical error encountered, check the server console for more details!"));
                    this.logger.error("Player '{}' submitted a new buying item for store '{}' to the database but it failed. " + "Discarding changes and printing stack...", player.getName(), id);
                    this.printStacksToConsole(Lists.newArrayList(stack));
                    continue;
                }
                final NBTTagCompound compound = stack.getCompound();
                if (compound != null) {
                    StoreBuyingItemDataRecord dataRecord = null;
                    try {
                        dataRecord = StoreQueries.createInsertBuyingItemData(itemRecord.getRecNo(), compound).build(context).fetchOne();
                    } catch (final IOException e) {
                        e.printStackTrace();
                    }
                    if (dataRecord == null) {
                        this.notificationManager.sendWindowMessage(player, Text.of("Store"), Text.of("Critical error encountered, check the server console for more details!"));
                        this.logger.error("Player '{}' submitted data for buying item record '{}' for store '{}' but it failed. " + "Discarding changes...", player.getName(), itemRecord.getRecNo(), id);
                        StoreQueries.createDeleteBuyingItem(itemRecord.getRecNo()).build(context).execute();
                    }
                }
                inserted.put(itemRecord, stack);
            }
            this.scheduler.createTaskBuilder().execute(() -> {
                for (final Map.Entry<StoreBuyingItemRecord, VanillaStack> entry : inserted.entrySet()) {
                    final StoreBuyingItemRecord record = entry.getKey();
                    final VanillaStack stack = entry.getValue();
                    final BasicBuyingItem item = new BasicBuyingItem(record.getRecNo(), record.getCreated().toInstant(), stack.getItem(), stack.getQuantity(), stack.getMetadata(), record.getPrice(), record.getIndex(), stack.getCompound());
                    store.getBuyingItems().add(item);
                }
                this.network.sendToAll(new ClientboundListItemsResponsePacket(store.getId(), StoreItemSegmentType.BUYING, store.getBuyingItems()));
            }).submit(this.container);
        } catch (final SQLException e) {
            e.printStackTrace();
        }
    }).submit(this.container);
}
Also used : SQLException(java.sql.SQLException) BasicBuyingItem(com.almuradev.almura.feature.store.basic.listing.BasicBuyingItem) NBTTagCompound(net.minecraft.nbt.NBTTagCompound) BasicStore(com.almuradev.almura.feature.store.basic.BasicStore) DSLContext(org.jooq.DSLContext) ClientboundListItemsResponsePacket(com.almuradev.almura.feature.store.network.ClientboundListItemsResponsePacket) IOException(java.io.IOException) StoreBuyingItemDataRecord(com.almuradev.generated.store.tables.records.StoreBuyingItemDataRecord) VanillaStack(com.almuradev.almura.shared.item.VanillaStack) BigDecimal(java.math.BigDecimal) StoreBuyingItemRecord(com.almuradev.generated.store.tables.records.StoreBuyingItemRecord) Map(java.util.Map) HashMap(java.util.HashMap)

Aggregations

BasicStore (com.almuradev.almura.feature.store.basic.BasicStore)1 BasicBuyingItem (com.almuradev.almura.feature.store.basic.listing.BasicBuyingItem)1 ClientboundListItemsResponsePacket (com.almuradev.almura.feature.store.network.ClientboundListItemsResponsePacket)1 VanillaStack (com.almuradev.almura.shared.item.VanillaStack)1 StoreBuyingItemDataRecord (com.almuradev.generated.store.tables.records.StoreBuyingItemDataRecord)1 StoreBuyingItemRecord (com.almuradev.generated.store.tables.records.StoreBuyingItemRecord)1 IOException (java.io.IOException)1 BigDecimal (java.math.BigDecimal)1 SQLException (java.sql.SQLException)1 HashMap (java.util.HashMap)1 Map (java.util.Map)1 NBTTagCompound (net.minecraft.nbt.NBTTagCompound)1 DSLContext (org.jooq.DSLContext)1