Skip to content

crismaproject/icmm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

ICMM Core API Preview

What is this about?

This is a CORE API Preview (basic API supporting mainly CRUD) for the CRISMA infrastructure building block the so called ICMM (Integrated Crisis Management Middleware). With this API other components can get infos about worldstates, manipulation UI's and federated models.

You can find the data model (schema) "behind" the api either in this document (or via calling /classe?domain=crisma ;-)) core ccim complete

The software is based on cids which is an Open Source project of cismet. The source code of cids as well of custom extensions of other projects e.g. CRISMA can be found here https://github.com/cismet

Adhering to the CRISMA architecture rules we have implemented a restful API for the ICMM.

The API is enriched by a very cool documentation framework named Swagger (see e.g. http://blog.programmableweb.com/2013/02/19/swagger-the-interactive-api-documentation-framework-that-benefits-both-api-providers-and-consumers/). With this interactive API documentation using swagger you can explore and test the API's resources and methods.

Where can I find the API demo and swagger documentation?

http://crisma.cismet.de/icms/

Where do I start to explore the API?

you might start using classes (http://crisma.cismet.de/icms/#!/classes) to get an overview on what is available and then us the respective entities (http://crisma.cismet.de/icms/#!/entities)

What this is not about

The Swagger Site is not a UI for CRISMA. The API is a core API. There will be a number of helpers to provide a more convenient way to deal with world state data and federated models. At the moment we are not sure if these helpers will be client side components encapsulating the worldstate management logic or whether we will extend this API for this purpose. In a parallel activity we are developing a so called CRISMA reference application which will help us to find out what works best.

The API is divided in different Sub APIs.

What are the most important API parts?

bildschirmfoto 2013-07-03 um 23 15 10 In the classes sub API one can access information about the classes (data models, schemas) of the stored entities.

bildschirmfoto 2013-07-03 um 23 15 36 In the entities sub API one can access get, modify, create and delete entities that are stored in the system

bildschirmfoto 2013-07-03 um 23 16 20 In the actions sub API one can execute actions, retrieve the results and cancel long running tasks.

And the other ones?

Well, since this is a preview the other sub APIs are not (fully) availlable yet. But here comes a quick overview what you can expect in the near future.

  • configattributes: store an retrieve user/role based configuration parameters
  • nodes: retrieve information about a custom structure (so called node structure) of the system (this maps to the world state tree)
  • permission: retrieve the user/role based permissions
  • searches: execute custom searches and retrieve the results
  • subscriptions: subscribe to certain properties and get noticed when something changes
  • users: validate a user and retrieve roles

Limitations

There are several limitations of the API due to the early development phase.

  • Authorization feature is disabled for the demo.
  • The role parameter will be ignored.
  • Collection ressources will be delivered completely (no limit and offset parameter functionality).
  • No proper error codes.
  • Only one domain (crisma) is queryable.
  • The version parameter will be ignored.
  • The expand parameter will be ignored (All objects will be delivered as a whole).
  • The level parameter will be ignored.
  • The profile parameter will be ignored.
  • The fields parameter will only work in the top level of the object.
  • No automatic key generation. You'll have to submit a proper (primary) key when you create an object.
  • No partial updates

Experiments

Feel free to try out the API Demo. You can either use the provided Swagger Page, your browser or your favourite commandline tool (curl, resty, ...) Please delete only the objects that you have created and keep in mind that we will reset the demo data once in a while.

Examples

Get all classes of the crisma API demo simulation case:

Browser:

bildschirmfoto 2013-07-03 um 23 46 07

Swagger:

  1. Go to the Swagger API Documentation Page
  2. The API Description URL should point to: http://flexo.cismet.de:8890/resources
  3. Open the classes sub API section
  4. Open the GET /classes ressource documentation
  5. Hit the [Try it out!] Button

bildschirmfoto 2013-07-03 um 23 47 22

Get the description of the crisma.categories

With curl:

curl http://localhost:8890/classes/crisma.categories

Result:

{
  "$self": "/crisma.categories",
  "configuration": {
    "name": "Categories",
    "policy": "STANDARD",
    "attributePolicy": "STANDARD",
    "pK_Field": "id"
  },
  "attributes": {
    "id": {
      "$self": "/crisma.categories/id",
      "name": "id",
      "position": 0,
      "javaclassname": "java.lang.Integer"
    },
    "key": {
      "$self": "/crisma.categories/key",
      "visible": true,
      "name": "key",
      "position": 1,
      "javaclassname": "java.lang.String"
    },
    "classification": {
      "$self": "/crisma.categories/classification",
      "visible": true,
      "optional": true,
      "name": "classification",
      "position": 2,
      "foreignKey": true,
      "referenceType": "/crisma.classifications"
    }
  }
}

Get the description of a certain attribute

With Swagger: bildschirmfoto 2013-07-04 um 13 23 56

Result:

{
  "$self": "/crisma.categories/key",
  "visible": true,
  "name": "key",
  "position": 1,
  "javaclassname": "java.lang.String"
}

Get all categories

With curl:

curl http://localhost:8890/crisma.categories

Get a certain category

With curl again:

curl http://localhost:8890/crisma.categories/1

Result:

{
  "$self": "/crisma.categories/1",
  "id": 1,
  "key": "critical_infrastructure",
  "classification": {
    "$self": "/crisma.classifications/1",
    "id": 1,
    "key": "worldstate_detail_component"
  }
}

Update a category

With Swagger: bildschirmfoto 2013-07-04 um 13 30 06

Result:

{
  "$self": "/crisma.categories/1",
  "id": 1,
  "key": "critical_infrastructureXXX",
  "classification": {
    "$self": "/crisma.classifications/1",
    "id": 1,
    "key": "worldstate_detail_component"
  }
}

Add a classification

With Swagger: bildschirmfoto 2013-07-04 um 13 34 19

Result:

{
  "$self": "/crisma.classifications/6",
  "id": 6,
  "key": "DIY classification"
}

Delete a classification

With curl again:

curl -X DELETE http://localhost:8890/crisma.classifications/6

Result:

none :-)

bildschirmfoto 2013-07-04 um 13 40 49

Get all categories with a certain classification key and omit all properties with null values in the result

With curl again:

curl http://localhost:8890/crisma.categories?filter=classification.key:worldstate.*&omitNullValues=true

Execute an action with parameters

With Swagger: bildschirmfoto 2013-07-04 um 13 48 59

Result:

{
  "key": "1372938604952",
  "actionKey": "banner",
  "description": null,
  "parameters": {
    "$message": "What a great tool"
  },
  "status": "STARTING"
}

List the tasks of an action

With curl:

curl  http://localhost:8890/actions/crisma.calculate/tasks

Result:

{
  "$self": "http://localhost:8890/actions/crisma.calculate/tasks",
  "$offset": 0,
  "$limit": 100,
  "$first": "http://localhost:8890/actions/crisma.calculate/tasks",
  "$previous": null,
  "$next": "not available",
  "$last": "not available",
  "$collection": [
    {
      "key": "1372364267827",
      "actionKey": "calculate",
      "description": null,
      "parameters": {
        "$": "49/23*7-5"
      },
      "status": "FINISHED"
    }
  ]
}

List the results of a task

With curl again:

curl  http://localhost:8890/actions/crisma.calculate/tasks/1372364267827/results

Result:

{
  "$self": "http://localhost:8890/actions/crisma.calculate/tasks/1372364267827/results",
  "$offset": 0,
  "$limit": 100,
  "$first": "http://localhost:8890/actions/crisma.calculate/tasks/1372364267827/results",
  "$previous": null,
  "$next": "not available",
  "$last": "not available",
  "$collection": [
    {
      "key": "stdout",
      "name": "Result: stdout",
      "description": null,
      "contentType": "text/plain",
      "additionalInfo": {}
    }
  ]
}

Get a certain result of a task

With Swagger: bildschirmfoto 2013-07-04 um 13 56 52

Result:

9.91304347826087

Play with it and find out more :-). Have fun. :-)

About

The CRISMA core component ICMM meta repo

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published