Skip to content

Commit 1a3a80d

Browse files
docs: adrs decisions (#22)
* feat(adrs): decisions meeting 001 * chore: added bullet points * chore(001): updated context text * chore(001): updated name text * feat(002): added adr for meeting 002 * feat: adr meeting 003 usage and billing * feat: adr meeting 003 usage and billing * feat: adr meeting 003 usage and billing * feat: adr meeting 004 users * chore: updated context meeting 001 * Update adrs/001-organization-payments.md Co-authored-by: Felipe Gonzalez <[email protected]> * Update adrs/001-organization-payments.md Co-authored-by: Felipe Gonzalez <[email protected]> * Update adrs/003-usage-billing.md Co-authored-by: Felipe Gonzalez <[email protected]> * Update adrs/003-usage-billing.md Co-authored-by: Felipe Gonzalez <[email protected]> --------- Co-authored-by: Felipe Gonzalez <[email protected]>
1 parent 6c0328d commit 1a3a80d

4 files changed

+123
-0
lines changed

adrs/001-organization-payments.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Organization and Payments
2+
3+
## Context
4+
5+
In the current Demeter platform, it is necessary to create an organization to link projects and users.
6+
7+
## Decision
8+
9+
- Organization
10+
11+
The organization will be deprecated but the fabric will have support for it in legacy driven just for compatibility.
12+
13+
- Payments
14+
15+
Stripe integration will happen just when the user wants to upgrade the plan(tier), so the user will be redirected to a screen to set the payment and the stripe will be linked to the project. In fabric, the Stripe integration will be into the payment driven where in the future new payment methods can be offered.

adrs/002-stripe.md

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Stripe
2+
3+
## Context
4+
5+
The way that the user can configure the payment method.
6+
7+
## Decision
8+
9+
- Payment Setup
10+
11+
Payment is associated to a project. One payment method per project. Stripe Intent will be defined in the user interface
12+
13+
- Flows
14+
15+
Sequence diagrams need to be created for each flow.
16+
17+
```
18+
ACCOUNT
19+
- A new project will be created by default
20+
* account creation
21+
22+
PROJECT
23+
- A default Stripe customer is created when the user create a project by default
24+
* project creation
25+
* project deletion
26+
* project API key creation
27+
* project API key deletion
28+
29+
PORT
30+
* port creation
31+
* port deletion
32+
* port usage and details
33+
34+
TIERS
35+
* tiers upgrade
36+
* tiers downgrade
37+
38+
PAYMENTS
39+
- Payment is associated to a project
40+
- One payment method per project
41+
- Stripe Intent will be defined in the user interface
42+
* payment method updating
43+
* payment method deletion
44+
* payment transactions Webhook (stripe/ada)
45+
46+
USERS
47+
* users invitation to a project
48+
* users deletion from a project
49+
```

adrs/003-usage-billing.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Usage and billing
2+
3+
## Context
4+
5+
Each cluster needs to send the usage metrics of each user. Then, the main cluster will aggregate the data and make the invoice, integrating it with the payment gateway.
6+
7+
## Decision
8+
9+
Each cluster will be running a usage driver to collect the usage data and send them as an event to the main cluster through the queue. In the main cluster, an event driver will be running and it will capture the event and persist in the cache db. The invoice will be triggered by another driver(billing) and it will be executed once a month, the payment gateway needs to be called to generate the invoice.
10+
11+
- Usage
12+
This needs to be executed in each cluster and triggered once an hour, integrating with Prometheus to collect metrics of data usage and send an event to the queue.
13+
14+
- Billing
15+
The billing will be executed once a month in the main cluster, getting user usage in the cache of all clusters, and integrating with a payment gateway to make the invoice.
16+
17+
## Rules
18+
19+
- Usage driver(daemon)
20+
- each cluster will run this driver and send report usage on Kafka periodically
21+
- the cache driver will receive the event and persist the usage by cluster
22+
23+
- Billing driver(management/cron)
24+
- it will execute one time per month to send an invoice
25+
- it will use the usage in the cache to calculate the amount to billing
26+
- Fetch all projects
27+
- Fetch all ports of a project
28+
- Fetch usage by port
29+
- Integrate with payment gateway(send invoice)

adrs/004-users.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Users
2+
3+
## Context
4+
5+
A new user needs to access demeter platform.
6+
7+
## Decision
8+
9+
The oauth platform will handle the authentication.
10+
11+
- Creation
12+
The user needs to log in using the oauth. The oauth token will be sent to the user creation RPC and the user domain will validate the user data, integrating with oauth to get the user profile data and send an event to the queue creating the account.
13+
14+
- Invite
15+
When a user invites another user to a `project`, a temporary token is created and sent to the new user's email. The new user will click on the link and if there's not an account, the user domain will create the account following the user creation flow. Then, an event is sent to link the new user to that project.
16+
17+
## Rules
18+
19+
- Users creation
20+
- Users invitation to a project
21+
- Invitation needs to be accepted
22+
- Generation random token
23+
- Integrate with AWS to send the email(Email driven)
24+
- Send an invitation event
25+
- Event driver will save the cache invitation event
26+
- Users accept invite
27+
- Validate the token getting from the cache
28+
- Validate if the user exists
29+
- Send an event to link the user to the project
30+
- Users deletion from a project

0 commit comments

Comments
 (0)