Skip to content

Commit

Permalink
Adding the utils and constants (#76)
Browse files Browse the repository at this point in the history
* Adding the utils and constants

* Stored table name in variable, instead of hardcoding

* Adding early return statement in case of failure

---------

Co-authored-by: vikhyat <vikhyat.bhatnagar@jumbotail.com>
  • Loading branch information
vikhyat187 and vikhyat authored Oct 2, 2023
1 parent eb767c4 commit 1ab2929
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 0 deletions.
6 changes: 6 additions & 0 deletions models/request-quota.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package models

type RequestLimit struct {
LimitType string `json:"limitType" dynamodbav:"limitType"`
LimitValue int16 `json:"limitValue" dynamodbav:"limitValue"`
}
97 changes: 97 additions & 0 deletions utils/CheckRequestAllowed.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
package utils

import (
"fmt"
"log"
"os"

"github.com/Real-Dev-Squad/feature-flag-backend/models"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute"
lambdaInvoke "github.com/aws/aws-sdk-go/service/lambda"
)

var raterLimiterFunctionName string
var found bool
var requestLimitTableName = "requestLimit"

func init() {
raterLimiterFunctionName, found = os.LookupEnv("RateLimiterFunction")
if !found {
log.Println("Rate limiter function name is not found")
}
}

func CheckRequestAllowed(db *dynamodb.DynamoDB, concurrencyValue int) {
// check the quota values
requestLimitInput := &dynamodb.GetItemInput{
TableName: aws.String(requestLimitTableName),
Key: map[string]*dynamodb.AttributeValue{
"limitType": {
S: aws.String("pendingLimit"),
},
},
}

requestLimitResult, err := db.GetItem(requestLimitInput)
if err != nil {
log.Println(err, "is the error in request limit fetching")
}

requestLimitResponse := new(models.RequestLimit)
err = dynamodbattribute.UnmarshalMap(requestLimitResult.Item, requestLimitResponse)

if err != nil {
log.Println(err, "is the error")
}

if requestLimitResponse.LimitValue > 1 {
// reducing the request quota limit
requestLimitUpdateInput := models.RequestLimit{
LimitType: requestLimitResponse.LimitType,
LimitValue: requestLimitResponse.LimitValue - 1,
}

marshalledInput, err := dynamodbattribute.MarshalMap(requestLimitUpdateInput)
if err != nil {
log.Println("Error in marshalling the request")
}

putItemInput := &dynamodb.PutItemInput{
TableName: aws.String(requestLimitTableName),
Item: marshalledInput,
}

_, err = db.PutItem(putItemInput)
if err != nil {
log.Println("Error in updating the request limit counters", err)
return
}
log.Println("The updated limit is ", requestLimitUpdateInput.LimitValue)
} else {
//mark the concurrency of all the other lambdas to zero
sess, err := session.NewSession()

if err != nil {
log.Println("Error in creating AWS session to access any service")
ServerError(err)
}
lambdaClient := lambdaInvoke.New(sess)

concurrencyValue := 0
lambdaInvokeInput := lambdaInvoke.InvokeInput{
FunctionName: aws.String(raterLimiterFunctionName),
Payload: []byte(fmt.Sprintf(`{"intValue" : %d}`, concurrencyValue)),
}
result, err := lambdaClient.Invoke(&lambdaInvokeInput)
if err != nil {
log.Println("There is some error in calling the new lambda created")
ServerError(err)
}

log.Println("The result of the invocation of the another lambda is ", result)

}
}
1 change: 1 addition & 0 deletions utils/Constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ const (
UpdatedAt = "updatedAt"
UserId = "userId"
FlagId = "flagId"
ConcurrencyDisablingLambda = 0
)

0 comments on commit 1ab2929

Please sign in to comment.