Skip to content

jthoma/code-collection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Just a collection of code snippets

AWS/Cloud Watch UAPI xml logger

Introduction

TravelPort UAPI Travelport Universal API offers an array of travel content for air, hotel, car, and rail, including ancillaries (optional services). It also provides functionality to build complete traveler, agency, branch, and account profiles.

TravelPort-Ukrane uapi-json Best Travelport Universal API wrapper ever, needed some extra features like xml logging (Issue:391). This provides a solution to the same as suggested.

Guidelines

Create the Cloud Watch Log Group and provide through environment variable (cwLogGroup) or constant in code line 12 value for logGroupName. AWS_LAMBDA_LOG_STREAM_NAME is a Runtime Reserved Environment Variable, require this library and set the entry point as logFunction property of options property of settings object as specified here.

Node/API Key Generator

Introduction

Javascript API Credentials was actually a port from a site when needed for a project to be used in the front end. Now the same functionality is needed on a serverless project and just some mods to adopt into the node.js environment. I am aware of other generators like thos which use the crypto module as in this Secure random token in Node.js which explains the use as

require('crypto').randomBytes(48, function(err, buffer) {
  var token = buffer.toString('hex');
});

Guidelines

Nothing much than just require the module, and invoke the functions.

Functions

.access_key

A preset function which generates random string from uppercase alphabets and has a size of 20 characters, to simulate the AWS_ACCESS_KEY_ID, though is not any way related to AWS.

.secret_key()

A preset function which generates random string from alphanumerals along with some special characters and has a size of 40 characters, to simulate the AWS_SECRET_ACCESS_KEY, though is not any way related to AWS.

.any_key(int length, [] chars)

This method provides the most flexibilty that one should specify the char list as array and length as a rounded number. The generated string will be of the said length and uses random chars from supplied list.

AWS/SNS to CloudWatch log

Introduction

Nothing much, an SNS Payload with solid subject and string message is expected which will be consoled by this lambda.

Postman to NodeJS Code Generator

Generate code abstraction by reading the postman export. Any rest api can be abstracted to node.js code module using this code writer.

gTerm

gterm - a console app in php to learn and test Travelport Galileo GDS Terminal Commands demo on YouTube

About

Just a collection of code snippets

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published