pip_services_attachments 1.0.0 copy "pip_services_attachments: ^1.0.0" to clipboard
pip_services_attachments: ^1.0.0 copied to clipboard

Blob Attachments microservice for Pip.Services in Dart. It records all documents that attached to a particilar blob.

example/README.md

Examples for Attachments Microservice #

This is a blob attachments microservice from Pip.Services library. It records all documents that attached to a particilar blob. When last document is disattached, the blob gets removed.

Define configuration parameters that match the configuration of the microservice's external API

// Service/Client configuration
var httpConfig = ConfigParams.fromTuples(
	"connection.protocol", "http",
	"connection.host", "localhost",
	"connection.port", 8080
);

Instantiate the service

persistence = AttachmentsMemoryPersistence();
persistence.configure(ConfigParams());

controller = AttachmentsController();
controller.configure(ConfigParams());

service = AttachmentsHttpServiceV1();
service.configure(httpConfig);

var references = References.fromTuples([
    Descriptor('pip-services-attachments', 'persistence', 'memory',
        'default', '1.0'),
    persistence,
    Descriptor('pip-services-attachments', 'controller', 'default',
        'default', '1.0'),
    controller,
    Descriptor(
        'pip-services-attachments', 'service', 'http', 'default', '1.0'),
    service
]);

controller.setReferences(references);
service.setReferences(references);

await persistence.open(null);
await service.open(null);

Instantiate the client and open connection to the microservice

// Create the client instance
var client = AttachmentsHttpClientV1(config);

// Configure the client
client.configure(httpConfig);

// Connect to the microservice
try{
  await client.open(null)
}catch() {
  // Error handling...
}       
// Work with the microservice
// ...

Now the client is ready to perform operations

    // Create the attachment
    try {
      var attachments = await client.addAttachments('123', ReferenceV1(
              id: '000000000000000000000011', type: 'goal', name: 'Goal 1'),
              ['1', '2']);
      // Do something with the returned attachments...
    } catch(err) {
      // Error handling...     
    }
// Authenticated
try {
var attachment =
          await controller.getAttachmentById('123', '1');
    // Do something with attachment...

    } catch(err) { // Error handling}

In the help for each class there is a general example of its use. Also one of the quality sources are the source code for the tests.