• Stars
    star
    516
  • Rank 82,300 (Top 2 %)
  • Language
    Scala
  • License
    Apache License 2.0
  • Created over 4 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

🛒 The Shopping Cart application developed in the book "Practical FP in Scala: A hands-on approach"

shopping-cart

CI Status MergifyStatus Scala Steward badge Cats friendly

⚠️ IMPORTANT NOTICE If you are reading the first edition of Practical FP in Scala, go to the master branch. You're now on the second-edition branch, which is the new default. ⚠️

Components Overview

Here's an overview of the different components that make this application.

components

  • Both Services and Authentication are algebras. The latter are mainly dependencies for some of the services.
  • Programs shows Checkout, the business logic that combines most of the services.
  • Effects show our custom interfaces required implicitly.
  • The lines connecting services to Redis and PostgreSQL show which ones access which storage.
  • The HTTP layer shows the client and the different routes.
  • At the very end, we have both the modules and the entry point to the application.

Authentication Data

For didactic purposes, this is made available but in a real application THIS SHOULD NEVER BE MADE PUBLIC.

For Admin users, the following environment variables are needed:

  • SC_JWT_SECRET_KEY
  • SC_JWT_CLAIM
  • SC_ADMIN_USER_TOKEN

For access token (manipulation of the shopping cart):

  • SC_ACCESS_TOKEN_SECRET_KEY

For password encryption:

  • SC_PASSWORD_SALT

See the files docker-compose.yml or .env for more details.

Generate your own auth data

In order to generate a valid JWT token, you need a secret key, which can be any String, and a JWT Claim, which can be any valid JSON. You can then generate a token, as shown below:

val claim = JwtClaim(
  """
    {"uuid": "6290c116-4153-11ea-b77f-2e728ce88125"}
  """
)

val secretKey = JwtSecretKey("any-secret")

val algo = JwtAlgorithm.HS256

val mkToken: IO[JwtToken] =
  jwtEncode[IO](claim, secretKey, algo)

In our case, our claim contains a UUID, which is used to identify the Admin Id. In practice, though, a JWT can be any valid JSON.

Take a look at the TokenGenerator program to learn more.

Tests

To run Unit Tests:

sbt test

To run Integration Tests we need to run both PostgreSQL and Redis:

docker-compose up
sbt it:test
docker-compose down

Access Redis & Postgres

We can interact with both servers directly using the following commands:

$ docker-compose exec Redis /usr/local/bin/redis-cli
$ docker-compose exec Postgres usr/local/bin/psql -d store -U postgres

Build Docker image

sbt docker:publishLocal

Our image should now be built. We can check it by running the following command:

> docker images | grep shopping-cart
REPOSITORY                    TAG                 IMAGE ID            CREATED             SIZE
shopping-cart                 latest              646501a87362        2 seconds ago       138MB

To run our application using our Docker image, run the following command:

cd /app
docker-compose up

Payments Client

The configured test payment client is a fake API that always returns 200 with a Payment Id. Users are encouraged to make modifications, e.g. return 409 with another Payment Id (you can create one here) or any other HTTP status to see how our application handles the different cases.

This fake API can be modified at: https://beeceptor.com/console/payments

HTTP API Resources

If you use the Insomnia REST Client, you can import the shopping cart resources using the insomnia.json file.

LICENSE

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project 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.

More Repositories

1

nix-config

👾 NixOS configuration
Nix
712
star
2

trading

💱 Trading application written in Scala 3 that showcases an Event-Driven Architecture (EDA) and Functional Programming (FP)
Scala
597
star
3

pfps-examples

🏮 Standalone examples shown in the book "Practical FP in Scala: A hands-on approach"
Scala
189
star
4

dconf2nix

🐾 Convert Dconf files (e.g. Gnome Shell) to Nix, as expected by Home Manager
Nix
179
star
5

advanced-http4s

🌈 Code samples of advanced features of Http4s in combination with some features of Fs2 not often seen.
Scala
142
star
6

sbt-nix.g8

❄️ Get started with Nix in Scala
Nix
115
star
7

scalar-feda

Scala
96
star
8

http4s-good-practices

Collection of what I consider good practices in Http4s (WIP)
75
star
9

neovim-flake

Nix flake for Neovim & Scala Metals
Nix
73
star
10

shopping-cart-haskell

💎 Haskell version of the Shopping Cart application developed in the book "Practical FP in Scala: A hands-on approach"
Haskell
65
star
11

musikell

🎸 Artists, Albums and Songs represented using Neo4j + GraphQL
Haskell
55
star
12

newtypes

Zero-cost wrappers (newtypes) for Scala 3
Scala
41
star
13

exchange-rates

💱 Querying a rate-limited currency exchange API using Redis as a cache
Haskell
41
star
14

light-play-rest-api

This project aims to be the reference to create a Light Weight REST API using Play Framework 2.4.x.
Scala
35
star
15

vim-setup

👾 My NeoVim configuration for Scala & Haskell development (permanently moved to https://github.com/gvolpe/dotfiles)
Vim Script
30
star
16

fts

🔍 Postgres full-text search (fts)
Haskell
28
star
17

classy-optics

🔎 Source code shown at my talks at Scale by the Bay 2018 and Scalar 2019
Scala
26
star
18

haskell-book-exercises

From the book "Haskell Programming from first principles"
Haskell
26
star
19

stm-demo

Bank transfer examples using STM in both Haskell and Scala (zio-stm)
Scala
17
star
20

postgresql-resilient

Automatic re-connection support for PostgreSQL.
Haskell
16
star
21

akka-cluster-demo

Testing the Akka 2.4 feature "akka.cluster.sharding.remember-entities"
Scala
15
star
22

nmd

NixOS Module Documentation generator
Nix
15
star
23

social-graph-api

Authentication & Social Graph API built on top of Redis, Neo4J and Play!
Scala
13
star
24

fsm-streams

Scala
13
star
25

BeautyLine

https://www.gnome-look.org/p/1425426/
12
star
26

hll-algorithm-sample

HLL Algorithm and Web Scraping sample
Scala
11
star
27

simple-http4s-api

Just a simple API using "http4s" and Json support on top of Play Json and Circe
Scala
11
star
28

effects-playground

🎯 Learning different effect systems by example
Haskell
11
star
29

types-matter

Examples shown in my talk "Why types matter". See also https://github.com/gvolpe/par-dual
Haskell
10
star
30

split-morphism

➰ Split Morphisms
Haskell
10
star
31

stargazers-raffle

Run a raffle among the 🌟 stargazers 🌟 of a Github project!
Scala
10
star
32

akka-stream-full-project

Complete project using Akka Stream with Error Handling and ~100% Test Coverage
Scala
9
star
33

cats-functional-data-validation

Functional Data Validation in Scala using the Cats library
Scala
8
star
34

cats-effect-demo

Code samples for the use cases given at my Dublin Scala Meetup's talk
Scala
8
star
35

typed-actors-demo

Simple demo using Typed Actors by @knutwalker
Scala
8
star
36

bookies

My solution to a coding challenge
Scala
7
star
37

users-api-test

Basic Users API including Authentication using Http4s v0.18 and Cats Effect v0.5
Scala
6
star
38

falsisign.nix

Nix derivations for falsisign. Save trees, ink, time, and stick it to the bureaucrats!
Nix
5
star
39

learning-haskell

Learning Haskell
Haskell
4
star
40

http4s-crud-demo

CRUD operations and Error Handling using Http4s
Scala
4
star
41

dependent-types

Personal notes taken from the course ThCS. Introduction to programming with dependent types in Scala.
Scala
4
star
42

par-dual

🔁 ParDual class for a Parallel <-> Sequential relationship
Haskell
4
star
43

advanced-scala-exercises

Solved exercises of the Advanced Scala with Scalaz book by Noel Welsh and Dave Gurnell
Scala
4
star
44

social-network

Social Network example Twitter-alike (followers / following) implemented on top of Titan Db
Scala
4
star
45

eta-servant-api

Simple Servant REST Api working on ETA (https://eta-lang.org/)
Haskell
4
star
46

scala-lab

Playground for Scala 3's experimental features
Scala
4
star
47

http4s-auth

Authentication library for Http4s
Scala
3
star
48

reader-monad-sample

Example of Dependency Injection in Scala with Reader Monads
Scala
3
star
49

nixos-hyprland

NixOS on Wayland / Hyprland
Nix
3
star
50

classy-lens

Photography website
CSS
3
star
51

truco-argentino

Classic card games
C++
3
star
52

optics-exercises

Book exercises
Haskell
3
star
53

gvolpe-bot

Telegram Bot built using the Canoe library
Scala
3
star
54

functional-chain-of-responsibility

Functional Chain of Responsibility pattern
Scala
3
star
55

problem-solving

Just having fun solving algorithmic problems in λ Haskell & Scala
Haskell
3
star
56

idris-dependent-types

Dependent Types research in the Idris language
Idris
3
star
57

pricer-streams-demo

Scalaz Streams demo project
Scala
3
star
58

free-monad-example

Simple example of a Custom Free Monad Coyoneda using Scalaz.
Scala
2
star
59

shapeless-demo

Shapeless playground
Scala
2
star
60

play-cors-filter

Play! Framework API with CORS Filter
Scala
2
star
61

coursera-reactive-prog

Curso online de programación reactiva https://www.coursera.org/course/reactive
Scala
2
star
62

simple-file-reader-akka-actors

Simple file reader using Akka actors in Scala
Scala
2
star
63

pricer-fs2-demo

Demo project using FS2 (Functional Streams for Scala)
Scala
2
star
64

free-as-a-monad

Running 2 or more algebras with Coproduct and Inject when using the Free Monad
Scala
2
star
65

blog

Principled Software Craftsmanship
SCSS
2
star
66

logger-writer-monad

Pure functional log of transactions using the Scalaz Writer Monad.
Scala
2
star
67

play-oauth-silhouette

Example using OAuth with Play! Framework and Silhouette
Scala
2
star
68

cloud-haskell-demo

Getting Started with Cloud Haskell
Haskell
1
star
69

rate-limiter

Haskell
1
star
70

play-2.5.0-M1-streams

Exploring the integration of Akka Stream included in the first milestone version of Play! 2.5.0
Scala
1
star
71

ytui-music-nix

Nixified ytui-music client
Nix
1
star
72

running

A personal running program to train for a 10k run and a half marathon
1
star
73

scalaz-streams-playground

Playing around with Scalaz Streams
Scala
1
star
74

di-macwire-sample

Example of Dependency Injection in Scala using Macwire.
Scala
1
star
75

haskell-sample-box

Collection of useful stuff learned day by day.
Haskell
1
star
76

amqp-demo

Haskell
1
star
77

streaming-playground

Haskell
1
star
78

neovim-coc

My previous NeoVim configuration with CoC for LSP support
Vim Script
1
star
79

steward

Run Scala Steward on my repos
1
star
80

cake-pattern-sample

Example of Cake pattern implementation in Scala.
Scala
1
star
81

slides

1
star
82

redis-scala-script

Redis massive data update with transactions built on top of SCRedis.
Scala
1
star
83

servant-api

Simple API built using Servant
Haskell
1
star
84

functional-data-validation

Functional Data Validation in Haskell (Examples of my talk in Eindhoven, NL on June 2017)
Haskell
1
star
85

bazecor-nix

Nix flake for Bazecor
Nix
1
star
86

transient-demo

Some computational examples using the Transient library
Haskell
1
star
87

play-web-sockets

Example using Web Sockets in Play! Framework 2
Scala
1
star
88

phantom-ssl-extension

Extension for the Cassandra client phantom supporting SSL connections and username / password authentication for Java 8.
Scala
1
star
89

pipes-concurrency-tutorial

Pipes Concurrency Tutorial personal notes
Haskell
1
star
90

pipes-tutorial

Haskell Pipes Tutorial personal notes
Haskell
1
star
91

link-checker-akka

Example of a link checker using the actor model of Akka provided by Roland Kuhn in the Reactive Programming course on Coursera.
Scala
1
star
92

events-processor-prototype

Reactive consumer of events coming from a Rabbit MQ queue using Akka streams.
Scala
1
star
93

bash-scripting

Generic Bash Scripting & Utilities that I've been creating for repetitive tasks.
Shell
1
star
94

summoner-benchmarks

Source code for the benchmarks published in my blog
Scala
1
star
95

mtl-generic-reader

Exploring the idea of deriving `cats.mtl.ApplicativeAsk` instances for `zio.Task` and `cats.effect.IO` in a principled way.
Scala
1
star
96

gvolpe-website

Source code to generate the static website https://gvolpe.com/
JavaScript
1
star
97

computation-expressions-demo

Simple comparison of the use of the standard Scala Future and the scala async library for asynchronous computation.
Scala
1
star
98

monocle-lenses

Using Monocle lenses to modify nested properties in case classes
Scala
1
star
99

medellin-talk

Haskell
1
star