The API for Lodestar.
The JSON APIs are documented using using OpenAPI. The OpenAPI UI can be used to view the exposed endpoints and interact directly with them.
Once the application is launched, the OpenAPI UI can be found at the following path:
http(s)://your-hostname[:port]/q/swagger-ui
A link is also available on the home page
The activity
resource exposes endpoints that allow clients to retrieve activity data for LodeStar. Activity in this context means changes users make to any engagements. Changes are propagated to gitlab and the commits are reflected as activity.
GET /engagements/activity
-
Query Params
page
- The page to include in the response. requiredpageSize
- The size of the page to include. required
GET /engagements/activity/uuid/{uuid}
-
Query Params
uuid
- The uuid of the engagementpage
- The page to include in the response. PageSize required when usingpageSize
- The size of the page to include. Page required when using
PUT /engagements/activity/refresh
Makes a complete refresh of the activity data in the activity service.
- No params
The config
resource exposes endpoints that allow clients to retrieve application configuration data.
The engagements
resource exposes various CRUD endpoints that allow clients to create, retrieve, update, and delete engagements.
GET /engagements
The following parameters are supported:
-
Header Params
Accept-version
- used to specify default results per page
-
Query Params
include
- attributes to include in responseexclude
- attributes to exclude in responsepage
- page number to retrieve if provided, the specified page will be returned. defaults to 1perPage
- number of records to retrieve for each page- if provided, the specified number of records will be returned
- if header Accept-version is missing or set to v1, defaults to 500
- if header Accept-version is specified and not v1, defaults to 20
search
- query string to filter engagements- supports
=
,like
,not like
,exists
, andnot exists
start
and/orend
can be used to limit the results based on a date range (i.e.start=2021-01-01&end=2021-05-01
)
- supports
sortOrder
- ASC for ascending and DESC for descending. defaults to descendingsortFields
- fields to sort on. defaults to customer_name,project_name
GET /engagements/customers/suggest
GET /engagements/artifacts
GET /engagements/artifacts/types
GET /engagements/categories
GET /engagements/hosting/environments
GET /engagements/scores
GET /engagements/usecases
The following parameters are supported:
- Query Params
page
- page number to retrieve- if provided, the specified page will be returned. defaults to 1
perPage
- number of records to retrieve for each page- if provided, the specified number of records will be returned
- if header Accept-version is missing or set to v1, defaults to 500
- if header Accept-version is specified and not v1, defaults to 20
suggestion
- case insensitive query string to filter engagementssortOrder
- ASC for ascending and DESC for descending. defaults to descending
GET /engagements/state/{state}
The following parameters are supported:
-
Path Params
state
- the state to filter engagements on values areupcoming
,active
,past
, andterminating
- if unknown value supplied,
upcoming
will be used
- if unknown value supplied,
-
Header Params
- supports all the same as GET /engagements
-
Query Params
- supports all the same as GET /engagements
GET /engagements/users/summary
The following parameters are supported:
- Query Params:
- supports
=
,like
,not like
,exists
, andnot exists
start
and/orend
can be used to limit the results based on a date range (i.e.start=2021-01-01&end=2021-05-01
)
- supports
GET /engagements/count
Summarizes the count of engagements in each state
The following parameters are supported:
- Query Params
localTime
- the time to calculate whether at that time the engagement wasupcoming
,active
,past
, andterminating
The status
resource exposes endpoints providing two main functionalities:
- Application component status data
- Webhook APIs to allow for updates to the database triggered from external changes.
The version
resource exposes endpoints to retrieve application component versions.
There are currently 2 scheduled jobs that run on a given active node of the LodeStar Backend.
This job is responsible for inserting into the database any engagement in GitLab that is not currently in the database.
The job interval can be set using the environment variable AUTO_REPOP_CRON
, but is defaulted to every 5 minutes.
For example:
auto.repopulate.cron.expr=${AUTO_REPOP_CRON:0 0/5 * * * ?}
By default, this does not insert or update any engagement that is already in the database. Repopulation of the entire database can be triggered using the PUT β/engagementsβ/refresh
API and setting the query param purgeFirst=true
.
This job is used to check once at startup for any engagements missing UUIDs for either the engagement or the engagement users.
The following environment variables are available:
Name | Example Value | Required |
---|---|---|
JWT_LOGGING | INFO | False |
LODESTAR_BACKEND_LOGGING | INFO | False |
LODESTAR_BACKEND_MIN_LOGGING | TRACE | false |
Name | Example Value | Required |
---|---|---|
JWT_PUBLIC_KEY_LOCATION | http://[your-cluster-internal-sso-service-name]:8080/auth/realms/[your-realm-id]/protocol/openid-connect/certs | True |
JWT_ISSUER | http://[your-cluster-internal-sso-service-name] | True |
JWT_ENABLE | True | False |
Name | Example Value | Required |
---|---|---|
LODESTAR_GITLAB_API_URL | http://lodestar-git-api:8080 | True |
Name | Example Value | Required |
---|---|---|
LODESTAR_STATUS_API_URL | http://lodestar-status:8080 | True |
Name | Example Value | Required |
---|---|---|
LODESTAR_BACKEND_GIT_COMMIT | not.set | False |
LODESTAR_BACKEND_GIT_TAG | not.set | False |
Name | Example Value | Required |
---|---|---|
WEBHOOK_TOKEN | myToken | True |
CLEANUP_TOKEN | cToken | False |
Name | Example Value | Required |
---|---|---|
COMMIT_FILTERED_MESSAGE_LIST | manual_refresh | False |
Name | Example Value | Required |
---|---|---|
AUTO_REPOP_CRON | 0 0/5 * * * ? | False |
Name | Example Value | Required |
---|---|---|
EVENT_MAX_RETRIES | 5 | False |
EVENT_RETRY_DELAY_FACTOR | 2 | False |
EVENT_RETRY_MAX_DELAY | 60 | False |
EVENT_GET_PER_PAGE | 20 | False |
See the development README for details on how to spin up a deployment for developing on OpenShift.
This project was built using Quarkus.
This project runs tests using an embedded Mongo DB and Using the TokenUtils found in the test directory. The only component Mocked is the external REST Client calls to the Git API.
# serve with hot reload at localhost:8080
mvn quarkus:dev
# run unit tests
mvn test
# continuous testing
mvn quarkus:test
# build for production
mvn quarkus:build