Search in sources :

Example 1 with BasicSellingItem

use of com.almuradev.almura.feature.store.basic.listing.BasicSellingItem in project Almura by AlmuraDev.

the class ServerStoreManager method handleListSellingItems.

public void handleListSellingItems(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 selling 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<StoreSellingItemRecord, 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 StoreSellingItemRecord itemRecord = StoreQueries.createInsertSellingItem(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 selling 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) {
                    StoreSellingItemDataRecord dataRecord = null;
                    try {
                        dataRecord = StoreQueries.createInsertSellingItemData(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 selling item record '{}' for store '{}' but it failed. " + "Discarding changes...", player.getName(), itemRecord.getRecNo(), id);
                        StoreQueries.createDeleteSellingItem(itemRecord.getRecNo()).build(context).execute();
                    }
                }
                inserted.put(itemRecord, stack);
            }
            this.scheduler.createTaskBuilder().execute(() -> {
                for (final Map.Entry<StoreSellingItemRecord, VanillaStack> entry : inserted.entrySet()) {
                    final StoreSellingItemRecord record = entry.getKey();
                    final VanillaStack stack = entry.getValue();
                    final BasicSellingItem item = new BasicSellingItem(record.getRecNo(), record.getCreated().toInstant(), stack.getItem(), stack.getQuantity(), stack.getMetadata(), record.getPrice(), record.getIndex(), stack.getCompound());
                    store.getSellingItems().add(item);
                }
                this.network.sendToAll(new ClientboundListItemsResponsePacket(store.getId(), StoreItemSegmentType.SELLING, store.getSellingItems()));
            }).submit(this.container);
        } catch (final SQLException e) {
            e.printStackTrace();
        }
    }).submit(this.container);
}
Also used : SQLException(java.sql.SQLException) 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) StoreSellingItemRecord(com.almuradev.generated.store.tables.records.StoreSellingItemRecord) BasicSellingItem(com.almuradev.almura.feature.store.basic.listing.BasicSellingItem) IOException(java.io.IOException) StoreSellingItemDataRecord(com.almuradev.generated.store.tables.records.StoreSellingItemDataRecord) VanillaStack(com.almuradev.almura.shared.item.VanillaStack) BigDecimal(java.math.BigDecimal) Map(java.util.Map) HashMap(java.util.HashMap)

Example 2 with BasicSellingItem

use of com.almuradev.almura.feature.store.basic.listing.BasicSellingItem in project Almura by AlmuraDev.

the class ServerStoreManager method parseSellingItemsFrom.

private List<SellingItem> parseSellingItemsFrom(final Result<Record> result) {
    final List<SellingItem> items = new ArrayList<>();
    for (final Record record : result) {
        final Integer recNo = record.getValue(StoreSellingItem.STORE_SELLING_ITEM.REC_NO);
        final String domain = record.getValue(StoreSellingItem.STORE_SELLING_ITEM.DOMAIN);
        final String path = record.getValue(StoreSellingItem.STORE_SELLING_ITEM.PATH);
        final ResourceLocation location = new ResourceLocation(domain, path);
        final Item item = ForgeRegistries.ITEMS.getValue(location);
        if (item == null) {
            this.logger.error("Unknown selling item for domain '{}' and path '{}' found at record number '{}'. Skipping... (Did you remove a " + "mod?)", domain, path, recNo);
            continue;
        }
        final Timestamp created = record.getValue(StoreSellingItem.STORE_SELLING_ITEM.CREATED);
        final Integer quantity = record.getValue(StoreSellingItem.STORE_SELLING_ITEM.QUANTITY);
        final Integer metadata = record.getValue(StoreSellingItem.STORE_SELLING_ITEM.METADATA);
        final BigDecimal price = record.getValue(StoreSellingItem.STORE_SELLING_ITEM.PRICE);
        final Integer index = record.getValue(StoreSellingItem.STORE_SELLING_ITEM.INDEX);
        final byte[] compoundData = record.getValue(StoreSellingItemData.STORE_SELLING_ITEM_DATA.DATA);
        NBTTagCompound compound = null;
        if (compoundData != null) {
            try {
                compound = SerializationUtil.compoundFromBytes(compoundData);
            } catch (final IOException e) {
                this.logger.error("Malformed selling item data found at record number '{}'. Skipping...", recNo);
                continue;
            }
        }
        final BasicSellingItem basicSellingItem = new BasicSellingItem(recNo, created.toInstant(), item, quantity, metadata, price, index, compound);
        items.add(basicSellingItem);
    }
    return items;
}
Also used : ArrayList(java.util.ArrayList) NBTTagCompound(net.minecraft.nbt.NBTTagCompound) BasicSellingItem(com.almuradev.almura.feature.store.basic.listing.BasicSellingItem) IOException(java.io.IOException) BasicSellingItem(com.almuradev.almura.feature.store.basic.listing.BasicSellingItem) SellingItem(com.almuradev.almura.feature.store.listing.SellingItem) StoreSellingItem(com.almuradev.generated.store.tables.StoreSellingItem) Timestamp(java.sql.Timestamp) BigDecimal(java.math.BigDecimal) Item(net.minecraft.item.Item) BuyingItem(com.almuradev.almura.feature.store.listing.BuyingItem) StoreBuyingItem(com.almuradev.generated.store.tables.StoreBuyingItem) BasicBuyingItem(com.almuradev.almura.feature.store.basic.listing.BasicBuyingItem) BasicSellingItem(com.almuradev.almura.feature.store.basic.listing.BasicSellingItem) SellingItem(com.almuradev.almura.feature.store.listing.SellingItem) StoreItem(com.almuradev.almura.feature.store.listing.StoreItem) StoreSellingItem(com.almuradev.generated.store.tables.StoreSellingItem) ResourceLocation(net.minecraft.util.ResourceLocation) StoreSellingItemDataRecord(com.almuradev.generated.store.tables.records.StoreSellingItemDataRecord) StoreSellingItemRecord(com.almuradev.generated.store.tables.records.StoreSellingItemRecord) StoreBuyingItemRecord(com.almuradev.generated.store.tables.records.StoreBuyingItemRecord) Record(org.jooq.Record) StoreBuyingItemDataRecord(com.almuradev.generated.store.tables.records.StoreBuyingItemDataRecord)

Aggregations

BasicSellingItem (com.almuradev.almura.feature.store.basic.listing.BasicSellingItem)2 StoreSellingItemDataRecord (com.almuradev.generated.store.tables.records.StoreSellingItemDataRecord)2 StoreSellingItemRecord (com.almuradev.generated.store.tables.records.StoreSellingItemRecord)2 IOException (java.io.IOException)2 BigDecimal (java.math.BigDecimal)2 NBTTagCompound (net.minecraft.nbt.NBTTagCompound)2 BasicStore (com.almuradev.almura.feature.store.basic.BasicStore)1 BasicBuyingItem (com.almuradev.almura.feature.store.basic.listing.BasicBuyingItem)1 BuyingItem (com.almuradev.almura.feature.store.listing.BuyingItem)1 SellingItem (com.almuradev.almura.feature.store.listing.SellingItem)1 StoreItem (com.almuradev.almura.feature.store.listing.StoreItem)1 ClientboundListItemsResponsePacket (com.almuradev.almura.feature.store.network.ClientboundListItemsResponsePacket)1 VanillaStack (com.almuradev.almura.shared.item.VanillaStack)1 StoreBuyingItem (com.almuradev.generated.store.tables.StoreBuyingItem)1 StoreSellingItem (com.almuradev.generated.store.tables.StoreSellingItem)1 StoreBuyingItemDataRecord (com.almuradev.generated.store.tables.records.StoreBuyingItemDataRecord)1 StoreBuyingItemRecord (com.almuradev.generated.store.tables.records.StoreBuyingItemRecord)1 SQLException (java.sql.SQLException)1 Timestamp (java.sql.Timestamp)1 ArrayList (java.util.ArrayList)1