Code Node Creation Flow
Code Node creation process :
While creating a node on the workspace :
Select Code APP and javascript API.
In the Code field, enter your JavaScript code.
You can also define data fields to be provided to the code as strings with the Input Data fields.
Click continue.
API: https://{{workspace}}.myeshopbox.com/api/v1/node
Generate a service account token. Eshopbox platform uses App Engine client library to generate an access token for the service account.
Ref: https://cloud.google.com/docs/authentication/production#manuallystatic void authExplicit(String jsonPath) throws IOException { // You can specify a credential file by providing a path to GoogleCredentials. // Otherwise credentials are read from the GOOGLE_APPLICATION_CREDENTIALS environment variable. GoogleCredentials credentials = GoogleCredentials.fromStream(new FileInputStream(jsonPath)) .createScoped(Lists.newArrayList("https://www.googleapis.com/auth/cloud-platform")); Storage storage = StorageOptions.newBuilder().setCredentials(credentials).build().getService(); System.out.println("Buckets:"); Page<Bucket> buckets = storage.list(); for (Bucket bucket : buckets.iterateAll()) { System.out.println(bucket.toString()); } }
Service account token is received from the above function.
Source code is uploaded in js file on cloud storage by hitting the following API using the above access token.
Url to upload file: https://storage.googleapis.com/upload/storage/v1/b/{bucketName}/o?uploadType=media&name={filename}
Ref: https://cloud.google.com/storage/docs/uploading-objects#rest-upload-objectsThe file upload response is returned.
On successful response, push node metadata into the queue.
NodeId
Bucket name
Filename
File path
Return the above response to the Workspace.
On the other of the queue, Eshopbox creates an archived file of the javascript source code using App Engine client library for Cloud Storage.
GcsService gcsService = GcsServiceFactory.createGcsService(); GcsOutputChannel gcsOutputChannel = gcsService.createOrReplace(new GcsFilename("{bucketName}", "{zipFileName}"), new GcsFileOptions.Builder().build()); ZipOutputStream outputStream = new ZipOutputStream(Channels.newOutputStream(gcsOutputChannel)); GcsInputChannel inputChannel = gcsService .openReadChannel(new GcsFilename("{sourceBucketName}", "index.js"), 0); InputStream inStream = Channels.newInputStream(inputChannel); ZipEntry zipEntry = new ZipEntry("index.js"); outputStream.putNextEntry(zipEntry); byte[] bytes = new byte[1024]; int length; while((length = inStream.read(bytes)) >= 0) { outputStream.write(bytes, 0, length); }
Then, create a cloud function using Service Account token, pass function names in the body along with other details
POST https://cloudfunctions.googleapis.com/v1/{location}/functions
Ref link: https://cloud.google.com/functions/docs/reference/rest/v1/projects.locations.functions#CloudFunctionTo invoke the created cloud function, generate a token to authorize the function invoke request:
GEThttp://metadata/computeMetadata/v1/instance/service-accounts/default/identity?audience=https://{REGION}-{PROJECT_ID}.cloudfunctions.net/{FUNCTION_NAME}
Ref link: https://cloud.google.com/functions/docs/calling/httpIf successful, the response includes a
200
status code with access token.Invoke the cloud function using this access token on the following URL:
POSThttps://{REGION}-{PROJECT_ID}.cloudfunctions.net/{FUNCTION_NAME}
Add the input fields to the body as mentioned while creating node.