深入探究Django中的Session与Cookie

作者:Roy 时间:2023-08-20 23:43:57 

前言

Cookie和Session相信对大家来说并不陌生,简单来说,Cookie和Session都是为了记录用户相关信息的方式,最大的区别就是Cookie在客户端记录而Session在服务端记录内容。

那么Cookie和Session之间的联系是怎么建立的呢?换言之,当服务器接收到一个请求时候,根据什么来判断读取哪个Session的呢?

对于Django默认情况来说,当用户登录后就可以发现Cookie里有一个sessionid的字段,根据这个key就可以取得在服务器端记录的详细内容。如果将这个字段删除,刷新页面就会发现变成未登录状态了。

对于Session的处理主要在源码django/contrib/sessions/middleware.py中,如下所示:


import time
from importlib import import_module
from django.conf import settings
from django.contrib.sessions.backends.base import UpdateError
from django.core.exceptions import SuspiciousOperation
from django.utils.cache import patch_vary_headers
from django.utils.deprecation import MiddlewareMixin
from django.utils.http import cookie_date
class SessionMiddleware(MiddlewareMixin):
def __init__(self, get_response=None):
 self.get_response = get_response
 engine = import_module(settings.SESSION_ENGINE)
 self.SessionStore = engine.SessionStore
def process_request(self, request):
 session_key = request.COOKIES.get(settings.SESSION_COOKIE_NAME)
 request.session = self.SessionStore(session_key)
def process_response(self, request, response):
 """
 If request.session was modified, or if the configuration is to save the
 session every time, save the changes and set a session cookie or delete
 the session cookie if the session has been emptied.
 """
 try:
  accessed = request.session.accessed
  modified = request.session.modified
  empty = request.session.is_empty()
 except AttributeError:
  pass
 else:
  # First check if we need to delete this cookie.
  # The session should be deleted only if the session is entirely empty
  if settings.SESSION_COOKIE_NAME in request.COOKIES and empty:
   response.delete_cookie(
    settings.SESSION_COOKIE_NAME,
    path=settings.SESSION_COOKIE_PATH,
    domain=settings.SESSION_COOKIE_DOMAIN,
   )
  else:
   if accessed:
    patch_vary_headers(response, ('Cookie',))
   if (modified or settings.SESSION_SAVE_EVERY_REQUEST) and not empty:
    if request.session.get_expire_at_browser_close():
     max_age = None
     expires = None
    else:
     max_age = request.session.get_expiry_age()
     expires_time = time.time() + max_age
     expires = cookie_date(expires_time)
    # Save the session data and refresh the client cookie.
    # Skip session save for 500 responses, refs #3881.
    if response.status_code != 500:
     try:
      request.session.save()
     except UpdateError:
      raise SuspiciousOperation(
       "The request's session was deleted before the "
       "request completed. The user may have logged "
       "out in a concurrent request, for example."
      )
     response.set_cookie(
      settings.SESSION_COOKIE_NAME,
      request.session.session_key, max_age=max_age,
      expires=expires, domain=settings.SESSION_COOKIE_DOMAIN,
      path=settings.SESSION_COOKIE_PATH,
      secure=settings.SESSION_COOKIE_SECURE or None,
      httponly=settings.SESSION_COOKIE_HTTPONLY or None,
     )
 return response

当接收到一个请求时候,先在Cookie里取出key,然后根据key创建Session对象,在response时候判断是否要删除或者修改sessionid。

也就是说,Django中如果客户把浏览器Cookie禁用后,用户相关的功能就全都失效了,因为服务端根本没法知道当前用户是谁。

对于这种情况,关键点就是如何把sessionid不使用Cookie传递给客户端,常见的比如放在URL中,也就是URL重写技术。想实现这点可以自己写Middleware。不过django并不建议这么做:

The Django sessions framework is entirely, and solely, cookie-based. It does not fall back to putting session IDs in URLs as a last resort, as PHP does. This is an intentional design decision. Not only does that behavior make URLs ugly, it makes your site vulnerable to session-ID theft via the “Referer” header.

来源:http://www.hi-roy.com/2017/07/28/django中的Session和Cookie/

标签:django,cookie,session
0
投稿

猜你喜欢

  • MySQL数据库与表的最基本命令大盘点

    2010-08-31 14:29:00
  • 如何用Python和JS实现的Web SSH工具

    2021-04-23 13:50:13
  • 发工资啦!教你用Python实现邮箱自动群发工资条

    2023-10-12 19:11:17
  • pytorch中的hook机制register_forward_hook

    2022-03-24 10:37:12
  • python批量下载壁纸的实现代码

    2023-11-09 18:13:05
  • 详解Python进行数据相关性分析的三种方式

    2022-05-09 18:50:12
  • python实现简单颜色识别程序

    2022-07-15 09:34:47
  • Python WXPY实现微信监控报警功能的代码

    2021-05-15 02:07:20
  • 限制文本框只能输入数字和小数点

    2009-05-29 18:19:00
  • 基于Python实现模拟三体运动的示例代码

    2022-03-29 21:40:37
  • 网址导航的组织方法

    2008-09-27 12:35:00
  • python实现对doc,txt,xls文档的读写操作

    2021-05-09 20:01:14
  • Pandas中DataFrame的常用用法分享

    2022-08-10 01:17:49
  • 解决CentOS下ImportError: No module named '_sqlite3'的问题

    2022-03-14 20:13:57
  • 提一个懒人需求——找遥控器的电视

    2009-03-23 18:16:00
  • 对网站内嵌gradio应用的输入输出做审核实现详解

    2023-07-22 08:22:05
  • 一文详解Python中logging模块的用法

    2022-03-27 23:09:38
  • python实现批量修改图片格式和尺寸

    2021-02-12 10:47:35
  • 3行Python代码实现图像照片抠图和换底色的方法

    2021-12-11 04:57:35
  • python自动zip压缩目录的方法

    2021-01-15 12:39:41
  • asp之家 网络编程 m.aspxhome.com