pip_services_activities

Last updated:

0 purchases

pip_services_activities Image
pip_services_activities Images
Add to Cart

Description:

pip services activities

#
Party Activities Microservice #
This is a party activity logging microservice from Pip.Services library.
It logs important party activities like signups, signins,
creation, changes or deletion of data items and so on.
The microservice currently supports the following deployment options:

Deployment platforms: Standalone Process, Seneca
External APIs: HTTP/REST, Seneca
Persistence: In-Memory, Flat Files, MongoDB

This microservice has no dependencies on other microservices.
Quick Links:

Download Links
Development Guide
Configuration Guide
Deployment Guide
Client SDKs

Node.js SDK
Dart SDK


Communication Protocols

HTTP Version 1



Contract #
Logical contract of the microservice is presented below. For physical implementation (HTTP/REST),
please, refer to documentation of the specific protocol.
class PartyActivityV1 implements IStringIdentifiable {
/* Identification */
String id;
String org_id;

/* Identification fields */
DateTime time;
String type;
ReferenceV1 party;

/* References objects (notes, goals, etc.) */
ReferenceV1 ref_item;
List<ReferenceV1> ref_parents;
ReferenceV1 ref_party;

/* Other details like % of progress or new status */
StringValueMap details;
}

class ReferenceV1 implements IStringIdentifiable {
String id;
String type;
String name;
}

abstract class IActivitiesV1 {
Future<DataPage<PartyActivityV1>> getPartyActivities(
String correlationId, FilterParams filter, PagingParams paging);

Future<PartyActivityV1> logPartyActivity(String correlationId, PartyActivityV1 activity);

Future<List<PartyActivityV1>> batchPartyActivities(String correlationId, List<PartyActivityV1> activities);

Future deletePartyActivities(String correlationId, dynamic filter);
}
copied to clipboard
Download #
Right now the only way to get the microservice is to check it out directly from github repository
git clone [email protected]:pip-services-users/pip-services-activities-dart.git
copied to clipboard
Pip.Service team is working to implement packaging and make stable releases available for your
as zip downloadable archieves.
Run #
Add config.yaml file to the root of the microservice folder and set configuration parameters.
Example of microservice configuration
---
# Container descriptor
- descriptor: "pip-services:context-info:default:default:1.0"
name: "pip-services-activities"
description: "Activities microservice for pip-services"

# Console logger
- descriptor: "pip-services:logger:console:default:1.0"
level: "trace"

# Performance counters that posts values to log
- descriptor: "pip-services:counters:log:default:1.0"
level: "trace"

{{#MEMORY_ENABLED}}
# In-memory persistence. Use only for testing!
- descriptor: "pip-services-activities:persistence:memory:default:1.0"
{{/MEMORY_ENABLED}}

{{#FILE_ENABLED}}
# File persistence. Use it for testing of for simple standalone deployments
- descriptor: "pip-services-activities:persistence:file:default:1.0"
path: {{FILE_PATH}}{{^FILE_PATH}}"./data/activities.json"{{/FILE_PATH}}
{{/FILE_ENABLED}}

{{#MONGO_ENABLED}}
# MongoDB Persistence
- descriptor: "pip-services-activities:persistence:mongodb:default:1.0"
collection: {{MONGO_COLLECTION}}{{^MONGO_COLLECTION}}activities{{/MONGO_COLLECTION}}
connection:
uri: {{{MONGO_SERVICE_URI}}}
host: {{{MONGO_SERVICE_HOST}}}{{^MONGO_SERVICE_HOST}}localhost{{/MONGO_SERVICE_HOST}}
port: {{MONGO_SERVICE_PORT}}{{^MONGO_SERVICE_PORT}}27017{{/MONGO_SERVICE_PORT}}
database: {{MONGO_DB}}{{#^MONGO_DB}}app{{/^MONGO_DB}}
credential:
username: {{MONGO_USER}}
password: {{MONGO_PASS}}
{{/MONGO_ENABLED}}

{{^MEMORY_ENABLED}}{{^FILE_ENABLED}}{{^MONGO_ENABLED}}
# Default in-memory persistence
- descriptor: "pip-services-activities:persistence:memory:default:1.0"
{{/MONGO_ENABLED}}{{/FILE_ENABLED}}{{/MEMORY_ENABLED}}

# Default controller
- descriptor: "pip-services-activities:controller:default:default:1.0"

# Common HTTP endpoint
- descriptor: "pip-services:endpoint:http:default:1.0"
connection:
protocol: "http"
host: "0.0.0.0"
port: 8080

# HTTP endpoint version 1.0
- descriptor: "pip-services-activities:service:http:default:1.0"

# Heartbeat service
- descriptor: "pip-services:heartbeat-service:http:default:1.0"

# Status service
- descriptor: "pip-services:status-service:http:default:1.0"
copied to clipboard
For more information on the microservice configuration see Configuration Guide.
Start the microservice using the command:
dart ./bin/run.dart
copied to clipboard
Use #
The easiest way to work with the microservice is to use client SDK.
The complete list of available client SDKs for different languages is listed in the Quick Links
If you use dart, then get references to the required libraries:

Pip.Services3.Commons
Pip.Services3.Rpc

Add pip-services3-commons-dart, pip-services3-rpc-dart and pip_services_activities packages
import 'package:pip_services3_commons/pip_services3_commons.dart';
import 'package:pip_services3_rpc/pip_services3_rpc.dart';

import 'package:pip_services_activities/pip_services_activities.dart';

copied to clipboard
Define client configuration parameters that match the configuration of the microservice's external API
// Client configuration
var httpConfig = ConfigParams.fromTuples(
"connection.protocol", "http",
"connection.host", "localhost",
"connection.port", 8080
);
copied to clipboard
Instantiate the client and open connection to the microservice
// Create the client instance
var client = ActivitiesHttpClientV1(config);

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

// Connect to the microservice
try{
await client.open(null)
}catch() {
// Error handling...
}
// Work with the microservice
// ...
copied to clipboard
Now the client is ready to perform operations
// Create a new activity
final ACTIVITY = PartyActivityV1({
type: 'signup',
party: {
id: '123',
name: 'Test User'
}
});

// Create the activity
try {
var activity = await client.logPartyActivity('123', ACTIVITY);
// Do something with the returned activity...
} catch(err) {
// Error handling...
}
copied to clipboard
// Get the list of activities for 'My Samples' product
var now = new Date();
try {
var page = await client.getPartyActivities(
null,
{
party_id: '123',
from_time: new Date(now.getTime() - 24 * 3600 * 1000),
to_time: now
},
{
total: true,
skip: 0,
take: 10
});
// Do something with page...

} catch(err) { // Error handling}
copied to clipboard
Acknowledgements #
This microservice was created and currently maintained by

Sergey Seroukhov.
Nuzhnykh Egor

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.