blob: 5e6e416e67c96d0cf7ee2e4ef58bd6bec5c5c4db [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package external_functions
import (
"beam.apache.org/playground/backend/internal/utils"
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"beam.apache.org/playground/backend/internal/db/entity"
"beam.apache.org/playground/backend/internal/environment"
"beam.apache.org/playground/backend/internal/logger"
)
type ExternalFunctions interface {
// CleanupSnippets removes old snippets from the database.
CleanupSnippets(ctx context.Context) error
// PutSnippet puts the snippet to the database.
PutSnippet(ctx context.Context, snipId string, snippet *entity.Snippet) error
// IncrementSnippetViews increments the number of views for the snippet.
IncrementSnippetViews(ctx context.Context, snipId string) error
}
type externalFunctionsComponent struct {
cleanupSnippetsFunctionsUrl string
putSnippetFunctionsUrl string
incrementSnippetViewsFunctionsUrl string
}
func NewExternalFunctionsComponent(appEnvs environment.ApplicationEnvs) ExternalFunctions {
return &externalFunctionsComponent{
cleanupSnippetsFunctionsUrl: appEnvs.CleanupSnippetsFunctionsUrl(),
putSnippetFunctionsUrl: appEnvs.PutSnippetFunctionsUrl(),
incrementSnippetViewsFunctionsUrl: appEnvs.IncrementSnippetViewsFunctionsUrl(),
}
}
func makePostRequest(ctx context.Context, requestUrl string, body any) error {
var bodyReader io.Reader = nil
if body != nil {
bodyJson, err := json.Marshal(body)
if err != nil {
logger.Errorf("makePostRequest(): Couldn't marshal the body, err: %s\n", err.Error())
return err
}
bodyReader = bytes.NewReader(bodyJson)
} else {
bodyReader = bytes.NewReader([]byte("{}"))
}
request, err := http.NewRequestWithContext(ctx, "POST", requestUrl, bodyReader)
if err != nil {
logger.Errorf("makePostRequest(): Couldn't create the request, err: %s\n", err.Error())
return err
}
request.Header.Set("Content-Type", "application/json")
resp, err := http.DefaultClient.Do(request)
if err != nil {
logger.Errorf("makePostRequest(): Couldn't make POST request to the %s, err: %s\n", requestUrl, err.Error())
return err
}
if resp.StatusCode != http.StatusOK {
return fmt.Errorf("status code: %d", resp.StatusCode)
}
return nil
}
func (c *externalFunctionsComponent) CleanupSnippets(ctx context.Context) error {
namespace := utils.GetNamespace(ctx)
requestUrl := fmt.Sprintf("%s?namespace=%s", c.cleanupSnippetsFunctionsUrl, namespace)
if err := makePostRequest(ctx, requestUrl, nil); err != nil {
logger.Errorf("CleanupSnippets(): Couldn't cleanup snippets, err: %s\n", err.Error())
return err
}
return nil
}
func (c *externalFunctionsComponent) PutSnippet(ctx context.Context, snipId string, snippet *entity.Snippet) error {
namespace := utils.GetNamespace(ctx)
requestUrl := fmt.Sprintf("%s?namespace=%s&snipId=%s", c.putSnippetFunctionsUrl, namespace, snipId)
if err := makePostRequest(ctx, requestUrl, snippet); err != nil {
logger.Errorf("DeleteObsoleteSnippets(): Couldn't delete obsolete snippets, err: %s\n", err.Error())
return err
}
return nil
}
func (c *externalFunctionsComponent) IncrementSnippetViews(ctx context.Context, snipId string) error {
namespace := utils.GetNamespace(ctx)
requestUrl := fmt.Sprintf("%s?namespace=%s&snipId=%s", c.incrementSnippetViewsFunctionsUrl, namespace, snipId)
if err := makePostRequest(ctx, requestUrl, nil); err != nil {
logger.Errorf("IncrementSnippetViews(): Couldn't increment snippet views, err: %s\n", err.Error())
return err
}
return nil
}