SlideShare a Scribd company logo
Onion Architecture
And The Blog
Making a blog (and having fun while doing it)
Who am I
Product Developer - Systems Architect - Freelancer - Development Manager
Past experience
Senior Developer for Cleverbug
Lecturer at the Digital Skills Academy
Director of Tercet, software development consultancy
Current position
Software Development Manager for OliveMedia
Barry O Sullivan
This talk
We’re going to …
● Talk about the blog and it’s features
● look at the architecture
● look at the services we used
● look at some Laravel 5.1 code
● Show you how to publish a blog post
The Blog
What do we want it to do?
What’s is its purpose?
Our goals were to
● Host content from the community
● Make it easy for the community to contribute content
● Keep it simple and clean
● Use existing tools and libraries as much as possible
● Showcase some design best practice (as we see it anyway)
● Have some fun making it
The features
So to we decided on some simple features
● Articles are displayed as a list in the blog section
● Articles can be clicked and viewed individually
● Articles have unique urls (for SEO)
● Articles are written in markdown
● Articles are part of the repo
● People can send us articles via pull request
We had a lot more features, but these were dropped, as they increased the
scope and didn’t actually add a lot of value.
The architecture
We decided to use an Onion architecture
(Also known as Ports and Adapters or *Hexagonal Architecture)
Why we choose it:
● Clean separation of concerns
● Easy to maintain
● Encourages CQRS
● Industry best practice
● It’s just really nice
* A very misleading name, programmers are the worst at naming things
The Domain
The heart of the application.
Contains anything that’s business rule related
Keep your business logic completely separated
from your storage/service/controller logic.
Doesn’t care about the technical details, contains
only what’s necessary to validate business rules.
Made up off
● ValueObjects
● Entities
● RepositoryInterfaces
The API
Entry point for the domain.
Uses the domain to perform business operations.
Acts as the interface between the “Application”
and the business logic.
Ensures that implementation details don’t bleed
out into your controllers,
eg. database logic, presentation logic
Made up off
● Commands
● Queries
The Infrastructure
Contains the technical details about specific
technologies. Eg, how data is accessed and
where data is stored
(The framework is technically infrastructure)
Three types of infrastructure
● Controllers
● Data Storage (Database/FileSystem)
● External Services (Package, API, etc. . .)
How layers interact
A key part of an onion architecture is that outer
layers can use inner layers, but inner layers
have no knowledge of outer layers.
This means that the infrastructure can see
ValueObjects, but ValueObjects have no
knowledge of the Database.
Forces you to keep things simple and to put logic
where it belongs, no bleeding of details that will
make future changes difficult.
Building the Blog
The implementation is split into 3 sections
● The domain
● The API
● The Infrastructure
○ Services
○ Storage
○ Controllers
The Blog Domain
A blog post has the following business rules
● A blog must have a title, an author, an ID and content
● Title, author and content cannot be blank
● Publish date cannot be in the future
That leaves us with the following value objects that enforce business rules
Post, ID, Title, Author, PublishDate, Content
We don’t have any other business rules for now, so we left it at that
The Blog Domain (2)
The next step is the definition of the repo, for storing and retrieving posts.
The repo is an interface, and it defines how we expect our repository to behave,
regardless of what implementation we decide to go for.
We do this because it forces us to keep it generic, clean and easy to test. It
also gives us the option of switching to another repo type (Which we will)
The interface has three methods
store(Post $post)
fetch(UUID $id)
all()
The Blog API
Next we have the API, this is the entry point for our app, and it offers all the functionality we want to
expose. It’s CQRS, which just means we have two types of operations
We offer the following command and queries
Commands
CreatePost
Queries
Post
PostList
We’re using Laravel 5.1s commands and command bus for this, as it has the IOC built in. This means
we only ever use interfaces at this level and we let laravel handle the injection of our concrete
implementations of our repository.
Infrastructure - Services
Why reinvent the wheel when someone is giving you a jet pack for free?
We used the following packages to make our job easier
Laravel 5.1 - It’s so hot right now (and it’s really powerful)
FlySystem -Generic API for multiple storage engines
CommonMark -Convert markdown into HTML, extensible
UUID - UUIDs, because they’re actually really handy
Carbon -Improved version of PHPs DateTime classes
Infrastructure - Storage
We create a concrete class that implements the PostRepo interface.
Since they’re part of the repo, they’re part of the file system.
They’re stored by ID, and are represented by two files
blog/
e09135f2-ade1-4c25-9527-7ecbdc0d7c15/
details.json (title, author, date)
markdown.md (Actual content)
When we create a post, this structure is created
When we fetch a post, it reads from the file system and parses this data,
turning it into a post object.
Infrastructure - Controllers
Controllers are our access point to the application from an external sources
In our case, HTTP controllers and Artisan commands
HTTP to access content (It’s a website)
Artisan to create posts (We are developers after all)
In the HTTP controllers, we load CommonMark and convert the content into
HTML.
This is an important, we made the decision that rendering a post and it’s format
had nothing to do with the domain.
The Code
Let’s have a look at some code
Just a quick look so you can see
what we’re talking about
Creating a post
We made this really easy.
Open up a terminal and go to the root folder
Run the following
php artisan post:make “Post title” barryosull
This will output the ID of the post, so you can go the files and edit them. Visit
the blog on your local machine and you’ll see the post.
*barryosull is my github handle, use your own
Quick additions
At the beginning we decided to use GitHub usernames in the author field.
We then saw that best practice was to have the author’s avatar beside the post.
How hard would it be to add?
Well, not hard, with a little bit of JS in the front-end, we
connected to the public Github API and fetched their avatar.
15mins work, a better experience for visitor and our contributors
Next Steps
What will we do next?
● Cache the posts in Redis (faster)
● Unit tests
● Tags for blog posts
● View posts by tag
● View posts by author
● Turn the blog into a laravel package
● Spruce up the design
● Events for broadcasting domain changes
● Projections for handling views of data
● Write more content!
We need your content
Guess what? We need you!
Want to become an active member in the community?
Want to be part of an active github project?
Want to build up your profile?
Want to mess around with Laravel 5.1?
Want to write about your experiences?
Then write a post and send it on!
Thanks for listening
Now for questions.
Ask me any question you like!
. . . except for my pin number
. . . or my password
. . . ok, please just stick to questions about the talk
Barry O Sullivan - barry@tercet.io - http://barryosullivan.me

More Related Content

PPTX
Onion architecture
PDF
サイボウズの CI/CD 事情 〜Jenkins おじさんは CircleCI おじさんにしんかした!〜
PDF
ソーシャルゲーム案件におけるDB分割のPHP実装
PDF
概念モデルって難しいですよね
PDF
MySQL 5.7 トラブルシューティング 性能解析入門編
PDF
ブレソルでテラバイト級データのALTERを短時間で終わらせる
PDF
コンテナ環境でJavaイメージを小さくする方法!
PDF
vSphere APIs for performance monitoring
Onion architecture
サイボウズの CI/CD 事情 〜Jenkins おじさんは CircleCI おじさんにしんかした!〜
ソーシャルゲーム案件におけるDB分割のPHP実装
概念モデルって難しいですよね
MySQL 5.7 トラブルシューティング 性能解析入門編
ブレソルでテラバイト級データのALTERを短時間で終わらせる
コンテナ環境でJavaイメージを小さくする方法!
vSphere APIs for performance monitoring

What's hot (20)

PDF
MySQL 5.7にやられないためにおぼえておいてほしいこと
PDF
DDD 20121106 SEA Forum November
PDF
MySQL Database Architectures - 2020-10
PDF
超実践 Cloud Spanner 設計講座
PDF
DockerとKubernetesをかけめぐる
PDF
PostgreSQLの関数属性を知ろう
PDF
IoT のシナリオを変える Azure SQL Edge
PDF
Dockerライフサイクルの基礎 地雷を踏み抜けろ!
PDF
Cyber weapons 1632578286
PDF
【BS4】時は来たれり。今こそ .NET 6 へ移行する時。
PPTX
Management 3.0 デレゲーションと エンパワーメント
PPTX
AWS社員による怒涛のLTチャレンジ! なかなか飛行機に乗れてないので、Ruby on Jetsで飛んでみよう!
PPTX
PDF
さいきんの InnoDB Adaptive Flushing (仮)
PDF
ドメインロジックに集中せよ 〜ドメイン駆動設計 powered by Spring
PDF
メルカリの開発スピードと品質を支える Selenium on Azure Kubernetes Service
PDF
twMVC#44 讓我們用 k6 來進行壓測吧
PDF
MySQL Performance Best Practices
PDF
MySQLバックアップの基本
PDF
中の下のエンジニアを脱出するための仕事術
MySQL 5.7にやられないためにおぼえておいてほしいこと
DDD 20121106 SEA Forum November
MySQL Database Architectures - 2020-10
超実践 Cloud Spanner 設計講座
DockerとKubernetesをかけめぐる
PostgreSQLの関数属性を知ろう
IoT のシナリオを変える Azure SQL Edge
Dockerライフサイクルの基礎 地雷を踏み抜けろ!
Cyber weapons 1632578286
【BS4】時は来たれり。今こそ .NET 6 へ移行する時。
Management 3.0 デレゲーションと エンパワーメント
AWS社員による怒涛のLTチャレンジ! なかなか飛行機に乗れてないので、Ruby on Jetsで飛んでみよう!
さいきんの InnoDB Adaptive Flushing (仮)
ドメインロジックに集中せよ 〜ドメイン駆動設計 powered by Spring
メルカリの開発スピードと品質を支える Selenium on Azure Kubernetes Service
twMVC#44 讓我們用 k6 來進行壓測吧
MySQL Performance Best Practices
MySQLバックアップの基本
中の下のエンジニアを脱出するための仕事術
Ad

Similar to Onion Architecture and the Blog (20)

PDF
Functional testing with behat
PDF
Advanced web application architecture - Talk
PDF
PDF
MuleSoft Manchester Meetup #3 slides 31st March 2020
PDF
Evolutionary Design Solid
PDF
Android meetup
DOCX
Company Visitor Management System Report.docx
PPTX
PDF
React fristy day learn basic NM_Day01.pdf
PDF
Microsoft SharePoint in the Workplace
PPTX
Guidelines to understand durable functions with .net core, c# and stateful se...
PDF
Code igniter - A brief introduction
PDF
Broadcom CA SDM overview - Introduction to BOP
PDF
PDF
Getting started contributing to Apache Spark
PPTX
Professionalizing the Front-end
PDF
Code for Startup MVP (Ruby on Rails) Session 1
PDF
Strategies and Tips for Building Enterprise Drupal Applications - PNWDS 2013
PPTX
Dev Ops for systems of record - Talk at Agile Australia 2015
PDF
Has serverless adoption hit a roadblock?
Functional testing with behat
Advanced web application architecture - Talk
MuleSoft Manchester Meetup #3 slides 31st March 2020
Evolutionary Design Solid
Android meetup
Company Visitor Management System Report.docx
React fristy day learn basic NM_Day01.pdf
Microsoft SharePoint in the Workplace
Guidelines to understand durable functions with .net core, c# and stateful se...
Code igniter - A brief introduction
Broadcom CA SDM overview - Introduction to BOP
Getting started contributing to Apache Spark
Professionalizing the Front-end
Code for Startup MVP (Ruby on Rails) Session 1
Strategies and Tips for Building Enterprise Drupal Applications - PNWDS 2013
Dev Ops for systems of record - Talk at Agile Australia 2015
Has serverless adoption hit a roadblock?
Ad

Recently uploaded (20)

PDF
medical staffing services at VALiNTRY
PPTX
CHAPTER 2 - PM Management and IT Context
PPTX
ai tools demonstartion for schools and inter college
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PDF
Nekopoi APK 2025 free lastest update
PDF
top salesforce developer skills in 2025.pdf
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PPTX
Odoo POS Development Services by CandidRoot Solutions
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PPTX
Introduction to Artificial Intelligence
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
medical staffing services at VALiNTRY
CHAPTER 2 - PM Management and IT Context
ai tools demonstartion for schools and inter college
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PTS Company Brochure 2025 (1).pdf.......
Wondershare Filmora 15 Crack With Activation Key [2025
How to Migrate SBCGlobal Email to Yahoo Easily
Nekopoi APK 2025 free lastest update
top salesforce developer skills in 2025.pdf
Upgrade and Innovation Strategies for SAP ERP Customers
Odoo POS Development Services by CandidRoot Solutions
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Introduction to Artificial Intelligence
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Design an Analysis of Algorithms II-SECS-1021-03
VVF-Customer-Presentation2025-Ver1.9.pptx
2025 Textile ERP Trends: SAP, Odoo & Oracle

Onion Architecture and the Blog

  • 1. Onion Architecture And The Blog Making a blog (and having fun while doing it)
  • 2. Who am I Product Developer - Systems Architect - Freelancer - Development Manager Past experience Senior Developer for Cleverbug Lecturer at the Digital Skills Academy Director of Tercet, software development consultancy Current position Software Development Manager for OliveMedia Barry O Sullivan
  • 3. This talk We’re going to … ● Talk about the blog and it’s features ● look at the architecture ● look at the services we used ● look at some Laravel 5.1 code ● Show you how to publish a blog post
  • 4. The Blog What do we want it to do? What’s is its purpose? Our goals were to ● Host content from the community ● Make it easy for the community to contribute content ● Keep it simple and clean ● Use existing tools and libraries as much as possible ● Showcase some design best practice (as we see it anyway) ● Have some fun making it
  • 5. The features So to we decided on some simple features ● Articles are displayed as a list in the blog section ● Articles can be clicked and viewed individually ● Articles have unique urls (for SEO) ● Articles are written in markdown ● Articles are part of the repo ● People can send us articles via pull request We had a lot more features, but these were dropped, as they increased the scope and didn’t actually add a lot of value.
  • 6. The architecture We decided to use an Onion architecture (Also known as Ports and Adapters or *Hexagonal Architecture) Why we choose it: ● Clean separation of concerns ● Easy to maintain ● Encourages CQRS ● Industry best practice ● It’s just really nice * A very misleading name, programmers are the worst at naming things
  • 7. The Domain The heart of the application. Contains anything that’s business rule related Keep your business logic completely separated from your storage/service/controller logic. Doesn’t care about the technical details, contains only what’s necessary to validate business rules. Made up off ● ValueObjects ● Entities ● RepositoryInterfaces
  • 8. The API Entry point for the domain. Uses the domain to perform business operations. Acts as the interface between the “Application” and the business logic. Ensures that implementation details don’t bleed out into your controllers, eg. database logic, presentation logic Made up off ● Commands ● Queries
  • 9. The Infrastructure Contains the technical details about specific technologies. Eg, how data is accessed and where data is stored (The framework is technically infrastructure) Three types of infrastructure ● Controllers ● Data Storage (Database/FileSystem) ● External Services (Package, API, etc. . .)
  • 10. How layers interact A key part of an onion architecture is that outer layers can use inner layers, but inner layers have no knowledge of outer layers. This means that the infrastructure can see ValueObjects, but ValueObjects have no knowledge of the Database. Forces you to keep things simple and to put logic where it belongs, no bleeding of details that will make future changes difficult.
  • 11. Building the Blog The implementation is split into 3 sections ● The domain ● The API ● The Infrastructure ○ Services ○ Storage ○ Controllers
  • 12. The Blog Domain A blog post has the following business rules ● A blog must have a title, an author, an ID and content ● Title, author and content cannot be blank ● Publish date cannot be in the future That leaves us with the following value objects that enforce business rules Post, ID, Title, Author, PublishDate, Content We don’t have any other business rules for now, so we left it at that
  • 13. The Blog Domain (2) The next step is the definition of the repo, for storing and retrieving posts. The repo is an interface, and it defines how we expect our repository to behave, regardless of what implementation we decide to go for. We do this because it forces us to keep it generic, clean and easy to test. It also gives us the option of switching to another repo type (Which we will) The interface has three methods store(Post $post) fetch(UUID $id) all()
  • 14. The Blog API Next we have the API, this is the entry point for our app, and it offers all the functionality we want to expose. It’s CQRS, which just means we have two types of operations We offer the following command and queries Commands CreatePost Queries Post PostList We’re using Laravel 5.1s commands and command bus for this, as it has the IOC built in. This means we only ever use interfaces at this level and we let laravel handle the injection of our concrete implementations of our repository.
  • 15. Infrastructure - Services Why reinvent the wheel when someone is giving you a jet pack for free? We used the following packages to make our job easier Laravel 5.1 - It’s so hot right now (and it’s really powerful) FlySystem -Generic API for multiple storage engines CommonMark -Convert markdown into HTML, extensible UUID - UUIDs, because they’re actually really handy Carbon -Improved version of PHPs DateTime classes
  • 16. Infrastructure - Storage We create a concrete class that implements the PostRepo interface. Since they’re part of the repo, they’re part of the file system. They’re stored by ID, and are represented by two files blog/ e09135f2-ade1-4c25-9527-7ecbdc0d7c15/ details.json (title, author, date) markdown.md (Actual content) When we create a post, this structure is created When we fetch a post, it reads from the file system and parses this data, turning it into a post object.
  • 17. Infrastructure - Controllers Controllers are our access point to the application from an external sources In our case, HTTP controllers and Artisan commands HTTP to access content (It’s a website) Artisan to create posts (We are developers after all) In the HTTP controllers, we load CommonMark and convert the content into HTML. This is an important, we made the decision that rendering a post and it’s format had nothing to do with the domain.
  • 18. The Code Let’s have a look at some code Just a quick look so you can see what we’re talking about
  • 19. Creating a post We made this really easy. Open up a terminal and go to the root folder Run the following php artisan post:make “Post title” barryosull This will output the ID of the post, so you can go the files and edit them. Visit the blog on your local machine and you’ll see the post. *barryosull is my github handle, use your own
  • 20. Quick additions At the beginning we decided to use GitHub usernames in the author field. We then saw that best practice was to have the author’s avatar beside the post. How hard would it be to add? Well, not hard, with a little bit of JS in the front-end, we connected to the public Github API and fetched their avatar. 15mins work, a better experience for visitor and our contributors
  • 21. Next Steps What will we do next? ● Cache the posts in Redis (faster) ● Unit tests ● Tags for blog posts ● View posts by tag ● View posts by author ● Turn the blog into a laravel package ● Spruce up the design ● Events for broadcasting domain changes ● Projections for handling views of data ● Write more content!
  • 22. We need your content Guess what? We need you! Want to become an active member in the community? Want to be part of an active github project? Want to build up your profile? Want to mess around with Laravel 5.1? Want to write about your experiences? Then write a post and send it on!
  • 23. Thanks for listening Now for questions. Ask me any question you like! . . . except for my pin number . . . or my password . . . ok, please just stick to questions about the talk Barry O Sullivan - barry@tercet.io - http://barryosullivan.me