This repository contains addons to allow integration with GCP Cloud Storage via Open Task Framework (OTF)
Open Task Framework (OTF) is a Python based framework to make it easy to run predefined file transfers and scripts/commands on remote machines.
This addons allows pushes and pulls of Files from (and to) GCP Cloud Storage Buckets.
This package uses google-auth
to get OAuth2.0 creds for the GCP Token API. This includes access_token
.
Prior to using this framework, a GCP IAM Service Account should be created through gcloud CLI or Web portal. The JSON credentials for the Service account should be exported and stored locally. (currently the .gitignore excludes any .json in the tests folder by default)
The Service account crednetials should be included in tests/testFiles
and require only the following properties:
{
private_key= "-----BEGIN PRIVATE KEY-----\nMIIEv ....",
client_email= "file.upload@projectName.iam.gserviceaccount.com",
token_uri= "https://oauth2.googleapis.com/token"
}
The rest of the keys can be removed.
Running this OTF Addon, requires test files being placed in the src/tmp
directory. Running the tests will perform an upload and download from/to GCP Cloud Storage.
Each request will generate a new Service Account Token, token refresh/state-keeping through AWS SSM or local cache has not been implemented yet.
Transfers require a few additional arguments to work. These are:
- bucket: The bucket name of the Cloud Storage instance
- credentials: JSON object containing the above 3 credential properties.
- File transfer: ingress/egress from/to Cloud Storage
- Renaming functionality
- PostCopy functionality
- fileWatch functionality
JSON configs for transfers can be defined as follows:
"destination": {
"bucket": "bucketname",
"directory": "directory/nested",
"protocol": {
"name": "opentaskpy.addons.gcp.remotehandlers.bucket.BucketTransfer",
"credentials": "{LOOKUP DEFINITION FOR SA CREDENTIALS}",
},
"rename":{
"pattern":"Hithere",
"sub": "Hi"
}
}
"source": {
"bucket": "bucketname",
"directory": "directory/nested",
"protocol": {
"name": "opentaskpy.addons.gcp.remotehandlers.bucket.BucketTransfer",
"credentials": "{LOOKUP DEFINITION FOR SA CREDENTIALS}",
},
"postCopyAction":{
"action":"move",
"destination": "directory/nested/processed",
"pattern" : "(?<![^ ])(?=[^ ])(?!ab)", ## Regex for prefixing
"sub" : "Archived_"
},
"fileRegex": ".*//.txt$" ## accepts re module matching
}