With the version 12 technology platform, STARLIMS offers a new REST API engine. It is really great – until you want to enhance it and add your own endpoints. That’s where it gets … complicated. Well – not so much – if you know where to start. Nothing here is hidden information, it is all written in the technology release documentation; just not easily applied.
If you read the doc, you’ve read something like this:
Routing maps incoming HTTP API requests to their implementation. If you are a Core Product team, you must implement routing in pre-defined Server Script API_Helper.RestApiRouter; if you are a Professional Services or Customer team, you must implement routing in pre-defined Server Script API_Helper_Custom.RestApiRouter (which you need to create, if it doesn’t exist).
STARLIMS Technology Platform Documentation
09-016-00-02 REV AB
That section is accessible using the /building_rest_api.html Url of the platform documentation.
It is really good, and it works, and everything listed is appropriate. I would only add 2 points for your sanity.
1- handle your routes in a different way than what STARLIMS suggest. Their example is very simple, but you’ll want to have something scalable / reusable. I went with a single function and nested hashtables. By default, the custom routing needs a Route method. To “store” the route, I’ll also add a private getRoutes method. In the future, we’ll only add entries in the getRoutes, which will simplify our life.
:PROCEDURE getRoutes;
/*
structure is:
hashTable of version
hashTable of of service
hashTable of entity
;
:DECLARE hApiVersions;
/* all route definition should be in lowercase;
/* store API Verions at 1st htable level;
hApiVersions := LimsNetConnect("", "System.Collections.Hashtable");
hApiVersions["v1"] := LimsNetConnect("", "System.Collections.Hashtable");
hApiVersions["v2"] := LimsNetConnect("", "System.Collections.Hashtable");
/* store each service within the proper version;
hApiVersions["v1"]["examples"] := LimsNetConnect("", "System.Collections.Hashtable");
/* then store each endpoint per entity;
hApiVersions["v1"]["examples"]["simple"] := "API_Examples_v1.Simple";
/* store each service within the proper version;
hApiVersions["v1"]["system"] := LimsNetConnect("", "System.Collections.Hashtable");
hApiVersions["v1"]["system"]["status"] := "API_CustomSystem_v1.status";
/* process-locks endpoints;
hApiVersions["v1"]["process-locks"] := LimsNetConnect("", "System.Collections.Hashtable");
hApiVersions["v1"]["process-locks"]["process"] := "API_ProcessLocks_v1.Process";
/* user-management endpoints;
hApiVersions["v1"]["user-management"] := LimsNetConnect("", "System.Collections.Hashtable");
hApiVersions["v1"]["user-management"]["user-session"] := "API_UserManagement_v1.UserSession";
hApiVersions["v1"]["sqs"] := LimsNetConnect("", "System.Collections.Hashtable");
hApiVersions["v1"]["sqs"]["message-queue"] := "API_SQS_v1.message";
hApiVersions["v1"]["load"] := LimsNetConnect("", "System.Collections.Hashtable");
hApiVersions["v1"]["load"]["encrypt"] := "API_Load_v1.encrypt";
hApiVersions["v1"]["load"]["origrec"] := "API_Load_v1.origrec";
:RETURN hApiVersions;
:ENDPROC;
:PROCEDURE Route;
:PARAMETERS routingInfo;
/* routingInfo
.Version : string - e.g. "v1"
.Service : string - e.g. "folderlogin"
.Entity : string - e.g. "sample";
:DECLARE hRoutesDef, sVersion, sService, sEntity;
hRoutesDef := Me:getRoutes();
/* remove case route;
sVersion := Lower(routingInfo:Version);
sService := Lower(routingInfo:Service);
sEntity := Lower(routingInfo:Entity);
:IF !Empty(hRoutesDef[sVersion]);
:IF !Empty(hRoutesDef[sVersion][sService]);
:RETURN hRoutesDef[sVersion][sService][sEntity];
:ENDIF;
:ENDIF;
:RETURN "";
:ENDPROC;
When you need to add new routes, all you do is add new lines to the getRoutes method, the logic in the Route method is static and shouldn’t change. Then, you create the corresponding categories and scripts to actually run your logic, and you’re set.
Of course, you can build your own mechanism – it is by no mean the best one; but I do find it to be easier to manage than STARLIMS’ suggestion.
Now, I know: you might be tempted to write a generic data-driven routing. I was tempted to do it. In the end, it is a balance between convenience and security. If you let it be data-driven, you loose control on what can be routed. Someone may modify the route to, let’s say, get result, to instead return all user information, and you wouldn’t know. If it’s in the code, then you’ll know. So – although it is not as convenient, don’t get your routes handled by the database. It would also add extra load on the database. So – no good reasons other than convenience, really.
2- properly document your APIs. Heck, document your APIs before you implement them! I recommend https://swagger.io/ to generate some .yaml files. Trust me: whoever will be consuming your API will thank you!
All in all, I think the STARLIMS REST API really brings the system to an all new level. Theoretically, one could build a full UI stack using React or Angular and just consume the API to run the system on a new front end.
Or one could expose data endpoints for pipelines to maintain a data mart.
Or anything. At this point, your creativity is the limiting factor. Do you have great ideas for use cases?
Hi,
I never tried it, but in principle, yes. You should be able to implement Angular as the front end and rely solely on APIs for the backend. The drawback of this approach is you’ll miss everything already implemented in the front-end framework by STARLIMS (like their grid, based on Janus grid in Xfd, and on Sencha in HTML5), access & permissions (handled via control / components availability), e-sig, etc.
But I assume, from your question, this is something you can work with!
Can i include angular inside starlims
Pingback: Open up STARLIMS with its REST API! – SOME NORTHEN DEVELOPER