unfoldingWord-dev / d43-catalog

Lambda functions for the Door43 Catalog.
https://api.door43.org/v3/catalog
MIT License
1 stars 8 forks source link

master: Build Status Coverage Status

develop: Build Status Coverage Status

d43-catalog

These are the AWS Lambda functions for generating the API catalog endpoint from the Door43 Catalog organization in our Door43 Git Service.

Requirements

Development

How it Works

When a new repository is added or forked into the Door43 Catalog organization a chain reaction is started that eventually adds the content into the API, assuming all the checks passed. Here is an overview:

  1. Someone creates a new repository or forks a repository into the Door43 Catalog organization
  2. The organization triggers the webhook function which queues the latest git commit for processing.

The next few functions run on a fixed schedule. If errors occur they are reported and the process resumed at the next scheduled run.

If a function produces errors 4 times in a row an email is sent to administrators.

  1. The signing function looks for and signs new things in the queue.
  2. The catalog function takes everything in the queue and generates a new api catalog file. The content is now in the API!
  3. The ts_v2_catalog function converts the API catalog file into the legacy translationStudio API.
  4. The uw_v2_catalog function converts the API catalog file into the legacy unfoldingWord App Catalog.
  5. The fork function checks to see if new repositories exist in the organization and executes the webhook function if necessary.

The content in step (1) is now available in all three API endpoints.

  1. The acceptance function runs when the catalog file is saved in step (4) above. And performs acceptance tests on the file to ensure it was generated correctly.

Function Description

The following provides a functional description of the functions in this repository.

webhook

Runs when a change is made in the Door43 Catalog

signing

This function is run on a schedule and does the following:

catalog

This function is run on a schedule and does the following:

acceptance

After a new catalog file is written to S3, this function does the following:

Technically this is all duplicate testing of what we are already doing elsewhere in the pipeline. This function is the "oops" catcher.

fork

This function is run on a schedule and does the following:

ts_v2_catalog

This function is run on a schedule and does the following:

uw_v2_catalog

This function is run on a schedule and does the following:

trigger

This function is run via AWS cron every 5 minutes and does the following:

AWS Configuration

Here's a high level overview of the AWS configuration. For Swagger definitions look in the aws_configuration folder. You can create an API in API Gateway by importing these Swagger definitions.

The following functions are configured as api endpoints within API Gateway:

For example you can trigger the fork lambda at https://api.door43.org/v3/lambda/fork.

The functions are not designed to always return useful information in the browser and may timeout, however they are still running properly.

The name of the stage in API Gateway determines the operating environment. If the stage name begins with prod the functions will operate on production databases. If the stage name begins with anything other than prod the functions will prefix databases with the stage name.

For example:

Stage Variables

Stage variables are configured within the stage defined in API Gateway. These variables are accessible within lambdas from the event parameter. e.g. event['stage-variables']

acceptance function configuration

The acceptance function is ran according to a CloudWatch rule which runs when the catalog file is added to the api S3 bucket.

trigger function configuration

The trigger function is ran according to a CloudWatch rule which is configured to run every 5 minutes via a cron job.

Dynamo DB Configuration

The following database tables are used by the API pipeline described above. Please note additional tables may be necessary when catering to multiple stages (described above).

Tools

CSV to USFM3

This tool will convert a csv file containing Greek words to USFM 3 format. You may execute the following command to learn how to use the tool.

python execute.py csvtousfm3 -h

Map tW to USFM3

This tool will inject tW links into the USFM generated by csvtousfm3. This tool is designed to replace the functionality of the config.yaml found within a tW RC with the newly generated USFM3 content. As such this is mostly a one time use tool.

If you are not sure what to use this tool for you probably shouldn't use it.

You may execute the following command to learn how to use the tool.

python execute.py maptwtousfm3 -h

Convert OSIS to USFM3

This tool will convert a directory of OSIS files (xml) to a new directory of USFM3 files.

You may execute the following command to learn how to use the tool.

python execute.py osistousfm3 -h

Testing

You can run tests be executing the following:

python -m unittest discover -s tests

Deploying

In order to deploy to production you need to run this command.

apex deploy --env prod

You can also deploy a specific function with

apex deploy --env prod catalog

If you want to cause a catalog to re-build you can delete the catalog entry from the d43-catalog-status. It will begin re-building within 5 minutes. Or you can try to force a re-try now by visiting https://api.door43.org/v3/lambda/catalog. The lambdas are not allowed to run too often, so if you are trying to re-start the catalog lambda right away you may also need to delete the d43-catalog_catalog record from the d43-catalog-running table.