Last active
June 15, 2020 06:56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package watermark | |
import ( | |
"context" | |
"net/http" | |
"os" | |
"github.com/velotiotech/watermark-service/internal" | |
"github.com/go-kit/kit/log" | |
"github.com/lithammer/shortuuid/v3" | |
) | |
type watermarkService struct{} | |
func NewService() Service { return &watermarkService{} } | |
func (w *watermarkService) Get(_ context.Context, filters ...internal.Filter) ([]internal.Document, error) { | |
// query the database using the filters and return the list of documents | |
// return error if the filter (key) is invalid and also return error if no item found | |
doc := internal.Document{ | |
Content: "book", | |
Title: "Harry Potter and Half Blood Prince", | |
Author: "J.K. Rowling", | |
Topic: "Fiction and Magic", | |
} | |
return []internal.Document{doc}, nil | |
} | |
func (w *watermarkService) Status(_ context.Context, ticketID string) (internal.Status, error) { | |
// query database using the ticketID and return the document info | |
// return err if the ticketID is invalid or no Document exists for that ticketID | |
return internal.InProgress, nil | |
} | |
func (w *watermarkService) Watermark(_ context.Context, ticketID, mark string) (int, error) { | |
// update the database entry with watermark field as non empty | |
// first check if the watermark status is not already in InProgress, Started or Finished state | |
// If yes, then return invalid request | |
// return error if no item found using the ticketID | |
return http.StatusOK, nil | |
} | |
func (w *watermarkService) AddDocument(_ context.Context, doc *internal.Document) (string, error) { | |
// add the document entry in the database by calling the database service | |
// return error if the doc is invalid and/or the database invalid entry error | |
newTicketID := shortuuid.New() | |
return newTicketID, nil | |
} | |
func (w *watermarkService) ServiceStatus(_ context.Context) (int, error) { | |
logger.Log("Checking the Service health...") | |
return http.StatusOK, nil | |
} | |
var logger log.Logger | |
func init() { | |
logger = log.NewLogfmtLogger(log.NewSyncWriter(os.Stderr)) | |
logger = log.With(logger, "ts", log.DefaultTimestampUTC) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment