use of uk.co.mattburns.pwinty.v2_3.Pwinty in project pwinty-java-sdk by OddPrints.
the class Pwinty method getUnrecognisedItemNames.
/**
* Test if Pwinty have started offering new print sizes currently not hard-coded in the enum
* Photo.Type
*
* @param countryCodes countries to check (just an optimisation).
* @return set of item names we don't handle
*/
protected Set<String> getUnrecognisedItemNames(CountryCode... countryCodes) {
Set<String> unrecognisedItemNames = new TreeSet<String>();
for (QualityLevel quality : QualityLevel.values()) {
for (CountryCode countryCode : countryCodes) {
String catalogueJSON = webResource.path("Catalogue/" + countryCode + "/" + quality.toString()).accept(MediaType.APPLICATION_JSON_TYPE).header("X-Pwinty-MerchantId", merchantId).header("X-Pwinty-REST-API-Key", apiKey).get(String.class);
Catalogue catalogue = createGson().fromJson(catalogueJSON, Catalogue.class);
for (CatalogueItem item : getUnrecognisedItems(catalogue)) {
unrecognisedItemNames.add(item.getName());
}
}
}
return unrecognisedItemNames;
}
use of uk.co.mattburns.pwinty.v2_3.Pwinty in project pwinty-java-sdk by OddPrints.
the class OrderUpdater method updateDestinationCountryCode.
public int updateDestinationCountryCode(int orderIdToUpdate, CountryCode destinationCountryCode, Order.QualityLevel qualityLevel, boolean useTrackedShipping) {
Pwinty pwinty = getPwinty(environment);
System.out.println(pwinty.getOrder(orderIdToUpdate));
Order order = pwinty.getOrder(orderIdToUpdate);
order = order.createCloneWithDestinationCountryCode(destinationCountryCode, qualityLevel, useTrackedShipping);
System.out.println(order);
System.out.println(pwinty.getOrder(order.getId()));
System.out.println("**** NOTE: ORDER NUMBER HAS NOW CHANGED !! ****");
System.out.println("New order number is : " + order.getId());
return order.getId();
}
use of uk.co.mattburns.pwinty.v2_3.Pwinty in project pwinty-java-sdk by OddPrints.
the class OrderUpdater method display.
public void display(int orderId) {
Pwinty pwinty = getPwinty(environment);
Order order = pwinty.getOrder(orderId);
System.out.println(order);
}
use of uk.co.mattburns.pwinty.v2_3.Pwinty in project pwinty-java-sdk by OddPrints.
the class OrderUpdater method addPhotoToOrder.
public void addPhotoToOrder(int orderIdToUpdate, URL newUrl, Photo.Type type, int copies, Photo.Sizing sizing) {
Pwinty pwinty = getPwinty(environment);
System.out.println(pwinty.getOrder(orderIdToUpdate));
Order order = pwinty.getOrder(orderIdToUpdate);
order.addPhoto(newUrl, type, copies, sizing);
}
use of uk.co.mattburns.pwinty.v2_3.Pwinty in project pwinty-java-sdk by OddPrints.
the class OrderUpdater method updateImageUrl.
public void updateImageUrl(int orderIdToUpdate, int photoIdToUpdate, URL newUrl) {
Pwinty pwinty = getPwinty(environment);
System.out.println(pwinty.getOrder(orderIdToUpdate));
Order order = pwinty.getOrder(orderIdToUpdate);
List<Photo> photos = order.getPhotos();
Photo.Type type = null;
Photo.Sizing sizing = null;
int copies = 0;
for (Photo photo : photos) {
if (photo.getId() == photoIdToUpdate) {
type = photo.getType();
sizing = photo.getSizing();
copies = photo.getCopies();
order.deletePhoto(photo);
}
}
order.addPhoto(newUrl, type, copies, sizing);
}
Aggregations