# -*- encoding : utf-8 -*- module LC class Batch attr_reader :requests attr_reader :client def initialize(client = LC.client) @client = client @requests ||= [] end def add_request(request) @requests << request end def create_object(object) method = "POST" path = LC::Protocol.class_uri(object.class_name) body = object.safe_hash add_request({ "method" => method, "path" => path, "body" => body }) end def update_object(object) method = "PUT" path = LC::Protocol.class_uri(object.class_name, object.id) body = object.safe_hash add_request({ "method" => method, "path" => path, "body" => body }) end def delete_object(object) add_request({ "method" => "DELETE", "path" => LC::Protocol.class_uri(object.class_name, object.id) }) end def run! uri = LC::Protocol.batch_request_uri body = {:requests => @requests}.to_json @client.request(uri, :post, body) end end end