2021-07-17 09:06:33 +00:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-09-26 19:13:38 +00:00
|
|
|
"errors"
|
2021-07-17 09:06:33 +00:00
|
|
|
"math/rand"
|
|
|
|
|
2021-07-18 05:28:24 +00:00
|
|
|
"github.com/allegro/bigcache/v3"
|
2021-07-17 09:06:33 +00:00
|
|
|
"github.com/georgysavva/scany/pgxscan"
|
|
|
|
"github.com/jackc/pgx/v4/pgxpool"
|
2021-07-18 05:28:24 +00:00
|
|
|
"github.com/pquerna/ffjson/ffjson"
|
2021-07-17 09:06:33 +00:00
|
|
|
)
|
|
|
|
|
2021-07-17 15:06:43 +00:00
|
|
|
// GetAllJSONJokes fetch the database for all the jokes then output it as a JSON []byte.
|
|
|
|
// Keep in mind, you will need to store it to memory yourself.
|
2021-07-17 09:06:33 +00:00
|
|
|
func GetAllJSONJokes(db *pgxpool.Pool) ([]byte, error) {
|
2021-09-26 19:13:38 +00:00
|
|
|
var jokes []Joke
|
2021-07-17 09:06:33 +00:00
|
|
|
results, err := db.Query(context.Background(), "SELECT \"id\",\"link\" FROM \"jokesbapak2\" ORDER BY \"id\"")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-08-04 05:56:14 +00:00
|
|
|
defer results.Close()
|
|
|
|
|
2021-07-17 09:06:33 +00:00
|
|
|
err = pgxscan.ScanAll(&jokes, results)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-07-18 05:28:24 +00:00
|
|
|
data, err := ffjson.Marshal(jokes)
|
2021-07-17 09:06:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return data, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 15:06:43 +00:00
|
|
|
// GetRandomJokeFromCache returns a link string of a random joke from cache.
|
2021-07-18 05:28:24 +00:00
|
|
|
func GetRandomJokeFromCache(memory *bigcache.BigCache) (string, error) {
|
|
|
|
jokes, err := memory.Get("jokes")
|
|
|
|
if err != nil {
|
2021-09-26 19:13:38 +00:00
|
|
|
if errors.Is(err, bigcache.ErrEntryNotFound) {
|
|
|
|
return "", ErrNotFound
|
2021-07-18 05:28:24 +00:00
|
|
|
}
|
|
|
|
return "", err
|
2021-07-17 09:06:33 +00:00
|
|
|
}
|
|
|
|
|
2021-09-26 19:13:38 +00:00
|
|
|
var data []Joke
|
2021-07-18 05:28:24 +00:00
|
|
|
err = ffjson.Unmarshal(jokes, &data)
|
2021-07-17 09:06:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
2021-07-18 05:28:24 +00:00
|
|
|
// Return an error if the database is empty
|
2021-07-17 10:34:02 +00:00
|
|
|
dataLength := len(data)
|
|
|
|
if dataLength == 0 {
|
2021-09-26 19:13:38 +00:00
|
|
|
return "", ErrEmpty
|
2021-07-17 10:34:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
random := rand.Intn(dataLength)
|
2021-07-17 09:06:33 +00:00
|
|
|
joke := data[random].Link
|
|
|
|
|
|
|
|
return joke, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CheckJokesCache checks if there is some value inside jokes cache.
|
2021-07-18 05:28:24 +00:00
|
|
|
func CheckJokesCache(memory *bigcache.BigCache) (bool, error) {
|
|
|
|
_, err := memory.Get("jokes")
|
|
|
|
if err != nil {
|
2021-09-26 19:13:38 +00:00
|
|
|
if errors.Is(err, bigcache.ErrEntryNotFound) {
|
2021-07-18 05:28:24 +00:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return true, nil
|
2021-07-17 09:06:33 +00:00
|
|
|
}
|
|
|
|
|
2021-07-19 10:21:08 +00:00
|
|
|
// CheckTotalJokesCache literally does what the name is for
|
|
|
|
func CheckTotalJokesCache(memory *bigcache.BigCache) (bool, error) {
|
|
|
|
_, err := memory.Get("total")
|
|
|
|
if err != nil {
|
2021-09-26 19:13:38 +00:00
|
|
|
if errors.Is(err, bigcache.ErrEntryNotFound) {
|
2021-07-19 10:21:08 +00:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 15:06:43 +00:00
|
|
|
// GetCachedJokeByID returns a link string of a certain ID from cache.
|
2021-07-18 05:28:24 +00:00
|
|
|
func GetCachedJokeByID(memory *bigcache.BigCache, id int) (string, error) {
|
|
|
|
jokes, err := memory.Get("jokes")
|
|
|
|
if err != nil {
|
2021-09-26 19:13:38 +00:00
|
|
|
if errors.Is(err, bigcache.ErrEntryNotFound) {
|
|
|
|
return "", ErrNotFound
|
2021-07-18 05:28:24 +00:00
|
|
|
}
|
|
|
|
return "", err
|
2021-07-17 09:06:33 +00:00
|
|
|
}
|
|
|
|
|
2021-09-26 19:13:38 +00:00
|
|
|
var data []Joke
|
2021-07-18 05:28:24 +00:00
|
|
|
err = ffjson.Unmarshal(jokes, &data)
|
2021-07-17 09:06:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is a simple solution, might convert it to goroutines and channels sometime soon.
|
|
|
|
for _, v := range data {
|
|
|
|
if v.ID == id {
|
|
|
|
return v.Link, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return "", nil
|
|
|
|
}
|
2021-07-19 10:21:08 +00:00
|
|
|
|
|
|
|
// GetCachedTotalJokes
|
|
|
|
func GetCachedTotalJokes(memory *bigcache.BigCache) (int, error) {
|
|
|
|
total, err := memory.Get("total")
|
|
|
|
if err != nil {
|
2021-09-26 19:13:38 +00:00
|
|
|
if errors.Is(err, bigcache.ErrEntryNotFound) {
|
|
|
|
return 0, ErrNotFound
|
2021-07-19 10:21:08 +00:00
|
|
|
}
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return int(total[0]), nil
|
|
|
|
}
|