Skip to content

eldimious/slack-golang-gcf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Serverless Slack messages dispatcher using Google Cloud Functions as FaaS.

When we say “serverless”, it doesn’t mean servers are no longer involved. It means that you no longer need to think about them. Serverless is an approach that aims to eliminate the need to manage infrastructure by:

  • Using a managed FaaS compute service such as AWS Lambda, Webtask, Google Cloud Functions, and IBM OpenWhisk to execute code,
  • Leveraging third-party services and APIs, and
  • Applying serverless architectures and patterns.

FaaS providers such as Gcf offers a new kind of platform that lets you deploy and invoke ephemeral (short-lived) function processes via events to handle individual requests. It provides a means to achieve the serverless dream allowing developers to execute code in response to events without building out or maintaining a complex infrastructure.

slack-golang-gcf is a serverless implementation of basic Stripe requests using Faas(Google Cloud Functions).

Architecture Overview

The app is designed to use a layered architecture. The architecture is heavily influenced by the Clean Architecture and Hexagonal Architecture. Clean Architecture is an architecture where the business rules can be tested without the UI, database, web server, or any external element.

Data Layer

The data layer is implemented using repositories, that hide the underlying data sources (BaaS, database, network, cache, etc), and provides an abstraction over them so other parts of the application that make use of the repositories, don't care about the origin of the data and are decoupled from the specific implementations used. Here, we use Stripe as a BaaS provider for both creating customers and payments and exporsure methods.This is important to enable the decoupling.

Domain Layer

The domain layer is implemented using services. They depend on the repositories to get the exported methods and apply the business rules on them. They are not coupled to a specific BaaS implementation and can be reused if we change our Baas client from Stripe to another platform.

Routes/Controller Layer

This layer is being used in the exported GCF and depends on the domain layer (services). Here we define the middleware where we specify some validation rules for the requests.

Entry point

The entry point for the applications is the fn.go file, where we specify all google cloud functions that we will deploy.

Quick start

Prerequisites

Create an .env.yaml file in project root to register the following required environment variable(we need the slack WEBHOOK_URL):

  • WEBHOOK_URL: "xxxxxxxxxxxx"

Deployment

In order to deploy your functions to gcloud just use gcloud cli, e.g. in order to deploy SendNotification use this cmd:

  gcloud config set project PROJECT_ID && gcloud beta functions deploy sendNotification --entry-point SendNotification --runtime go111 --trigger-http --env-vars-file .env.yaml

where --env-vars-file .env.yaml flag reads and sets the env vars from your.env.yaml as function's scope.

For more info about enviroment variables in gcf you can take a look at this link

Also you can take a look how we deploy a gcf at this link

Usage

After you deploy the function in google cloud, you can use them by a HTTP request to their URL. E.g. to trigger sendNotification gcf we should:

curl "https://REGION-PROJECT_ID.cloudfunctions.net/sendNotification"

where:

  • REGION is the region where your function is deployed. This is visible in your terminal when your function finishes deploying.

  • PROJECT_ID is your Cloud project ID. This is visible in your terminal when your function finishes deploying.

Support Me

ko-fi

Show your support

Give a ⭐️ if this project helped you!

About

Google cloud function which sends messages to slack via slack-webhook and triggered by http request

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages