GithubHelp home page GithubHelp logo

lambdawrappertest's Introduction

A demo for aws lambda and ApiGateway integration.

Something unusual

In main(), use lambda.StartHandler(...) and a custom wrap()

func main() {
	lambda.StartHandler(wrap(handler))
}

Your wrap() is something like this:

func wrap(handler interface{}) LambdaHandler {

	.....

	return LambdaHandler{func(ctx context.Context, b []byte) ([]byte, error) {

		......

		// the before func
		aspect.before()

		// exec handler
		var resp []reflect.Value
		if err := func() (err error) {
			defer func() {
				if r := recover(); r != nil {
					err = fmt.Errorf("recover: %v", r)
				}
			}()
			resp = reflect.ValueOf(handler).Call([]reflect.Value{reflect.ValueOf(ctx), args})
			return nil
		}(); err != nil {
			return nil, err
		}

		// below are aws standard output
		// you can put some after func here, before or after these
		if len(resp) > 0 {
			if i := resp[len(resp)-1].Interface(); i != nil {
				err, ok := i.(error)
				if !ok {
					panic(fmt.Errorf("the last of returns must be error, got %+v", i))
				}
				if err != nil {
					return nil, err
				}
			}
		}

		if len(resp) > 1 {
			b, err := json.Marshal(resp[0].Interface())
			if err != nil {
				return nil, err
			}
			return b, nil
		}

		return nil, nil
	}}
}

For local test:

$ make local

then:

$ curl -i http://127.0.0.1:3000/greeting/foo

or you may want to deploy it to aws cloundformation: change the STACK-NAME and aws s3 path to your own.

make deploy

lambdawrappertest's People

Contributors

liangzuobin avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.