use of org.api.mkm.services.ProductServices in project MtgDesktopCompanion by nicho92.
the class MkmOnlineExport method exportStock.
@Override
public void exportStock(List<MagicCardStock> stock, File f) throws IOException {
if (!getString("STOCK_USE").equals("true")) {
MagicDeck d = new MagicDeck();
d.setName(f.getName());
for (MagicCardStock mcs : stock) {
d.getMap().put(mcs.getMagicCard(), mcs.getQte());
}
export(d, f);
} else {
StockService serv = new StockService();
ProductServices prods = new ProductServices();
EnumMap<PRODUCT_ATTS, String> enumAtts = new EnumMap<>(PRODUCT_ATTS.class);
enumAtts.put(PRODUCT_ATTS.idGame, "1");
enumAtts.put(PRODUCT_ATTS.exact, "true");
List<Article> list = new ArrayList<>();
for (MagicCardStock mcs : stock) {
Product p = MagicCardMarketPricer2.getProductFromCard(mcs.getMagicCard(), prods.findProduct(mcs.getMagicCard().getName(), enumAtts));
Article a = new Article();
a.setAltered(mcs.isAltered());
a.setSigned(mcs.isSigned());
a.setCount(mcs.getQte());
a.setFoil(mcs.isFoil());
a.setPrice(mcs.getPrice());
a.setCondition(convert(mcs.getCondition()));
a.setLanguage(convertLang(mcs.getLanguage()));
a.setProduct(p);
a.setIdProduct(p.getIdProduct());
list.add(a);
}
serv.addArticles(list);
}
}
use of org.api.mkm.services.ProductServices in project MtgDesktopCompanion by nicho92.
the class MagicCardMarketPricer2 method getPrice.
public List<MagicPrice> getPrice(MagicEdition me, MagicCard card) throws IOException {
try {
if (me == null)
me = card.getEditions().get(0);
lists = new ArrayList<>();
logger.info(getName() + " looking for " + card + " " + me);
if (me.getRarity() != null)
if (!getBoolean("COMMONCHECK") && me.getRarity().equalsIgnoreCase("Common")) {
MagicPrice mp = new MagicPrice();
mp.setCurrency("EUR");
mp.setValue(0.01);
mp.setSite(getName());
mp.setSeller("Not checked common");
lists.add(mp);
return lists;
}
ProductServices pService = new ProductServices();
EnumMap<PRODUCT_ATTS, String> atts = new EnumMap<>(PRODUCT_ATTS.class);
atts.put(PRODUCT_ATTS.idGame, "1");
atts.put(PRODUCT_ATTS.exact, getString("IS_EXACT"));
if (!getString("LANGUAGE_ID").equals(""))
atts.put(PRODUCT_ATTS.idLanguage, getString("LANGUAGE_ID"));
if (getString("USER_ARTICLE").equals("false")) {
Product p = getProductFromCard(card, pService.findProduct(card.getName(), atts));
if (p != null) {
p = pService.getProductById(p.getIdProduct());
MagicPrice mp = new MagicPrice();
mp.setSeller(String.valueOf(p.getExpansionName()));
mp.setValue(p.getPriceGuide().getLOW());
mp.setQuality("");
mp.setUrl("https://www.magiccardmarket.eu" + p.getWebsite());
mp.setSite(getName());
mp.setFoil(false);
mp.setCurrency("EUR");
mp.setLanguage(String.valueOf(p.getLocalization()));
lists.add(mp);
}
} else {
List<Product> list = pService.findProduct(card.getName(), atts);
Product resultat = getProductFromCard(card, list);
if (resultat == null) {
logger.info(getName() + " found no item");
return lists;
}
ArticleService aServ = new ArticleService();
EnumMap<ARTICLES_ATT, String> aatts = new EnumMap<>(ARTICLES_ATT.class);
aatts.put(ARTICLES_ATT.start, "0");
aatts.put(ARTICLES_ATT.maxResults, getString("MAX"));
if (!getString("LANGUAGE_ID").equals(""))
aatts.put(ARTICLES_ATT.idLanguage, getString("LANGUAGE_ID"));
if (!getString("MIN_CONDITION").equals(""))
aatts.put(ARTICLES_ATT.minCondition, getString("MIN_CONDITION"));
List<Article> articles = aServ.find(resultat, aatts);
logger.debug(getName() + " found " + articles.size() + " items");
for (Article a : articles) {
MagicPrice mp = new MagicPrice();
mp.setSeller(String.valueOf(a.getSeller()));
mp.setCountry(String.valueOf(a.getSeller().getAddress().getCountry()));
mp.setValue(a.getPrice());
mp.setQuality(a.getCondition());
mp.setUrl("https://www.magiccardmarket.eu" + resultat.getWebsite());
mp.setSite("MagicCardMarket");
mp.setFoil(a.isFoil());
mp.setCurrency("EUR");
mp.setLanguage(a.getLanguage().toString());
mp.setShopItem(a);
lists.add(mp);
}
}
} catch (Exception e) {
logger.error("Error retrieving prices for " + card, e);
logger.error(e);
}
return lists;
}
Aggregations