Creating a custom Django Middleware

Andrea Grandi
DJANGO
MIDDLEWARE
Creating a custom
@andreagrandi
Andrea Grandi
DJANGO ARCHITECTURE
AVAILABLE HOOKS
• process_request(request)
• process_view(
request, view_func, view_args, view_kwargs)
• process_exception(request, response)
• process_template_response(request, response)
• process_response(request, response)
(during a request)
(during a response)
THINGS TO KNOW WHEN YOU WRITE A MIDDLEWARE
• You need to write a class that just inherit from object
• The order in settings.py is important: middlewares are processed from top to
bottom during a request and from bottom to top during a response.
• You don’t need to implement all the available methods of a middleware. For
example you can just implement process_request and
process_template_response
• If you implement process_request and you decide to return an HttpResponse,
all the other middlewares, views etc… will be ignored and only your response
will be returned
EXAMPLE: BENCHMARKMIDDLEWARE
from datetime import datetime
class BenchmarkMiddleware(object):
def process_request(self, request):
request._request_time = datetime.now()
def process_template_response(self, request, response):
response_time = request._request_time - datetime.now()
response.context_data['response_time'] = abs(response_time)
return response
REFERENCES
Complete example:
https://github.com/andreagrandi/benchmark-middleware-example
Documentation:
• https://docs.djangoproject.com/en/1.8/topics/http/middleware/
• http://agiliq.com/blog/2015/07/understanding-django-middlewares/
• http://code.runnable.com/UrSGolK00ygpAAAQ/creating-a-custom-
middleware-for-python-and-django
Thanks!
1 of 7

Recommended

Refs in react by
Refs in reactRefs in react
Refs in reactNodeXperts
153 views14 slides
IGears: Template Architecture and Principles by
IGears: Template Architecture and PrinciplesIGears: Template Architecture and Principles
IGears: Template Architecture and PrinciplesEcommerce Solution Provider SysIQ
531 views22 slides
TMPA-2015: Towards a Usable Defect Prediction Tool: Crossbreeding Machine Lea... by
TMPA-2015: Towards a Usable Defect Prediction Tool: Crossbreeding Machine Lea...TMPA-2015: Towards a Usable Defect Prediction Tool: Crossbreeding Machine Lea...
TMPA-2015: Towards a Usable Defect Prediction Tool: Crossbreeding Machine Lea...Iosif Itkin
3.2K views13 slides
What's the Deal with Open Standards and Open Source Software by
What's the Deal with Open Standards and Open Source SoftwareWhat's the Deal with Open Standards and Open Source Software
What's the Deal with Open Standards and Open Source SoftwareFabrice Mous
491 views96 slides
DLA2009 Presentation S Porto by
DLA2009 Presentation S PortoDLA2009 Presentation S Porto
DLA2009 Presentation S PortoStella Porto
354 views27 slides
DLA'2010 Stella Porto by
DLA'2010 Stella PortoDLA'2010 Stella Porto
DLA'2010 Stella PortoStella Porto
696 views23 slides

More Related Content

Viewers also liked

WBE 08 - VLC Comparison by
WBE 08 - VLC ComparisonWBE 08 - VLC Comparison
WBE 08 - VLC ComparisonRichard Schwier
431 views16 slides
Research Methods for Identifying and Analysing Virtual Learning Communities by
Research Methods for Identifying and Analysing Virtual Learning CommunitiesResearch Methods for Identifying and Analysing Virtual Learning Communities
Research Methods for Identifying and Analysing Virtual Learning CommunitiesRichard Schwier
759 views31 slides
S Porto Eden Lisbon 2008 Presentation by
S Porto Eden Lisbon 2008 PresentationS Porto Eden Lisbon 2008 Presentation
S Porto Eden Lisbon 2008 PresentationStella Porto
311 views34 slides
Git preso to valtech cfml team by
Git preso to valtech cfml teamGit preso to valtech cfml team
Git preso to valtech cfml teamSaravanaMuthu Jayaraj
637 views49 slides
Kaveri by
KaveriKaveri
Kaverisunitablogs
229 views7 slides
Porto de hub_summit_panel_presentation by
Porto de hub_summit_panel_presentationPorto de hub_summit_panel_presentation
Porto de hub_summit_panel_presentationStella Porto
239 views5 slides

Viewers also liked(20)

Research Methods for Identifying and Analysing Virtual Learning Communities by Richard Schwier
Research Methods for Identifying and Analysing Virtual Learning CommunitiesResearch Methods for Identifying and Analysing Virtual Learning Communities
Research Methods for Identifying and Analysing Virtual Learning Communities
Richard Schwier759 views
S Porto Eden Lisbon 2008 Presentation by Stella Porto
S Porto Eden Lisbon 2008 PresentationS Porto Eden Lisbon 2008 Presentation
S Porto Eden Lisbon 2008 Presentation
Stella Porto311 views
Porto de hub_summit_panel_presentation by Stella Porto
Porto de hub_summit_panel_presentationPorto de hub_summit_panel_presentation
Porto de hub_summit_panel_presentation
Stella Porto239 views
Pursuing the elusive metaphor of community in e-learning environments by Richard Schwier
Pursuing the elusive metaphor of community in e-learning environmentsPursuing the elusive metaphor of community in e-learning environments
Pursuing the elusive metaphor of community in e-learning environments
Richard Schwier1.5K views
Gevangen in de Wolken (saMBO-ICT versie) by Fabrice Mous
Gevangen in de Wolken   (saMBO-ICT versie)Gevangen in de Wolken   (saMBO-ICT versie)
Gevangen in de Wolken (saMBO-ICT versie)
Fabrice Mous539 views
IFWE'2010 - Circles of Discovery: Building and Sustaining e-Relationships a... by Stella Porto
IFWE'2010 - Circles of Discovery: Building and Sustaining e-Relationships a...IFWE'2010 - Circles of Discovery: Building and Sustaining e-Relationships a...
IFWE'2010 - Circles of Discovery: Building and Sustaining e-Relationships a...
Stella Porto343 views
Linux vs. Windows - LinuxDay 2010 (Pistoia) by Andrea Grandi
Linux vs. Windows - LinuxDay 2010 (Pistoia)Linux vs. Windows - LinuxDay 2010 (Pistoia)
Linux vs. Windows - LinuxDay 2010 (Pistoia)
Andrea Grandi777 views
Taller de creación literaria 2014 by dracruz
Taller de creación literaria 2014Taller de creación literaria 2014
Taller de creación literaria 2014
dracruz2.7K views
Moving forward on Open Standards by Fabrice Mous
Moving forward on Open StandardsMoving forward on Open Standards
Moving forward on Open Standards
Fabrice Mous496 views
24th ICDE conference - Stella Porto by Stella Porto
24th ICDE conference - Stella Porto24th ICDE conference - Stella Porto
24th ICDE conference - Stella Porto
Stella Porto796 views
Demands, roles and competencies of 21st century distance educators (SPorto at... by Stella Porto
Demands, roles and competencies of 21st century distance educators (SPorto at...Demands, roles and competencies of 21st century distance educators (SPorto at...
Demands, roles and competencies of 21st century distance educators (SPorto at...
Stella Porto844 views
What Is A Distance Educator? by Stella Porto
What Is A Distance Educator?What Is A Distance Educator?
What Is A Distance Educator?
Stella Porto479 views
IDBx: MOOCs on Social and Economic Development in LAC by Stella Porto
IDBx: MOOCs on Social and Economic Development in LACIDBx: MOOCs on Social and Economic Development in LAC
IDBx: MOOCs on Social and Economic Development in LAC
Stella Porto619 views
Managing Online Programs by Stella Porto
Managing Online ProgramsManaging Online Programs
Managing Online Programs
Stella Porto467 views
S.Porto Presentation at Annual EDEN Conference in Lisbon 2008 by Stella Porto
S.Porto Presentation at Annual EDEN Conference in Lisbon 2008S.Porto Presentation at Annual EDEN Conference in Lisbon 2008
S.Porto Presentation at Annual EDEN Conference in Lisbon 2008
Stella Porto469 views
CòPia De Parc Saavedraii by a_la_porra
CòPia De Parc SaavedraiiCòPia De Parc Saavedraii
CòPia De Parc Saavedraii
a_la_porra319 views

Similar to Creating a custom Django Middleware

Tango with django by
Tango with djangoTango with django
Tango with djangoRajan Kumar Upadhyay
1K views44 slides
Prashant technical practices-tdd for xebia event by
Prashant   technical practices-tdd for xebia eventPrashant   technical practices-tdd for xebia event
Prashant technical practices-tdd for xebia eventXebia India
110 views39 slides
Django apps and ORM Beyond the basics [Meetup hosted by Prodeers.com] by
Django apps and ORM Beyond the basics [Meetup hosted by Prodeers.com]Django apps and ORM Beyond the basics [Meetup hosted by Prodeers.com]
Django apps and ORM Beyond the basics [Meetup hosted by Prodeers.com]Udit Gangwani
438 views36 slides
2014 11 20 Drupal 7 -> 8 test migratie by
2014 11 20 Drupal 7 -> 8 test migratie2014 11 20 Drupal 7 -> 8 test migratie
2014 11 20 Drupal 7 -> 8 test migratiehcderaad
447 views39 slides
Customizing the Django Admin by
Customizing the Django AdminCustomizing the Django Admin
Customizing the Django AdminLincoln Loop
46.7K views63 slides
Django class based views (Dutch Django meeting presentation) by
Django class based views (Dutch Django meeting presentation)Django class based views (Dutch Django meeting presentation)
Django class based views (Dutch Django meeting presentation)Reinout van Rees
1.4K views13 slides

Similar to Creating a custom Django Middleware(20)

Prashant technical practices-tdd for xebia event by Xebia India
Prashant   technical practices-tdd for xebia eventPrashant   technical practices-tdd for xebia event
Prashant technical practices-tdd for xebia event
Xebia India110 views
Django apps and ORM Beyond the basics [Meetup hosted by Prodeers.com] by Udit Gangwani
Django apps and ORM Beyond the basics [Meetup hosted by Prodeers.com]Django apps and ORM Beyond the basics [Meetup hosted by Prodeers.com]
Django apps and ORM Beyond the basics [Meetup hosted by Prodeers.com]
Udit Gangwani438 views
2014 11 20 Drupal 7 -> 8 test migratie by hcderaad
2014 11 20 Drupal 7 -> 8 test migratie2014 11 20 Drupal 7 -> 8 test migratie
2014 11 20 Drupal 7 -> 8 test migratie
hcderaad447 views
Customizing the Django Admin by Lincoln Loop
Customizing the Django AdminCustomizing the Django Admin
Customizing the Django Admin
Lincoln Loop46.7K views
Django class based views (Dutch Django meeting presentation) by Reinout van Rees
Django class based views (Dutch Django meeting presentation)Django class based views (Dutch Django meeting presentation)
Django class based views (Dutch Django meeting presentation)
Reinout van Rees1.4K views
Django Overview by Brian Tol
Django OverviewDjango Overview
Django Overview
Brian Tol3.9K views
Corporate AGILE & SDLC Best Practices - Part1.pptx by Tausief Shaikh
Corporate AGILE & SDLC Best Practices - Part1.pptxCorporate AGILE & SDLC Best Practices - Part1.pptx
Corporate AGILE & SDLC Best Practices - Part1.pptx
Tausief Shaikh437 views
GDG Addis - An Introduction to Django and App Engine by Yared Ayalew
GDG Addis - An Introduction to Django and App EngineGDG Addis - An Introduction to Django and App Engine
GDG Addis - An Introduction to Django and App Engine
Yared Ayalew437 views
Behaviour driven development by Fraboni Ec
Behaviour driven developmentBehaviour driven development
Behaviour driven development
Fraboni Ec41 views
Behaviour drivendevelopment by Hoang Nguyen
Behaviour drivendevelopmentBehaviour drivendevelopment
Behaviour drivendevelopment
Hoang Nguyen155 views
Behaviour driven development by Harry Potter
Behaviour driven developmentBehaviour driven development
Behaviour driven development
Harry Potter67 views
Behaviour driven development by Tony Nguyen
Behaviour driven developmentBehaviour driven development
Behaviour driven development
Tony Nguyen110 views
Behaviour drivendevelopment by Young Alista
Behaviour drivendevelopmentBehaviour drivendevelopment
Behaviour drivendevelopment
Young Alista75 views
Behaviour drivendevelopment by Luis Goldster
Behaviour drivendevelopmentBehaviour drivendevelopment
Behaviour drivendevelopment
Luis Goldster53 views
Behaviour driven development by James Wong
Behaviour driven developmentBehaviour driven development
Behaviour driven development
James Wong85 views
Automated php unit testing in drupal 8 by Jay Friendly
Automated php unit testing in drupal 8Automated php unit testing in drupal 8
Automated php unit testing in drupal 8
Jay Friendly2.1K views
國民雲端架構 Django + GAE by Winston Chen
國民雲端架構 Django + GAE國民雲端架構 Django + GAE
國民雲端架構 Django + GAE
Winston Chen1.1K views
Software Engineering Best Practices @ Nylas by Ben Gotow
Software Engineering Best Practices @ NylasSoftware Engineering Best Practices @ Nylas
Software Engineering Best Practices @ Nylas
Ben Gotow313 views

More from Andrea Grandi

Presentazione Ubuntu Oneiric 11.10 - LinuxDay 2011 by
Presentazione Ubuntu Oneiric 11.10 - LinuxDay 2011Presentazione Ubuntu Oneiric 11.10 - LinuxDay 2011
Presentazione Ubuntu Oneiric 11.10 - LinuxDay 2011Andrea Grandi
367 views22 slides
Drupal - LinuxDay 2010 (Pistoia) by
Drupal - LinuxDay 2010 (Pistoia)Drupal - LinuxDay 2010 (Pistoia)
Drupal - LinuxDay 2010 (Pistoia)Andrea Grandi
365 views31 slides
Drupal - LinuxDay 2010 (Pistoia) by
Drupal - LinuxDay 2010 (Pistoia)Drupal - LinuxDay 2010 (Pistoia)
Drupal - LinuxDay 2010 (Pistoia)Andrea Grandi
439 views31 slides
Linux e il mondo della scuola - LinuxDay 2010 (Pistoia) by
Linux e il mondo della scuola - LinuxDay 2010 (Pistoia)Linux e il mondo della scuola - LinuxDay 2010 (Pistoia)
Linux e il mondo della scuola - LinuxDay 2010 (Pistoia)Andrea Grandi
376 views25 slides
L'uso del VOIP in azienda (LinuxDay 2010 - Pistoia) by
L'uso del VOIP in azienda (LinuxDay 2010 - Pistoia)L'uso del VOIP in azienda (LinuxDay 2010 - Pistoia)
L'uso del VOIP in azienda (LinuxDay 2010 - Pistoia)Andrea Grandi
706 views29 slides
Presentazione LinuxDay 2010 - Pistoia by
Presentazione LinuxDay 2010 - PistoiaPresentazione LinuxDay 2010 - Pistoia
Presentazione LinuxDay 2010 - PistoiaAndrea Grandi
341 views8 slides

More from Andrea Grandi(10)

Presentazione Ubuntu Oneiric 11.10 - LinuxDay 2011 by Andrea Grandi
Presentazione Ubuntu Oneiric 11.10 - LinuxDay 2011Presentazione Ubuntu Oneiric 11.10 - LinuxDay 2011
Presentazione Ubuntu Oneiric 11.10 - LinuxDay 2011
Andrea Grandi367 views
Drupal - LinuxDay 2010 (Pistoia) by Andrea Grandi
Drupal - LinuxDay 2010 (Pistoia)Drupal - LinuxDay 2010 (Pistoia)
Drupal - LinuxDay 2010 (Pistoia)
Andrea Grandi365 views
Drupal - LinuxDay 2010 (Pistoia) by Andrea Grandi
Drupal - LinuxDay 2010 (Pistoia)Drupal - LinuxDay 2010 (Pistoia)
Drupal - LinuxDay 2010 (Pistoia)
Andrea Grandi439 views
Linux e il mondo della scuola - LinuxDay 2010 (Pistoia) by Andrea Grandi
Linux e il mondo della scuola - LinuxDay 2010 (Pistoia)Linux e il mondo della scuola - LinuxDay 2010 (Pistoia)
Linux e il mondo della scuola - LinuxDay 2010 (Pistoia)
Andrea Grandi376 views
L'uso del VOIP in azienda (LinuxDay 2010 - Pistoia) by Andrea Grandi
L'uso del VOIP in azienda (LinuxDay 2010 - Pistoia)L'uso del VOIP in azienda (LinuxDay 2010 - Pistoia)
L'uso del VOIP in azienda (LinuxDay 2010 - Pistoia)
Andrea Grandi706 views
Presentazione LinuxDay 2010 - Pistoia by Andrea Grandi
Presentazione LinuxDay 2010 - PistoiaPresentazione LinuxDay 2010 - Pistoia
Presentazione LinuxDay 2010 - Pistoia
Andrea Grandi341 views
Qt Mobile: Sviluppo mobile con Python e Qt Framework by Andrea Grandi
Qt Mobile: Sviluppo mobile con Python e Qt FrameworkQt Mobile: Sviluppo mobile con Python e Qt Framework
Qt Mobile: Sviluppo mobile con Python e Qt Framework
Andrea Grandi507 views
python-mafw intoduction at Maemo Summit 2009 by Andrea Grandi
python-mafw intoduction at Maemo Summit 2009python-mafw intoduction at Maemo Summit 2009
python-mafw intoduction at Maemo Summit 2009
Andrea Grandi459 views
Presentazione Festa Paas 2009 by Andrea Grandi
Presentazione Festa Paas 2009Presentazione Festa Paas 2009
Presentazione Festa Paas 2009
Andrea Grandi326 views

Recently uploaded

Citi TechTalk Session 2: Kafka Deep Dive by
Citi TechTalk Session 2: Kafka Deep DiveCiti TechTalk Session 2: Kafka Deep Dive
Citi TechTalk Session 2: Kafka Deep Diveconfluent
17 views60 slides
Software testing company in India.pptx by
Software testing company in India.pptxSoftware testing company in India.pptx
Software testing company in India.pptxSakshiPatel82
7 views9 slides
DSD-INT 2023 Baseline studies for Strategic Coastal protection for Long Islan... by
DSD-INT 2023 Baseline studies for Strategic Coastal protection for Long Islan...DSD-INT 2023 Baseline studies for Strategic Coastal protection for Long Islan...
DSD-INT 2023 Baseline studies for Strategic Coastal protection for Long Islan...Deltares
10 views30 slides
MariaDB stored procedures and why they should be improved by
MariaDB stored procedures and why they should be improvedMariaDB stored procedures and why they should be improved
MariaDB stored procedures and why they should be improvedFederico Razzoli
8 views32 slides
Neo4j y GenAI by
Neo4j y GenAI Neo4j y GenAI
Neo4j y GenAI Neo4j
35 views41 slides
ict act 1.pptx by
ict act 1.pptxict act 1.pptx
ict act 1.pptxsanjaniarun08
12 views17 slides

Recently uploaded(20)

Citi TechTalk Session 2: Kafka Deep Dive by confluent
Citi TechTalk Session 2: Kafka Deep DiveCiti TechTalk Session 2: Kafka Deep Dive
Citi TechTalk Session 2: Kafka Deep Dive
confluent17 views
Software testing company in India.pptx by SakshiPatel82
Software testing company in India.pptxSoftware testing company in India.pptx
Software testing company in India.pptx
SakshiPatel827 views
DSD-INT 2023 Baseline studies for Strategic Coastal protection for Long Islan... by Deltares
DSD-INT 2023 Baseline studies for Strategic Coastal protection for Long Islan...DSD-INT 2023 Baseline studies for Strategic Coastal protection for Long Islan...
DSD-INT 2023 Baseline studies for Strategic Coastal protection for Long Islan...
Deltares10 views
MariaDB stored procedures and why they should be improved by Federico Razzoli
MariaDB stored procedures and why they should be improvedMariaDB stored procedures and why they should be improved
MariaDB stored procedures and why they should be improved
Neo4j y GenAI by Neo4j
Neo4j y GenAI Neo4j y GenAI
Neo4j y GenAI
Neo4j35 views
Mark Simpson - UKOUG23 - Refactoring Monolithic Oracle Database Applications ... by marksimpsongw
Mark Simpson - UKOUG23 - Refactoring Monolithic Oracle Database Applications ...Mark Simpson - UKOUG23 - Refactoring Monolithic Oracle Database Applications ...
Mark Simpson - UKOUG23 - Refactoring Monolithic Oracle Database Applications ...
marksimpsongw74 views
Unmasking the Dark Art of Vectored Exception Handling: Bypassing XDR and EDR ... by Donato Onofri
Unmasking the Dark Art of Vectored Exception Handling: Bypassing XDR and EDR ...Unmasking the Dark Art of Vectored Exception Handling: Bypassing XDR and EDR ...
Unmasking the Dark Art of Vectored Exception Handling: Bypassing XDR and EDR ...
Donato Onofri643 views
DSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - Afternoon by Deltares
DSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - AfternoonDSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - Afternoon
DSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - Afternoon
Deltares11 views
DSD-INT 2023 Delft3D FM Suite 2024.01 1D2D - Beta testing programme - Geertsema by Deltares
DSD-INT 2023 Delft3D FM Suite 2024.01 1D2D - Beta testing programme - GeertsemaDSD-INT 2023 Delft3D FM Suite 2024.01 1D2D - Beta testing programme - Geertsema
DSD-INT 2023 Delft3D FM Suite 2024.01 1D2D - Beta testing programme - Geertsema
Deltares12 views
How to Make the Most of Regression and Unit Testing.pdf by Abhay Kumar
How to Make the Most of Regression and Unit Testing.pdfHow to Make the Most of Regression and Unit Testing.pdf
How to Make the Most of Regression and Unit Testing.pdf
Abhay Kumar10 views
DSD-INT 2023 HydroMT model building and river-coast coupling in Python - Bove... by Deltares
DSD-INT 2023 HydroMT model building and river-coast coupling in Python - Bove...DSD-INT 2023 HydroMT model building and river-coast coupling in Python - Bove...
DSD-INT 2023 HydroMT model building and river-coast coupling in Python - Bove...
Deltares15 views
Tridens DevOps by Tridens
Tridens DevOpsTridens DevOps
Tridens DevOps
Tridens9 views
Consulting for Data Monetization Maximizing the Profit Potential of Your Data... by Flexsin
Consulting for Data Monetization Maximizing the Profit Potential of Your Data...Consulting for Data Monetization Maximizing the Profit Potential of Your Data...
Consulting for Data Monetization Maximizing the Profit Potential of Your Data...
Flexsin 15 views
Roadmap y Novedades de producto by Neo4j
Roadmap y Novedades de productoRoadmap y Novedades de producto
Roadmap y Novedades de producto
Neo4j43 views
DSD-INT 2023 Dam break simulation in Derna (Libya) using HydroMT_SFINCS - Prida by Deltares
DSD-INT 2023 Dam break simulation in Derna (Libya) using HydroMT_SFINCS - PridaDSD-INT 2023 Dam break simulation in Derna (Libya) using HydroMT_SFINCS - Prida
DSD-INT 2023 Dam break simulation in Derna (Libya) using HydroMT_SFINCS - Prida
Deltares17 views
Cycleops - Automate deployments on top of bare metal.pptx by Thanassis Parathyras
Cycleops - Automate deployments on top of bare metal.pptxCycleops - Automate deployments on top of bare metal.pptx
Cycleops - Automate deployments on top of bare metal.pptx

Creating a custom Django Middleware