Skip to content

Web and REST API made with Ruby on Rails + solid-process

Notifications You must be signed in to change notification settings

solid-process/solid-rails-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

1 Commit
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

MENU README | How to run locally | REST API doc | Web app screenshots

✨ Solid Rails App

Web and REST API application made with Ruby on Rails + solid-process.

πŸ“š Table of contents

πŸ“’ Disclaimer

The goal of this project is to demonstrate how the solid-process can be gradually integrated into a Rails application.

It's important to note that the Rails Way and the Solid Process are not mutually exclusive. You can implement the solid-process where it best fits your needs, allowing both approaches to coexist harmoniously and beneficially.

That said, this is not an invitation, guide, or recommendation to implement all applications in the more complex manner demonstrated in this project.

I (Rodrigo Serradura) believe in a pragmatic approach using the best tool for the job. The vanilla-rails version is excellent and capable of handling all the complexity within this system's scope.

Therefore, view this project as a showcase of what the solid-process gem can achieve. You may discover valuable tools to add to your toolbox. Enjoy! ✌️😊

πŸ™Œ Repository branches

This repository has twelve branches that represent the application's evolution.

The 2.## branches are percentages that indicate gradual progress toward the next version.

Architectural patterns are applied according to the following criteria:

  • 0 to 2.99 , stays on the Layered Architecture.
  • 3 onwards, applies the Ports and Adapters (Hexagonal) Architecture.

Click in the arrows to see the summary of each branch:

Branch LOC / GRADE
Β Β Β Β vanilla-rails

It is the base version that implements a web application and REST API using the Rails Way approach. The business rules are mainly implemented around the ActiveRecord lifecycle/features (normalization, validation, callbacks, and macros), which the application controllers orchestrate.

However, with each new version, these models and controllers will have fewer responsibilities as we implement processes to wrap and orchestrate the core business logic.

Note: Three concepts differ from a traditional CRUD. Are they:

  1. Account Member: This PORO performs access/scope control in the accounts.

  2. User Registration: This operation consists of creating the user and its account, defining the user as the account's owner, creating the user API token, and sending an email to confirm the user email.

  3. User API token: This implementation is based on the prefixed API token concept, which consists of a short (public) and a long (encrypted) token.

Version samples:

1434 / 94.06
Β Β Β Β solid-process-0

Introduces the solid-process gem and implements the application's first process (User::Registration).

It shows the low learning curve required to use gem features. Although basic, this implementation removes callbacks from the User model, as the process will orchestrate all account creation within a transaction and send a confirmation email after its commit.

Version samples:

1459 / 94.08
Β Β Β Β solid-process-1

Defines types for input attributes and uses steps to perform all operations within a transaction block that will perform a rollback if any step returns a failure. After the commit, the confirmation email is sent, and the created user is exposed in the User::Registration result.

Note: In this version, the process input (User::Registration::Input) is used in the view forms, causing the view to be coupled to it and no longer to the User model (ActiveRecord).

Version samples:

1481 / 93.98
Β Β Β Β solid-process-2.00

From version 2 onwards, all contexts (Account and User) implement their operations through processes. Because of this, it becomes possible to create a composition of processes where they are defined as dependencies that will be orchestrated through their steps.

Notes:

  1. UserToken becomes hugely lean because the model's behavior has been diluted into different components within the User::Token namespace. I am highlighting User::Token::Entity, a PORO capable of representing a token without the need to interact with the database (ActiveRecord model).

  2. New features are added to input blocks, such as data normalization and validation.

Version samples:

1866 / 93.78
Β Β Β Β solid-process-2.20

If we analyze the previous version, we will see that the ActiveRecord models are not defined within the context of the user or account.

What this version does is rename the ActiveRecord models as Record (for this, it is necessary to define the table_name and class_name in the classes) within the Account and User namespaces (they become mere modules since before both were also an ActiveRecord model)

Version samples:

1894 / 93.74
Β Β Β Β solid-process-2.40

The vanilla-rails summary presents the Account::Member as one of the application's most important components. It is responsible for controlling access to the accounts.

It turns out that although it is a PORO (Solid::Model), its implementation also contains queries (ActiveRecord stuff).

This version introduces Account::Member::Repository to enhance the separation of concerns. This new component/pattern will serve as an abstraction layer for the data source, allowing queries to be moved to it and making the Account::Member implementation more straightforward and concise.

Version samples:

1904 / 93.80
Β Β Β Β solid-process-2.60

Since version 2.40 introduces the Repository pattern, what would happen if all processes/contexts started using this pattern?

This version answers this question in practice by introducing a repository for each context and forcing the application to start using them instead of directly using the ActiveRecord models.

Version samples:

2144 / 91.14
Β Β Β Β solid-process-2.80

Due to the addition of repositories in the previous version, it is evident that User::Registration and User::AccountDeletion have methods in their repositories that use an Account::Record. In other words, it is clear that User::Record is tightly coupled to Account::Record and should not be.

To solve this, a new account_members table (and model Account::Member::Record) is created with just one column (uuid), and a column uuid is also added to the user's table.

While we won't be using a foreign key, the plan is to start referencing the users' UUID in the account members table. This approach will allow us to transfer several associations from the User::Record model to Account::Member::Record, effectively decoupling the User and Account contexts. This will significantly enhance the system's orthogonality, minimizing the risk of changes in one context affecting the other.

Version samples:

2234 / 91.34
Β Β Β Β solid-process-2.95

Once the contexts are more decoupled, the next step is to make the processes start to expose and receive only entities (POROS) and no longer ActiveRecord objects.

With this approach, each context gains enhanced control over side effects, be it writing or reading. All interactions with the database/ActiveRecord are now wrapped within the repositories, ensuring a more controlled and predictable system behavior.

Version samples:

2365 / 91.50
Β Β Β Β solid-process-2.99

This version transforms the User and Account modules into facades. Processes and repositories are now exposed through simple methods. Another benefit is that shared and repeated behavior (such as instantiating entities) can be done through the facade, eliminating duplication and abstracting this complexity from the entry points.

Version samples:

2474 / 92.40
Β Β Β Β solid-process-3

This version implements the Ports and Adapters architectural pattern (Hexagonal Architecture).

In version 2.99, the account and user namespaces encapsulated the core business logic. They began to receive and expose objects that belonged to them, in other words, objects that did not directly relate to the framework (Rails). Because of this, it becomes feasible to isolate this core outside the app folder; for this reason, these components were moved to lib/core. So, through a new lib, Solid::Adapters was added, it is possible to use initializers to plug the adapters defined in the app folder (framework side) into the core. This way, it becomes protected as the app uses/implements its ports (interfaces).

Version samples:

2527 / 93.42
Β Β Β Β solid-process-4

This version makes usage of another Solid::Adapters feature, the interface mechanism to strengthen the contracts between the core and the application. Because of this, the core can establish and demand its contracts (ports).

Note: In case of a breach of contract, the system will raise an exception indicating what was compromised and needs to be fixed.

Version samples:

2947 / 93.42

The following commands were used to generate the LOC and GRADE reports:

  • LOC (lines of code): bin/rails stats
  • GRADE (code quality): bin/rails rubycritic

⬆ back to top

🌟 Highlights of what solid-process can bring to you/your team

  1. The solid-process uses Rails's known components, such as ActiveModel attributes, validations, callbacks, and more. This way, you can use the same tools you are already familiar with.

  2. A way for representing/writing critical system operations. It feels like having code that documents itself. You can see the operation's steps, inputs, outputs, side effects, and more in one place.

  3. A less coupled codebase, given that this structure encourages the creation of cohesive operations (with a specific purpose), thus reducing the concentration of logic in ActiveRecord models and/or controllers.

  4. Standardization of instrumentation and observability of what occurs within each process (Implement a listener to do this automatically and transparently for the developer [1]). This will help you better understand what is happening within the system.

    User::Registration event logs sample (output from solid-process-2.00 branch)
    #0 User::Registration
    * Given(email:, password:, password_confirmation:)
    * Continue() from method: check_if_email_is_taken
    * Continue(user:) from method: create_user
    * Continue(account:) from method: create_user_account
      #1 Account::Task::List::Creation
       * Given(name:, inbox:, account:)
       * Continue(task_lists:) from method: fetch_task_lists_relation
       * Continue() from method: validate_uniqueness_if_inbox
       * Continue(task_list:) from method: create_task_list
       * Success(:task_list_created, task_list:)
    * Continue() from method: create_user_inbox
      #2 User::Token::Creation
       * Given(user:, token:)
       * Continue() from method: validate_token
       * Continue() from method: check_token_existance
       * Continue(token:) from method: create_token_if_not_exists
       * Success(:token_created, token:)
    * Continue() from method: create_user_token
    * Continue() from method: send_email_confirmation
    * Success(:user_registered, user:)
    
  5. The file structure reveals the system's critical processes, making it easier to understand its behavior and find where to make changes. Check out the app/models directory.

    app/models file structure (output from solid-process-2.00 branch)
    app/models
    β”œβ”€β”€ account
    β”‚  β”œβ”€β”€ member.rb
    β”‚  └── task
    β”‚     β”œβ”€β”€ item
    β”‚     β”‚  β”œβ”€β”€ completion.rb
    β”‚     β”‚  β”œβ”€β”€ creation.rb
    β”‚     β”‚  β”œβ”€β”€ deletion.rb
    β”‚     β”‚  β”œβ”€β”€ finding.rb
    β”‚     β”‚  β”œβ”€β”€ incomplete.rb
    β”‚     β”‚  β”œβ”€β”€ listing.rb
    β”‚     β”‚  └── updating.rb
    β”‚     └── list
    β”‚        β”œβ”€β”€ creation.rb
    β”‚        β”œβ”€β”€ deletion.rb
    β”‚        β”œβ”€β”€ finding.rb
    β”‚        β”œβ”€β”€ listing.rb
    β”‚        └── updating.rb
    β”œβ”€β”€ user
    β”‚  β”œβ”€β”€ account_deletion.rb
    β”‚  β”œβ”€β”€ authentication.rb
    β”‚  β”œβ”€β”€ email.rb
    β”‚  β”œβ”€β”€ password
    β”‚  β”‚  β”œβ”€β”€ resetting.rb
    β”‚  β”‚  β”œβ”€β”€ sending_reset_instructions.rb
    β”‚  β”‚  └── updating.rb
    β”‚  β”œβ”€β”€ password.rb
    β”‚  β”œβ”€β”€ registration.rb
    β”‚  └── token
    β”‚     β”œβ”€β”€ creation.rb
    β”‚     β”œβ”€β”€ entity.rb
    β”‚     β”œβ”€β”€ long_value.rb
    β”‚     β”œβ”€β”€ refreshing.rb
    β”‚     └── short_value.rb
    └── ...

⬆ back to top

πŸ€” How can we be aware of critical system processes?

Adding a new folder under app is more common to focus on different patterns, such as services, operations, queries, etc. However, because of this idea of ​​putting processes inside the app/models directory, it can be argued that knowing what and where they are will be challenging.

To address this need, you can use the below command to list all existing processes in the application (this task is available on all solid-process-* branches).

bin/rails solid:processes (output from solid-process-2.00 branch)
Lines:
  27 ./app/models/user/token/refreshing.rb
  37 ./app/models/user/token/creation.rb
  31 ./app/models/user/password/updating.rb
  30 ./app/models/user/password/sending_reset_instructions.rb
  37 ./app/models/user/password/resetting.rb
  23 ./app/models/user/authentication.rb
  20 ./app/models/user/account_deletion.rb
  84 ./app/models/user/registration.rb
  54 ./app/models/account/task/item/updating.rb
  15 ./app/models/account/task/item/deletion.rb
  27 ./app/models/account/task/item/listing.rb
  15 ./app/models/account/task/item/incomplete.rb
  25 ./app/models/account/task/item/creation.rb
  15 ./app/models/account/task/item/completion.rb
  23 ./app/models/account/task/item/finding.rb
  29 ./app/models/account/task/list/updating.rb
  15 ./app/models/account/task/list/deletion.rb
  17 ./app/models/account/task/list/listing.rb
  40 ./app/models/account/task/list/creation.rb
  23 ./app/models/account/task/list/finding.rb
  587 total

Files: 20

⬆ back to top

πŸ‘‹ About

Rodrigo Serradura created this project. He is the creator of Solid Process, among other projects similar to this, such as "from fat controllers to use cases" and "todo-bcdd". These other two were made with an ecosystem before solid-process (u-case, kind - which will be archived).

The primary goal of this project is to create an application that reflects the new ecosystem's capabilities, a product of collective learning over the years. This learning journey was enriched by technical knowledge and the invaluable contributions of the Ruby/Rails community (with special mention to the Ada.rb community).

Within the Rails community, we have people at different career stages and companies in different phases (validating idea, refining, scaling product); the objective of Solid Process is to be able to follow each of these stages (whether of people or companies that are made up of people). Rails is notoriously known for maximizing development speed. With this in mind, the idea is to have a set of gems that adhere to its principles and values ​​and add value when implementing business/domain logic.

In other words, the gem was created to implement simple services/form objects and even something more complex and decoupled from the framework, such as ports and adapters. All this without fighting and harming the use of Rails. On the contrary, the objective is the difficult task of adding to what is already extremely good (Rails rocks!!! 🀘😎)

⬆ back to top

Releases

No releases published

Packages