All Projects → gebirgslok → BricklinkSharp

gebirgslok / BricklinkSharp

Licence: MIT license
Easy-to-use C# client for the bricklink (LEGO) marketplace API.

Programming Languages

C#
18002 projects
powershell
5483 projects

Projects that are alternatives of or similar to BricklinkSharp

drivecommand
A communication library which connects a robot (EV3, NXT, etc.) and a device (Android, PC, etc.)
Stars: ✭ 13 (-27.78%)
Mutual labels:  lego
ocaml-mindstorm
Library to drive Lego mindstorm NXT bricks from OCaml. Communication with the NXT brick is done through bluetooth.
Stars: ✭ 15 (-16.67%)
Mutual labels:  lego
NanoJ-Fluidics
Manual, source-code and binaries for the NanoJ-Fluidics project
Stars: ✭ 47 (+161.11%)
Mutual labels:  lego
powered-up
.NET implementation of the LEGO PoweredUp Protocol
Stars: ✭ 65 (+261.11%)
Mutual labels:  lego
OpenLRR
An open source re-implementation of LEGO Rock Raiders 🪨⛏
Stars: ✭ 35 (+94.44%)
Mutual labels:  lego
l2cu
L²CU: LDraw Linux Command line Utility
Stars: ✭ 14 (-22.22%)
Mutual labels:  lego
lego-face-VAE
Variational autoencoder for Lego minifig faces
Stars: ✭ 15 (-16.67%)
Mutual labels:  lego
Leocad
A CAD application for creating virtual LEGO models
Stars: ✭ 1,782 (+9800%)
Mutual labels:  lego
epaper-clock-and-more
e-paper clock + weather + AQI + traffic delays - using Waveshare 2.7inch & 4.2inch eink displays running on Raspberry Pi
Stars: ✭ 34 (+88.89%)
Mutual labels:  lego
boats-animator
Stop motion animation program created using Electron
Stars: ✭ 61 (+238.89%)
Mutual labels:  lego
ldview
Real-time 3D viewer for displaying LDraw models
Stars: ✭ 65 (+261.11%)
Mutual labels:  lego
LegoBrickClassification
Repository to identify Lego bricks automatically only using images
Stars: ✭ 57 (+216.67%)
Mutual labels:  lego
Lego-Mindstorms
Hints, tips, and tricks for the LEGO Mindstorms products (RCX, NXT, EV3, Robot Inventor).
Stars: ✭ 49 (+172.22%)
Mutual labels:  lego
assemblme
Iterative object assembly animations made simple
Stars: ✭ 19 (+5.56%)
Mutual labels:  lego
pybricksdev
pybricksdev: Python Package with Pybricks developer tools
Stars: ✭ 24 (+33.33%)
Mutual labels:  lego
lego-mindstorms-51515-jetson-nano
Combines the LEGO Mindstorms 51515 with the NVIDIA Jetson Nano
Stars: ✭ 31 (+72.22%)
Mutual labels:  lego
lego-art-remix
Powerful computer vision assisted Lego mosaic creator · Over 500,000 images created (so far!)
Stars: ✭ 148 (+722.22%)
Mutual labels:  lego
partdesigner
Create custom LEGO® Technic compatible construction parts for 3D printing
Stars: ✭ 104 (+477.78%)
Mutual labels:  lego
Tiler
Tiler is a tool to create an image using all kinds of other smaller images (tiles). It is different from other mosaic tools since it can adapt to tiles with multiple shapes and sizes (i.e. not limited to squares).
Stars: ✭ 4,681 (+25905.56%)
Mutual labels:  lego
ev3dev-lang-cpp
C++ language bindings for http://ev3dev.org
Stars: ✭ 58 (+222.22%)
Mutual labels:  lego

BricklinkSharp

NuGet Build Status

Leave a star

If this repo helps you out then why not give it a star. I'll appreciate.

Introduction

BricklinkSharp is a strongly-typed, easy-to-use C# client for the bricklink marketplace that gets you started with just a few lines of code. It features OAuth1 authentication, error handling and parsing of JSON data into typed instances. It supports all .NET platforms compatible with .NET standard 2.0.

Related projects

Changelog

ℹ️ At the moment the project is assumed to be complete, nevertheless it will continue to be actively maintained to fix bugs and respond to API changes. If you encounter bugs or have suggestions for additional features then you can simply open an issue or submit a pull request.

1.5.1

  • Added shipping.address.phone_number to GetOrderAsync response

1.5.0

  • Added optional parameter BricklinkCredentials? credentials = null to every method on IBricklinkClient that requires authentication. This will take precedence over the global credentials (BricklinkClientConfiguration.Instance) and is useful for server scenarios (e.g. ASP.NET Core) where you need to do a request in the name of the logged in user
  • Fixed Exception updating inventory items, thanks to stephanstapel
  • Improved ItemTypeStringConverter to fail on unknown strings (instead of returning ItemType.Minifig as default)

1.4.1

1.4.0

1.3.1

⚠️ This version contains a typo fix which might have breaking behavior and requires a renaming of an Enum.

  • Fixed a typo in RatingTargetRole (previous RatingTargeRole without "t") which has breaking behavior when using it.
    • Fixed also property name RatingTargetRole in class Feedback.
  • Fixed Error with EnumExtensions along with many performance improvements, thanks to xramcire
  • Refactored all .cs files to use File Scoped Namespaces.

1.3.0

  • Added CancellationToken support for all async methods.
  • Fixed GetElementIdAsync throws an exception if no element ID is available. The method now instead returns an empty array.

1.2.1

  • Fixed a typo in JsonPropertyName of the UpdateInventory.StockRoomId property that made it impossible for users to update the stock room ID, thanks to JelleCeulemans (bricklink store).

1.2.0

  • Upgraded Demos and Tests to .NET6
  • Added .NET6 Build Target
  • Fixed all obsolete warnings for .NET6
  • Minor performance improvements
  • Removed unused code

1.1.1

1.1.0

  • Supports API key for Exchange rate service when using the Get Part Out Value From Page method with the exchange rate service (see demo project and documentation on this readme below for usage)

1.0.0

  • Covers all public API endpoints
  • New Assembly versioning:
    • Assembly Version: 1.0.0.0
    • Assembly File Version: 1.0.0.<build ID>
    • Assembly Informational File Version: 1.0.0-<build time>+<build date>
  • Get Part Out Value From Page
    • Demo project
    • Docs
    • Exchange rate service
  • New method on IBricklinkClient: GetBookImage. Builds and returns the image URL for a specific book number
  • New method on IBricklinkClient: GetGearImage. Builds and returns the image URL for a specific gear number
  • New method on IBricklinkClient: GetCatalogImage. Builds and returns the image URL for a specific catalog number
  • New method on IBricklinkClient: GetInstructionImage. Builds and returns the image URL for a specific instruction number
  • New method on IBricklinkClient: GetOriginalBoxImage. Builds and returns the image URL for a specific original box number

0.7.0

  • New method on IBricklinkClient: GetMinifigImage. Builds and returns the image URL for a specific minifigure number.
  • New method on IBricklinkClient: GetSetImage. Builds and returns the image URL for a specific set number.

0.6.1

  • Fixed: OrderMessage.Subject can be Null. Thanks to aalex675 for his contribution.

0.6.0

  • New method on IBricklinkClient: GetPartImageForColor. Builds and returns the image URL for a specific part number / color ID.
  • New helper method on IBricklinkClient: EnsureImageUrlScheme. Adds (ensures) an URI scheme on image URLs returned by the Bricklink API.

0.5.0

  • Coupons
  • Nullable annotations
  • Renamed UpdatedInventory container to UpdateInventory (breaking)

0.4.0

  • Order
  • IBricklinkClient implements IDisposable and manages one instance of HttpClient

0.3.0

  • Feedback
  • Member / Get member rating
  • Push Notification
  • Setting / Shipping methods
  • Renamed IBricklinkClient.GetItemNumber to IBricklinkClient.GetItemNumberAsync (breaking)
  • Renamed IBricklinkClient.GetElementId to IBricklinkClient.GetElementIdAsync (breaking)

0.2.0

  • User Inventory
  • Item Mapping

0.1.0

  • OAuth1 handling
  • Catalog Item
  • Color
  • Category

Get started

Demo project

Check out the demo project for full-featured examples.

Prerequisites

You need to be registered on bricklink as a seller. Then, use this link to add an access token. Add your client IP address (if applicable) or 0.0.0.0 for both IP address and mask to be able to make API requests from any IP.

Install NuGet package

Package Manager Console

Install-Package BricklinkSharp

Command Line

nuget install BricklinkSharp

Setup credentials

BricklinkClientConfiguration.Instance.TokenValue = "<Your Token>";
BricklinkClientConfiguration.Instance.TokenSecret = "<Your Token Secret>";
BricklinkClientConfiguration.Instance.ConsumerKey = "<Your Consumer Key>";
BricklinkClientConfiguration.Instance.ConsumerSecret = "<Your Consumer Secret>";

IBricklinkClient

var client = BricklinkClientFactory.Build();

Usage recommendation

It's recommended to create and use one IBricklinkClient client throughout the lifetime of your application.

In applications using an IoC container you may register the IBricklinkClient as a service and inject it into consuming instances (e.g. controllers). See the below examples to register the IBricklinkClient as single instance (Singleton).

Autofac example

containerBuilder.Register(c => BricklinkClientFactory.Build())
	.As<IBricklinkClient>()
	.SingleInstance();

Microsoft.Extensions.DependencyInjection example

services.AddSingleton(typeof(IBricklinkClient), provider =>
{
    return BricklinkClientFactory.Build();
});

Item Catalog

Get item

var catalogItem = await client.GetItemAsync(ItemType.Part, "6089");

Get item image

var catalogImage = await client.GetItemImageAsync(ItemType.OriginalBox, "1-12", 0);

Get part image for color ID

var colorId = 34; //Lime.
var uri = client.GetPartImageForColor("43898pb006", 34);

Get minifigure image

var uri = client.GetMinifigImage("sw1093");

Get set image

var uri = client.GetSetImage("6090-1");

Get book image

var uri = client.GetBookImage("5002772");

Get gear image

var uri = client.GetGearImage("BioGMC041");

Get catalog image

var uri = client.GetCatalogImage("c58dk2");

Get instruction image

var uri = client.GetInstructionImage("1518-1");

Get original box image

var uri = client.GetOriginalBoxImage("2964-1");

Ensure image url scheme

var uri = client.EnsureImageUrlScheme("//img.bricklink.com/ItemImage/PN/34/43898pb006.png", "https");
Console.WriteLine(uri.ToString());
//Prints: https://img.bricklink.com/ItemImage/PN/34/43898pb006.png

Get supersets

var supersets = await client.GetSupersetsAsync(ItemType.Minifig, "aqu004", 0);

Get subsets

var subsets = await client.GetSubsetsAsync(ItemType.Set, "1095-1", breakMinifigs: false);

Get price guide

var priceGuide = await client.GetPriceGuideAsync(ItemType.Part, "3003", colorId: 1, priceGuideType: PriceGuideType.Sold, condition: Condition.Used);

Get known colors

var knownColors = await client.GetKnownColorsAsync(ItemType.Part, "3006");

Color

Get color list

var colors = await client.GetColorListAsync();

Get color

var color = await client.GetColorAsync(15);

Category

Get category list

var categories = await client.GetCategoryListAsync();

Get category

var category = await client.GetCategoryAsync(1);

User Inventory

Get inventory list

//Include only parts and minifigs.
var includedTypes = new List<ItemType> { ItemType.Part, ItemType.Minifig };
//Exclude all inventories which are unavailable.
var excludedStatusFlags = new List<InventoryStatusType> { Unavailable };
var inventories = await client.GetInventoryListAsync(includedTypes, excludedStatusFlags: excludedStatusFlags);

Create inventory

var newInventory = new NewInventory
{
	ColorId = 1,
	Condition = Condition.Used,
	Item = new ItemBase
	{
		Number = "3003",
		Type = ItemType.Part
	},
	Quantity = 5,
	UnitPrice = 0.01M,
	Description = "Good used condition"
};
var inventory = await client.CreateInventoryAsync(newInventory);

Create inventories

var newInventories = new NewInventory[] { //fill with inventories... };
//Note that there will be no response data.
await client.CreateInventoriesAsync(newInventories);

Update inventory

var inventoryList = await client.GetInventoryListAsync();
var id = inventoryList.First().InventoryId;
var updateInventory = new UpdateInventory { ChangedQuantity = 21, Remarks = "Remarks added." };
var inventory = await client.UpdateInventoryAsync(id, updateInventory);

Delete inventory

var inventoryList = await client.GetInventoryListAsync();
var id = inventoryList.First().InventoryId;
await client.DeleteInventoryAsync(id);

Item Mapping

Get ElementID

The method returns an array of ItemMapping objects. If a color ID is specified the array will contain just one element. Otherwise the array will contain mappings for every available color.

var itemMappings = await client.GetElementIdAsync("3003", 1);

Get item number

var itemMapping = await client.GetItemNumberAsync("300301");

Push Notification

Get notifications

var notifications = await client.GetNotificationsAsync();

Setting

Get shipping method list

var shippingMethods = await client.GetShippingMethodListAsync();

Get shipping method

var shippingMethod = await client.GetShippingMethodAsync(123);

Member

Get member rating

var rating = await client.GetMemberRatingAsync("bluser");

Feedback

Get feedback list

var feedbackInList = await client.GetFeedbackListAsync(FeedbackDirection.In);
var feedbackOutList = await client.GetFeedbackListAsync(FeedbackDirection.Out);
var feedbackListAll = await client.GetFeedbackListAsync();

Get feedback

var feedbackListAll = await client.GetFeedbackListAsync()
var id = feedbackListAll.First().FeedbackId;
var feedback = await client.GetFeedbackAsync(id);

Post feedback

var orderId = 1234567; //Must be a valid order ID.
var feedback = await client.PostFeedbackAsync(orderId, RatingType.Praise, "Awesome transaction, praise!");

Reply feedback

var feedbackId = 1234567; //Must be a valid feedback ID.
await client.ReplyFeedbackAsync(feedbackId, "Thank you for your kind comment.");

Order

Get Orders

//Exclude all purged orders.
var orders = await client.GetOrdersAsync(OrderDirection.Out, excludedStatusFlags: new List<OrderStatus>
{
	OrderStatus.Purged
});
//Only paid orders that must be shipped.
var orders = await client.GetOrdersAsync(OrderDirection.Out, includedStatusFlags: new List<OrderStatus>
{
	OrderStatus.Paid
});

Get Order

var orderId = 123456789; //Must be a valid order ID.
var order = await client.GetOrderAsync(orderId);

Get Order Items

var orderId = 1234566789; //Must be a valid order ID.
var itemsBatchList = await client.GetOrderItemsAsync(orderId);

foreach (var itemsBatch in itemsBatchList)
{
	foreach (var item in itemsBatch)
	{
		//Process item...
	}
}

Get Order Messages

var orderId = 123456789; //Must be a valid order ID.
var messages = await client.GetOrderMessagesAsync(orderId);

Get Order Feedback

var orderId = 123456789; //Must be a valid order ID.
var feedbacks = await client.GetOrderFeedbackAsync(orderId);

Update Order

var orderId = 123456789; //Must be a valid order ID.

//Note: you must only set properties which should be updated. Leave all others Null.
var updateOrder = new UpdateOrder();
updateOrder.Remarks = "Add remark";
updateOrder.IsFiled = true;
updateOrder.Cost.Insurance = 2.5m;
updateOrder.Cost.Etc1 = 1.0m;
updateOrder.Shipping.TrackingNo = "1234567892";
updateOrder.Shipping.TrackingLink = "www.foo.bar/123456789";
await client.UpdateOrder(orderId, updateOrder);

Update Order Status

var orderId = 123456789; //Must be a valid order ID.
try
{
	//Note that the order must be outgoing in order to be able to set it to 'Shipped'.
	await client.UpdateOrderStatusAsync(orderId, OrderStatus.Shipped);
}
catch (Exception exception)
{
	//Handle invalid operation.
}

Update Payment Status

var orderId = 123456789; //Must be a valid order ID.
try
{
	//Note that the order must be outgoing in order to be able to set it to 'Received'.
	await client.UpdatePaymentStatusAsync(orderId, PaymentStatus.Received);
}
catch (Exception exception)
{
	//Handle invalid operation.
}

Send Drive Thru

var orderId = 123456789; //Must be a valid order ID.
try
{
	await client.SendDriveThruAsync(orderId, true);
}
catch (Exception exception)
{
	//Handle invalid operation.
}

Coupons

Get Coupons

var includesStatusTypes = new List<CouponStatus>
{
	CouponStatus.Open
}
var coupons = await client.GetCouponsAsync(Direction.Out, includedCouponStatusTypes: includesStatusTypes);

Get Coupon

var couponId = 123456789; //Must be a valid coupon ID.
var coupon = await client.GetCouponAsync(couponId);

Create Coupon

var newCoupon = new NewCoupon("bluser", "Special gift for you")
{
	DiscountType = DiscountType.Percentage,
	DiscountRate = 10
};
newCoupon.AppliesTo.ExceptOnSale = true;
newCoupon.AppliesTo.RestrictionType = CouponRestrictionType.ApplyToSpecifiedItemType;
newCoupon.AppliesTo.ItemType = ItemType.Part; //Only applies to parts.

var coupon = await client.CreateCouponAsync(newCoupon);

Update Coupon

var updateCoupon = new UpdateCoupon
{
	DiscountType = DiscountType.Percentage,
	DiscountRate = 15 //Increase discount rate to 15 percent.
};

var couponId = 123456789; //Must be a valid coupon ID.
var coupon = await client.UpdateCouponAsync(couponId, updateCoupon);

Delete Coupon

var couponId = 123456789; //Must be a valid coupon ID.
await client.DeleteCouponAsync(couponId);

Part Out Value

Get Part Out Value From Page

⚠️ This method makes a call to the public Bricklink page and parses the received HTML. Therefore, no credentials are required.

ℹ️ The method can optionally call the Foreign exchange rates API in order to fetch the Part-Out-Value in your preferred currency. Fetched API calls will be cached in-memory up to 24 hours.

var itemNo = "21322"; //Uses Sequence Number = 1 (21322-1).
//var itemNo = "1610-2"; //Set Sequence Number explicitly.

//You must sign up on https://exchangeratesapi.io/ (free plan) in order to get your API key.
//Note that this setup line can be done one-time during bootstrapping of your application.
ExchangeRatesApiDotIoConfiguration.Instance.ApiKey = "1234567890";

var currencyCode = "EUR"; //Uses the exchange rate service to convert USD to Euro.
//var currencyCode = null; //Skips calling the exchange rate service and only returns USD. In this case, no API key is required.
var result = await client.GetPartOutValueFromPageAsync(itemNo, breakSetsInSet: true, breakMinifigs: true, includeBox:true,
                    includeExtraParts: true, includeInstructions:true, itemType: PartOutItemType.Set, currencyCode: currencyCode);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].