customizing.txt 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152
  1. ====================================
  2. Customizing authentication in Django
  3. ====================================
  4. The authentication that comes with Django is good enough for most common cases,
  5. but you may have needs not met by the out-of-the-box defaults. Customizing
  6. authentication in your projects requires understanding what points of the
  7. provided system are extensible or replaceable. This document provides details
  8. about how the auth system can be customized.
  9. :ref:`Authentication backends <authentication-backends>` provide an extensible
  10. system for when a username and password stored with the user model need to be
  11. authenticated against a different service than Django's default.
  12. You can give your models :ref:`custom permissions <custom-permissions>` that
  13. can be checked through Django's authorization system.
  14. You can :ref:`extend <extending-user>` the default ``User`` model, or
  15. :ref:`substitute <auth-custom-user>` a completely customized model.
  16. .. _authentication-backends:
  17. Other authentication sources
  18. ============================
  19. There may be times you have the need to hook into another authentication source
  20. -- that is, another source of usernames and passwords or authentication
  21. methods.
  22. For example, your company may already have an LDAP setup that stores a username
  23. and password for every employee. It'd be a hassle for both the network
  24. administrator and the users themselves if users had separate accounts in LDAP
  25. and the Django-based applications.
  26. So, to handle situations like this, the Django authentication system lets you
  27. plug in other authentication sources. You can override Django's default
  28. database-based scheme, or you can use the default system in tandem with other
  29. systems.
  30. See the :ref:`authentication backend reference
  31. <authentication-backends-reference>` for information on the authentication
  32. backends included with Django.
  33. Specifying authentication backends
  34. ----------------------------------
  35. Behind the scenes, Django maintains a list of "authentication backends" that it
  36. checks for authentication. When somebody calls
  37. :func:`django.contrib.auth.authenticate()` -- as described in :ref:`How to log
  38. a user in <how-to-log-a-user-in>` -- Django tries authenticating across
  39. all of its authentication backends. If the first authentication method fails,
  40. Django tries the second one, and so on, until all backends have been attempted.
  41. The list of authentication backends to use is specified in the
  42. :setting:`AUTHENTICATION_BACKENDS` setting. This should be a list of Python
  43. path names that point to Python classes that know how to authenticate. These
  44. classes can be anywhere on your Python path.
  45. By default, :setting:`AUTHENTICATION_BACKENDS` is set to::
  46. ['django.contrib.auth.backends.ModelBackend']
  47. That's the basic authentication backend that checks the Django users database
  48. and queries the built-in permissions. It does not provide protection against
  49. brute force attacks via any rate limiting mechanism. You may either implement
  50. your own rate limiting mechanism in a custom auth backend, or use the
  51. mechanisms provided by most Web servers.
  52. The order of :setting:`AUTHENTICATION_BACKENDS` matters, so if the same
  53. username and password is valid in multiple backends, Django will stop
  54. processing at the first positive match.
  55. If a backend raises a :class:`~django.core.exceptions.PermissionDenied`
  56. exception, authentication will immediately fail. Django won't check the
  57. backends that follow.
  58. .. note::
  59. Once a user has authenticated, Django stores which backend was used to
  60. authenticate the user in the user's session, and re-uses the same backend
  61. for the duration of that session whenever access to the currently
  62. authenticated user is needed. This effectively means that authentication
  63. sources are cached on a per-session basis, so if you change
  64. :setting:`AUTHENTICATION_BACKENDS`, you'll need to clear out session data if
  65. you need to force users to re-authenticate using different methods. A simple
  66. way to do that is simply to execute ``Session.objects.all().delete()``.
  67. Writing an authentication backend
  68. ---------------------------------
  69. An authentication backend is a class that implements two required methods:
  70. ``get_user(user_id)`` and ``authenticate(request, **credentials)``, as well as
  71. a set of optional permission related :ref:`authorization methods
  72. <authorization_methods>`.
  73. The ``get_user`` method takes a ``user_id`` -- which could be a username,
  74. database ID or whatever, but has to be the primary key of your user object --
  75. and returns a user object.
  76. The ``authenticate`` method takes a ``request`` argument and credentials as
  77. keyword arguments. Most of the time, it'll just look like this::
  78. class MyBackend:
  79. def authenticate(self, request, username=None, password=None):
  80. # Check the username/password and return a user.
  81. ...
  82. But it could also authenticate a token, like so::
  83. class MyBackend:
  84. def authenticate(self, request, token=None):
  85. # Check the token and return a user.
  86. ...
  87. Either way, ``authenticate()`` should check the credentials it gets and return
  88. a user object that matches those credentials if the credentials are valid. If
  89. they're not valid, it should return ``None``.
  90. ``request`` is an :class:`~django.http.HttpRequest` and may be ``None`` if it
  91. wasn't provided to :func:`~django.contrib.auth.authenticate` (which passes it
  92. on to the backend).
  93. The Django admin is tightly coupled to the Django :ref:`User object
  94. <user-objects>`. The best way to deal with this is to create a Django ``User``
  95. object for each user that exists for your backend (e.g., in your LDAP
  96. directory, your external SQL database, etc.) You can either write a script to
  97. do this in advance, or your ``authenticate`` method can do it the first time a
  98. user logs in.
  99. Here's an example backend that authenticates against a username and password
  100. variable defined in your ``settings.py`` file and creates a Django ``User``
  101. object the first time a user authenticates::
  102. from django.conf import settings
  103. from django.contrib.auth.hashers import check_password
  104. from django.contrib.auth.models import User
  105. class SettingsBackend:
  106. """
  107. Authenticate against the settings ADMIN_LOGIN and ADMIN_PASSWORD.
  108. Use the login name and a hash of the password. For example:
  109. ADMIN_LOGIN = 'admin'
  110. ADMIN_PASSWORD = 'pbkdf2_sha256$30000$Vo0VlMnkR4Bk$qEvtdyZRWTcOsCnI/oQ7fVOu1XAURIZYoOZ3iq8Dr4M='
  111. """
  112. def authenticate(self, request, username=None, password=None):
  113. login_valid = (settings.ADMIN_LOGIN == username)
  114. pwd_valid = check_password(password, settings.ADMIN_PASSWORD)
  115. if login_valid and pwd_valid:
  116. try:
  117. user = User.objects.get(username=username)
  118. except User.DoesNotExist:
  119. # Create a new user. There's no need to set a password
  120. # because only the password from settings.py is checked.
  121. user = User(username=username)
  122. user.is_staff = True
  123. user.is_superuser = True
  124. user.save()
  125. return user
  126. return None
  127. def get_user(self, user_id):
  128. try:
  129. return User.objects.get(pk=user_id)
  130. except User.DoesNotExist:
  131. return None
  132. .. _authorization_methods:
  133. Handling authorization in custom backends
  134. -----------------------------------------
  135. Custom auth backends can provide their own permissions.
  136. The user model will delegate permission lookup functions
  137. (:meth:`~django.contrib.auth.models.User.get_group_permissions()`,
  138. :meth:`~django.contrib.auth.models.User.get_all_permissions()`,
  139. :meth:`~django.contrib.auth.models.User.has_perm()`, and
  140. :meth:`~django.contrib.auth.models.User.has_module_perms()`) to any
  141. authentication backend that implements these functions.
  142. The permissions given to the user will be the superset of all permissions
  143. returned by all backends. That is, Django grants a permission to a user that
  144. any one backend grants.
  145. If a backend raises a :class:`~django.core.exceptions.PermissionDenied`
  146. exception in :meth:`~django.contrib.auth.models.User.has_perm()` or
  147. :meth:`~django.contrib.auth.models.User.has_module_perms()`, the authorization
  148. will immediately fail and Django won't check the backends that follow.
  149. The simple backend above could implement permissions for the magic admin
  150. fairly simply::
  151. class SettingsBackend:
  152. ...
  153. def has_perm(self, user_obj, perm, obj=None):
  154. return user_obj.username == settings.ADMIN_LOGIN
  155. This gives full permissions to the user granted access in the above example.
  156. Notice that in addition to the same arguments given to the associated
  157. :class:`django.contrib.auth.models.User` functions, the backend auth functions
  158. all take the user object, which may be an anonymous user, as an argument.
  159. A full authorization implementation can be found in the ``ModelBackend`` class
  160. in `django/contrib/auth/backends.py`_, which is the default backend and queries
  161. the ``auth_permission`` table most of the time. If you wish to provide
  162. custom behavior for only part of the backend API, you can take advantage of
  163. Python inheritance and subclass ``ModelBackend`` instead of implementing the
  164. complete API in a custom backend.
  165. .. _django/contrib/auth/backends.py: https://github.com/django/django/blob/master/django/contrib/auth/backends.py
  166. .. _anonymous_auth:
  167. Authorization for anonymous users
  168. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  169. An anonymous user is one that is not authenticated i.e. they have provided no
  170. valid authentication details. However, that does not necessarily mean they are
  171. not authorized to do anything. At the most basic level, most websites
  172. authorize anonymous users to browse most of the site, and many allow anonymous
  173. posting of comments etc.
  174. Django's permission framework does not have a place to store permissions for
  175. anonymous users. However, the user object passed to an authentication backend
  176. may be an :class:`django.contrib.auth.models.AnonymousUser` object, allowing
  177. the backend to specify custom authorization behavior for anonymous users. This
  178. is especially useful for the authors of re-usable apps, who can delegate all
  179. questions of authorization to the auth backend, rather than needing settings,
  180. for example, to control anonymous access.
  181. .. _inactive_auth:
  182. Authorization for inactive users
  183. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  184. An inactive user is one that has its
  185. :attr:`~django.contrib.auth.models.User.is_active` field set to ``False``. The
  186. :class:`~django.contrib.auth.backends.ModelBackend` and
  187. :class:`~django.contrib.auth.backends.RemoteUserBackend` authentication
  188. backends prohibits these users from authenticating. If a custom user model
  189. doesn't have an :attr:`~django.contrib.auth.models.CustomUser.is_active` field,
  190. all users will be allowed to authenticate.
  191. You can use :class:`~django.contrib.auth.backends.AllowAllUsersModelBackend`
  192. or :class:`~django.contrib.auth.backends.AllowAllUsersRemoteUserBackend` if you
  193. want to allow inactive users to authenticate.
  194. The support for anonymous users in the permission system allows for a scenario
  195. where anonymous users have permissions to do something while inactive
  196. authenticated users do not.
  197. Do not forget to test for the ``is_active`` attribute of the user in your own
  198. backend permission methods.
  199. Handling object permissions
  200. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  201. Django's permission framework has a foundation for object permissions, though
  202. there is no implementation for it in the core. That means that checking for
  203. object permissions will always return ``False`` or an empty list (depending on
  204. the check performed). An authentication backend will receive the keyword
  205. parameters ``obj`` and ``user_obj`` for each object related authorization
  206. method and can return the object level permission as appropriate.
  207. .. _custom-permissions:
  208. Custom permissions
  209. ==================
  210. To create custom permissions for a given model object, use the ``permissions``
  211. :ref:`model Meta attribute <meta-options>`.
  212. This example Task model creates three custom permissions, i.e., actions users
  213. can or cannot do with Task instances, specific to your application::
  214. class Task(models.Model):
  215. ...
  216. class Meta:
  217. permissions = (
  218. ("view_task", "Can see available tasks"),
  219. ("change_task_status", "Can change the status of tasks"),
  220. ("close_task", "Can remove a task by setting its status as closed"),
  221. )
  222. The only thing this does is create those extra permissions when you run
  223. :djadmin:`manage.py migrate <migrate>` (the function that creates permissions
  224. is connected to the :data:`~django.db.models.signals.post_migrate` signal).
  225. Your code is in charge of checking the value of these permissions when a user
  226. is trying to access the functionality provided by the application (viewing
  227. tasks, changing the status of tasks, closing tasks.) Continuing the above
  228. example, the following checks if a user may view tasks::
  229. user.has_perm('app.view_task')
  230. .. _extending-user:
  231. Extending the existing ``User`` model
  232. =====================================
  233. There are two ways to extend the default
  234. :class:`~django.contrib.auth.models.User` model without substituting your own
  235. model. If the changes you need are purely behavioral, and don't require any
  236. change to what is stored in the database, you can create a :ref:`proxy model
  237. <proxy-models>` based on :class:`~django.contrib.auth.models.User`. This
  238. allows for any of the features offered by proxy models including default
  239. ordering, custom managers, or custom model methods.
  240. If you wish to store information related to ``User``, you can use a
  241. :class:`~django.db.models.OneToOneField` to a model containing the fields for
  242. additional information. This one-to-one model is often called a profile model,
  243. as it might store non-auth related information about a site user. For example
  244. you might create an Employee model::
  245. from django.contrib.auth.models import User
  246. class Employee(models.Model):
  247. user = models.OneToOneField(User, on_delete=models.CASCADE)
  248. department = models.CharField(max_length=100)
  249. Assuming an existing Employee Fred Smith who has both a User and Employee
  250. model, you can access the related information using Django's standard related
  251. model conventions::
  252. >>> u = User.objects.get(username='fsmith')
  253. >>> freds_department = u.employee.department
  254. To add a profile model's fields to the user page in the admin, define an
  255. :class:`~django.contrib.admin.InlineModelAdmin` (for this example, we'll use a
  256. :class:`~django.contrib.admin.StackedInline`) in your app's ``admin.py`` and
  257. add it to a ``UserAdmin`` class which is registered with the
  258. :class:`~django.contrib.auth.models.User` class::
  259. from django.contrib import admin
  260. from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
  261. from django.contrib.auth.models import User
  262. from my_user_profile_app.models import Employee
  263. # Define an inline admin descriptor for Employee model
  264. # which acts a bit like a singleton
  265. class EmployeeInline(admin.StackedInline):
  266. model = Employee
  267. can_delete = False
  268. verbose_name_plural = 'employee'
  269. # Define a new User admin
  270. class UserAdmin(BaseUserAdmin):
  271. inlines = (EmployeeInline,)
  272. # Re-register UserAdmin
  273. admin.site.unregister(User)
  274. admin.site.register(User, UserAdmin)
  275. These profile models are not special in any way - they are just Django models
  276. that happen to have a one-to-one link with a user model. As such, they aren't
  277. auto created when a user is created, but
  278. a :attr:`django.db.models.signals.post_save` could be used to create or update
  279. related models as appropriate.
  280. Using related models results in additional queries or joins to retrieve the
  281. related data. Depending on your needs, a custom user model that includes the
  282. related fields may be your better option, however, existing relations to the
  283. default user model within your project's apps may justify the extra database
  284. load.
  285. .. _auth-custom-user:
  286. Substituting a custom ``User`` model
  287. ====================================
  288. Some kinds of projects may have authentication requirements for which Django's
  289. built-in :class:`~django.contrib.auth.models.User` model is not always
  290. appropriate. For instance, on some sites it makes more sense to use an email
  291. address as your identification token instead of a username.
  292. Django allows you to override the default user model by providing a value for
  293. the :setting:`AUTH_USER_MODEL` setting that references a custom model::
  294. AUTH_USER_MODEL = 'myapp.MyUser'
  295. This dotted pair describes the name of the Django app (which must be in your
  296. :setting:`INSTALLED_APPS`), and the name of the Django model that you wish to
  297. use as your user model.
  298. Using a custom user model when starting a project
  299. -------------------------------------------------
  300. If you're starting a new project, it's highly recommended to set up a custom
  301. user model, even if the default :class:`~django.contrib.auth.models.User` model
  302. is sufficient for you. This model behaves identically to the default user
  303. model, but you'll be able to customize it in the future if the need arises::
  304. from django.contrib.auth.models import AbstractUser
  305. class User(AbstractUser):
  306. pass
  307. Don't forget to point :setting:`AUTH_USER_MODEL` to it. Do this before creating
  308. any migrations or running ``manage.py migrate`` for the first time.
  309. Also, register the model in the app's ``admin.py``::
  310. from django.contrib import admin
  311. from django.contrib.auth.admin import UserAdmin
  312. from .models import User
  313. admin.site.register(User, UserAdmin)
  314. Changing to a custom user model mid-project
  315. -------------------------------------------
  316. Changing :setting:`AUTH_USER_MODEL` after you've created database tables is
  317. significantly more difficult since it affects foreign keys and many-to-many
  318. relationships, for example.
  319. This change can't be done automatically and requires manually fixing your
  320. schema, moving your data from the old user table, and possibly manually
  321. reapplying some migrations. See :ticket:`25313` for an outline of the steps.
  322. Due to limitations of Django's dynamic dependency feature for swappable
  323. models, the model referenced by :setting:`AUTH_USER_MODEL` must be created in
  324. the first migration of its app (usually called ``0001_initial``); otherwise,
  325. you'll have dependency issues.
  326. In addition, you may run into a ``CircularDependencyError`` when running your
  327. migrations as Django won't be able to automatically break the dependency loop
  328. due to the dynamic dependency. If you see this error, you should break the loop
  329. by moving the models depended on by your user model into a second migration.
  330. (You can try making two normal models that have a ``ForeignKey`` to each other
  331. and seeing how ``makemigrations`` resolves that circular dependency if you want
  332. to see how it's usually done.)
  333. Reusable apps and ``AUTH_USER_MODEL``
  334. -------------------------------------
  335. Reusable apps shouldn't implement a custom user model. A project may use many
  336. apps, and two reusable apps that implemented a custom user model couldn't be
  337. used together. If you need to store per user information in your app, use
  338. a :class:`~django.db.models.ForeignKey` or
  339. :class:`~django.db.models.OneToOneField` to ``settings.AUTH_USER_MODEL``
  340. as described below.
  341. Referencing the ``User`` model
  342. ------------------------------
  343. .. currentmodule:: django.contrib.auth
  344. If you reference :class:`~django.contrib.auth.models.User` directly (for
  345. example, by referring to it in a foreign key), your code will not work in
  346. projects where the :setting:`AUTH_USER_MODEL` setting has been changed to a
  347. different user model.
  348. .. function:: get_user_model()
  349. Instead of referring to :class:`~django.contrib.auth.models.User` directly,
  350. you should reference the user model using
  351. ``django.contrib.auth.get_user_model()``. This method will return the
  352. currently active user model -- the custom user model if one is specified, or
  353. :class:`~django.contrib.auth.models.User` otherwise.
  354. When you define a foreign key or many-to-many relations to the user model,
  355. you should specify the custom model using the :setting:`AUTH_USER_MODEL`
  356. setting. For example::
  357. from django.conf import settings
  358. from django.db import models
  359. class Article(models.Model):
  360. author = models.ForeignKey(
  361. settings.AUTH_USER_MODEL,
  362. on_delete=models.CASCADE,
  363. )
  364. When connecting to signals sent by the user model, you should specify
  365. the custom model using the :setting:`AUTH_USER_MODEL` setting. For example::
  366. from django.conf import settings
  367. from django.db.models.signals import post_save
  368. def post_save_receiver(sender, instance, created, **kwargs):
  369. pass
  370. post_save.connect(post_save_receiver, sender=settings.AUTH_USER_MODEL)
  371. Generally speaking, it's easiest to refer to the user model with the
  372. :setting:`AUTH_USER_MODEL` setting in code that's executed at import time,
  373. however, it's also possible to call ``get_user_model()`` while Django
  374. is importing models, so you could use
  375. ``models.ForeignKey(get_user_model(), ...)``.
  376. If your app is tested with multiple user models, using
  377. ``@override_settings(AUTH_USER_MODEL=...)`` for example, and you cache the
  378. result of ``get_user_model()`` in a module-level variable, you may need to
  379. listen to the :data:`~django.test.signals.setting_changed` signal to clear
  380. the cache. For example::
  381. from django.apps import apps
  382. from django.contrib.auth import get_user_model
  383. from django.core.signals import setting_changed
  384. from django.dispatch import receiver
  385. @receiver(setting_changed)
  386. def user_model_swapped(**kwargs):
  387. if kwargs['setting'] == 'AUTH_USER_MODEL':
  388. apps.clear_cache()
  389. from myapp import some_module
  390. some_module.UserModel = get_user_model()
  391. .. _specifying-custom-user-model:
  392. Specifying a custom user model
  393. ------------------------------
  394. .. admonition:: Model design considerations
  395. Think carefully before handling information not directly related to
  396. authentication in your custom user model.
  397. It may be better to store app-specific user information in a model
  398. that has a relation with the user model. That allows each app to specify
  399. its own user data requirements without risking conflicts with other
  400. apps. On the other hand, queries to retrieve this related information
  401. will involve a database join, which may have an effect on performance.
  402. Django expects your custom user model to meet some minimum requirements.
  403. If you use the default authentication backend, then your model must have a
  404. single unique field that can be used for identification purposes. This can
  405. be a username, an email address, or any other unique attribute. A non-unique
  406. username field is allowed if you use a custom authentication backend that
  407. can support it.
  408. The easiest way to construct a compliant custom user model is to inherit from
  409. :class:`~django.contrib.auth.models.AbstractBaseUser`.
  410. :class:`~django.contrib.auth.models.AbstractBaseUser` provides the core
  411. implementation of a user model, including hashed passwords and tokenized
  412. password resets. You must then provide some key implementation details:
  413. .. currentmodule:: django.contrib.auth
  414. .. class:: models.CustomUser
  415. .. attribute:: USERNAME_FIELD
  416. A string describing the name of the field on the user model that is
  417. used as the unique identifier. This will usually be a username of some
  418. kind, but it can also be an email address, or any other unique
  419. identifier. The field *must* be unique (i.e., have ``unique=True`` set
  420. in its definition), unless you use a custom authentication backend that
  421. can support non-unique usernames.
  422. In the following example, the field ``identifier`` is used
  423. as the identifying field::
  424. class MyUser(AbstractBaseUser):
  425. identifier = models.CharField(max_length=40, unique=True)
  426. ...
  427. USERNAME_FIELD = 'identifier'
  428. :attr:`USERNAME_FIELD` now supports
  429. :class:`~django.db.models.ForeignKey`\s. Since there is no way to pass
  430. model instances during the :djadmin:`createsuperuser` prompt, expect the
  431. user to enter the value of :attr:`~django.db.models.ForeignKey.to_field`
  432. value (the :attr:`~django.db.models.Field.primary_key` by default) of an
  433. existing instance.
  434. .. attribute:: EMAIL_FIELD
  435. A string describing the name of the email field on the ``User`` model.
  436. This value is returned by
  437. :meth:`~models.AbstractBaseUser.get_email_field_name`.
  438. .. attribute:: REQUIRED_FIELDS
  439. A list of the field names that will be prompted for when creating a
  440. user via the :djadmin:`createsuperuser` management command. The user
  441. will be prompted to supply a value for each of these fields. It must
  442. include any field for which :attr:`~django.db.models.Field.blank` is
  443. ``False`` or undefined and may include additional fields you want
  444. prompted for when a user is created interactively.
  445. ``REQUIRED_FIELDS`` has no effect in other parts of Django, like
  446. creating a user in the admin.
  447. For example, here is the partial definition for a user model that
  448. defines two required fields - a date of birth and height::
  449. class MyUser(AbstractBaseUser):
  450. ...
  451. date_of_birth = models.DateField()
  452. height = models.FloatField()
  453. ...
  454. REQUIRED_FIELDS = ['date_of_birth', 'height']
  455. .. note::
  456. ``REQUIRED_FIELDS`` must contain all required fields on your user
  457. model, but should *not* contain the ``USERNAME_FIELD`` or
  458. ``password`` as these fields will always be prompted for.
  459. :attr:`REQUIRED_FIELDS` now supports
  460. :class:`~django.db.models.ForeignKey`\s. Since there is no way to pass
  461. model instances during the :djadmin:`createsuperuser` prompt, expect the
  462. user to enter the value of :attr:`~django.db.models.ForeignKey.to_field`
  463. value (the :attr:`~django.db.models.Field.primary_key` by default) of an
  464. existing instance.
  465. .. attribute:: is_active
  466. A boolean attribute that indicates whether the user is considered
  467. "active". This attribute is provided as an attribute on
  468. ``AbstractBaseUser`` defaulting to ``True``. How you choose to
  469. implement it will depend on the details of your chosen auth backends.
  470. See the documentation of the :attr:`is_active attribute on the built-in
  471. user model <django.contrib.auth.models.User.is_active>` for details.
  472. .. method:: get_full_name()
  473. Optional. A longer formal identifier for the user such as their full
  474. name. If implemented, this appears alongside the username in an
  475. object's history in :mod:`django.contrib.admin`.
  476. .. method:: get_short_name()
  477. Optional. A short, informal identifier for the user such as their
  478. first name. If implemented, this replaces the username in the greeting
  479. to the user in the header of :mod:`django.contrib.admin`.
  480. .. admonition:: Importing ``AbstractBaseUser``
  481. ``AbstractBaseUser`` and ``BaseUserManager`` are importable from
  482. ``django.contrib.auth.base_user`` so that they can be imported without
  483. including ``django.contrib.auth`` in :setting:`INSTALLED_APPS`.
  484. The following attributes and methods are available on any subclass of
  485. :class:`~django.contrib.auth.models.AbstractBaseUser`:
  486. .. class:: models.AbstractBaseUser
  487. .. method:: get_username()
  488. Returns the value of the field nominated by ``USERNAME_FIELD``.
  489. .. method:: clean()
  490. Normalizes the username by calling :meth:`normalize_username`. If you
  491. override this method, be sure to call ``super()`` to retain the
  492. normalization.
  493. .. classmethod:: get_email_field_name()
  494. Returns the name of the email field specified by the
  495. :attr:`~models.CustomUser.EMAIL_FIELD` attribute. Defaults to
  496. ``'email'`` if ``EMAIL_FIELD`` isn't specified.
  497. .. classmethod:: normalize_username(username)
  498. Applies NFKC Unicode normalization to usernames so that visually
  499. identical characters with different Unicode code points are considered
  500. identical.
  501. .. attribute:: models.AbstractBaseUser.is_authenticated
  502. Read-only attribute which is always ``True`` (as opposed to
  503. ``AnonymousUser.is_authenticated`` which is always ``False``).
  504. This is a way to tell if the user has been authenticated. This does not
  505. imply any permissions and doesn't check if the user is active or has
  506. a valid session. Even though normally you will check this attribute on
  507. ``request.user`` to find out whether it has been populated by the
  508. :class:`~django.contrib.auth.middleware.AuthenticationMiddleware`
  509. (representing the currently logged-in user), you should know this
  510. attribute is ``True`` for any :class:`~models.User` instance.
  511. .. attribute:: models.AbstractBaseUser.is_anonymous
  512. Read-only attribute which is always ``False``. This is a way of
  513. differentiating :class:`~models.User` and :class:`~models.AnonymousUser`
  514. objects. Generally, you should prefer using
  515. :attr:`~models.User.is_authenticated` to this attribute.
  516. .. method:: models.AbstractBaseUser.set_password(raw_password)
  517. Sets the user's password to the given raw string, taking care of the
  518. password hashing. Doesn't save the
  519. :class:`~django.contrib.auth.models.AbstractBaseUser` object.
  520. When the raw_password is ``None``, the password will be set to an
  521. unusable password, as if
  522. :meth:`~django.contrib.auth.models.AbstractBaseUser.set_unusable_password()`
  523. were used.
  524. .. method:: models.AbstractBaseUser.check_password(raw_password)
  525. Returns ``True`` if the given raw string is the correct password for
  526. the user. (This takes care of the password hashing in making the
  527. comparison.)
  528. .. method:: models.AbstractBaseUser.set_unusable_password()
  529. Marks the user as having no password set. This isn't the same as
  530. having a blank string for a password.
  531. :meth:`~django.contrib.auth.models.AbstractBaseUser.check_password()` for this user
  532. will never return ``True``. Doesn't save the
  533. :class:`~django.contrib.auth.models.AbstractBaseUser` object.
  534. You may need this if authentication for your application takes place
  535. against an existing external source such as an LDAP directory.
  536. .. method:: models.AbstractBaseUser.has_usable_password()
  537. Returns ``False`` if
  538. :meth:`~django.contrib.auth.models.AbstractBaseUser.set_unusable_password()` has
  539. been called for this user.
  540. .. method:: models.AbstractBaseUser.get_session_auth_hash()
  541. Returns an HMAC of the password field. Used for
  542. :ref:`session-invalidation-on-password-change`.
  543. :class:`~models.AbstractUser` subclasses :class:`~models.AbstractBaseUser`:
  544. .. class:: models.AbstractUser
  545. .. method:: clean()
  546. Normalizes the email by calling
  547. :meth:`.BaseUserManager.normalize_email`. If you override this method,
  548. be sure to call ``super()`` to retain the normalization.
  549. You should also define a custom manager for your user model. If your user model
  550. defines ``username``, ``email``, ``is_staff``, ``is_active``, ``is_superuser``,
  551. ``last_login``, and ``date_joined`` fields the same as Django's default user,
  552. you can just install Django's :class:`~django.contrib.auth.models.UserManager`;
  553. however, if your user model defines different fields, you'll need to define a
  554. custom manager that extends :class:`~django.contrib.auth.models.BaseUserManager`
  555. providing two additional methods:
  556. .. class:: models.CustomUserManager
  557. .. method:: models.CustomUserManager.create_user(*username_field*, password=None, \**other_fields)
  558. The prototype of ``create_user()`` should accept the username field,
  559. plus all required fields as arguments. For example, if your user model
  560. uses ``email`` as the username field, and has ``date_of_birth`` as a
  561. required field, then ``create_user`` should be defined as::
  562. def create_user(self, email, date_of_birth, password=None):
  563. # create user here
  564. ...
  565. .. method:: models.CustomUserManager.create_superuser(*username_field*, password, \**other_fields)
  566. The prototype of ``create_superuser()`` should accept the username
  567. field, plus all required fields as arguments. For example, if your user
  568. model uses ``email`` as the username field, and has ``date_of_birth``
  569. as a required field, then ``create_superuser`` should be defined as::
  570. def create_superuser(self, email, date_of_birth, password):
  571. # create superuser here
  572. ...
  573. Unlike ``create_user()``, ``create_superuser()`` *must* require the
  574. caller to provide a password.
  575. :class:`~django.contrib.auth.models.BaseUserManager` provides the following
  576. utility methods:
  577. .. class:: models.BaseUserManager
  578. .. classmethod:: models.BaseUserManager.normalize_email(email)
  579. Normalizes email addresses by lowercasing the domain portion of the
  580. email address.
  581. .. method:: models.BaseUserManager.get_by_natural_key(username)
  582. Retrieves a user instance using the contents of the field
  583. nominated by ``USERNAME_FIELD``.
  584. .. method:: models.BaseUserManager.make_random_password(length=10, allowed_chars='abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789')
  585. Returns a random password with the given length and given string of
  586. allowed characters. Note that the default value of ``allowed_chars``
  587. doesn't contain letters that can cause user confusion, including:
  588. * ``i``, ``l``, ``I``, and ``1`` (lowercase letter i, lowercase
  589. letter L, uppercase letter i, and the number one)
  590. * ``o``, ``O``, and ``0`` (lowercase letter o, uppercase letter o,
  591. and zero)
  592. Extending Django's default ``User``
  593. -----------------------------------
  594. If you're entirely happy with Django's :class:`~django.contrib.auth.models.User`
  595. model and you just want to add some additional profile information, you could
  596. simply subclass :class:`django.contrib.auth.models.AbstractUser` and add your
  597. custom profile fields, although we'd recommend a separate model as described in
  598. the "Model design considerations" note of :ref:`specifying-custom-user-model`.
  599. ``AbstractUser`` provides the full implementation of the default
  600. :class:`~django.contrib.auth.models.User` as an :ref:`abstract model
  601. <abstract-base-classes>`.
  602. .. _custom-users-and-the-built-in-auth-forms:
  603. Custom users and the built-in auth forms
  604. ----------------------------------------
  605. Django's built-in :ref:`forms <built-in-auth-forms>` and :ref:`views
  606. <built-in-auth-views>` make certain assumptions about the user model that they
  607. are working with.
  608. The following forms are compatible with any subclass of
  609. :class:`~django.contrib.auth.models.AbstractBaseUser`:
  610. * :class:`~django.contrib.auth.forms.AuthenticationForm`: Uses the username
  611. field specified by :attr:`~models.CustomUser.USERNAME_FIELD`.
  612. * :class:`~django.contrib.auth.forms.SetPasswordForm`
  613. * :class:`~django.contrib.auth.forms.PasswordChangeForm`
  614. * :class:`~django.contrib.auth.forms.AdminPasswordChangeForm`
  615. The following forms make assumptions about the user model and can be used as-is
  616. if those assumptions are met:
  617. * :class:`~django.contrib.auth.forms.PasswordResetForm`: Assumes that the user
  618. model has a field that stores the user's email address with the name returned
  619. by :meth:`~models.AbstractBaseUser.get_email_field_name` (``email`` by
  620. default) that can be used to identify the user and a boolean field named
  621. ``is_active`` to prevent password resets for inactive users.
  622. Finally, the following forms are tied to
  623. :class:`~django.contrib.auth.models.User` and need to be rewritten or extended
  624. to work with a custom user model:
  625. * :class:`~django.contrib.auth.forms.UserCreationForm`
  626. * :class:`~django.contrib.auth.forms.UserChangeForm`
  627. If your custom user model is a simple subclass of ``AbstractUser``, then you
  628. can extend these forms in this manner::
  629. from django.contrib.auth.forms import UserCreationForm
  630. from myapp.models import CustomUser
  631. class CustomUserCreationForm(UserCreationForm):
  632. class Meta(UserCreationForm.Meta):
  633. model = CustomUser
  634. fields = UserCreationForm.Meta.fields + ('custom_field',)
  635. Custom users and :mod:`django.contrib.admin`
  636. --------------------------------------------
  637. If you want your custom user model to also work with the admin, your user model
  638. must define some additional attributes and methods. These methods allow the
  639. admin to control access of the user to admin content:
  640. .. class:: models.CustomUser
  641. .. attribute:: is_staff
  642. Returns ``True`` if the user is allowed to have access to the admin site.
  643. .. attribute:: is_active
  644. Returns ``True`` if the user account is currently active.
  645. .. method:: has_perm(perm, obj=None):
  646. Returns ``True`` if the user has the named permission. If ``obj`` is
  647. provided, the permission needs to be checked against a specific object
  648. instance.
  649. .. method:: has_module_perms(app_label):
  650. Returns ``True`` if the user has permission to access models in
  651. the given app.
  652. You will also need to register your custom user model with the admin. If
  653. your custom user model extends ``django.contrib.auth.models.AbstractUser``,
  654. you can use Django's existing ``django.contrib.auth.admin.UserAdmin``
  655. class. However, if your user model extends
  656. :class:`~django.contrib.auth.models.AbstractBaseUser`, you'll need to define
  657. a custom ``ModelAdmin`` class. It may be possible to subclass the default
  658. ``django.contrib.auth.admin.UserAdmin``; however, you'll need to
  659. override any of the definitions that refer to fields on
  660. ``django.contrib.auth.models.AbstractUser`` that aren't on your
  661. custom user class.
  662. Custom users and permissions
  663. ----------------------------
  664. To make it easy to include Django's permission framework into your own user
  665. class, Django provides :class:`~django.contrib.auth.models.PermissionsMixin`.
  666. This is an abstract model you can include in the class hierarchy for your user
  667. model, giving you all the methods and database fields necessary to support
  668. Django's permission model.
  669. :class:`~django.contrib.auth.models.PermissionsMixin` provides the following
  670. methods and attributes:
  671. .. class:: models.PermissionsMixin
  672. .. attribute:: models.PermissionsMixin.is_superuser
  673. Boolean. Designates that this user has all permissions without
  674. explicitly assigning them.
  675. .. method:: models.PermissionsMixin.get_group_permissions(obj=None)
  676. Returns a set of permission strings that the user has, through their
  677. groups.
  678. If ``obj`` is passed in, only returns the group permissions for
  679. this specific object.
  680. .. method:: models.PermissionsMixin.get_all_permissions(obj=None)
  681. Returns a set of permission strings that the user has, both through
  682. group and user permissions.
  683. If ``obj`` is passed in, only returns the permissions for this
  684. specific object.
  685. .. method:: models.PermissionsMixin.has_perm(perm, obj=None)
  686. Returns ``True`` if the user has the specified permission, where
  687. ``perm`` is in the format ``"<app label>.<permission codename>"`` (see
  688. :ref:`permissions <topic-authorization>`). If the user is inactive, this method will
  689. always return ``False``.
  690. If ``obj`` is passed in, this method won't check for a permission for
  691. the model, but for this specific object.
  692. .. method:: models.PermissionsMixin.has_perms(perm_list, obj=None)
  693. Returns ``True`` if the user has each of the specified permissions,
  694. where each perm is in the format
  695. ``"<app label>.<permission codename>"``. If the user is inactive,
  696. this method will always return ``False``.
  697. If ``obj`` is passed in, this method won't check for permissions for
  698. the model, but for the specific object.
  699. .. method:: models.PermissionsMixin.has_module_perms(package_name)
  700. Returns ``True`` if the user has any permissions in the given package
  701. (the Django app label). If the user is inactive, this method will
  702. always return ``False``.
  703. .. admonition:: ``PermissionsMixin`` and ``ModelBackend``
  704. If you don't include the
  705. :class:`~django.contrib.auth.models.PermissionsMixin`, you must ensure you
  706. don't invoke the permissions methods on ``ModelBackend``. ``ModelBackend``
  707. assumes that certain fields are available on your user model. If your user
  708. model doesn't provide those fields, you'll receive database errors when
  709. you check permissions.
  710. Custom users and proxy models
  711. -----------------------------
  712. One limitation of custom user models is that installing a custom user model
  713. will break any proxy model extending :class:`~django.contrib.auth.models.User`.
  714. Proxy models must be based on a concrete base class; by defining a custom user
  715. model, you remove the ability of Django to reliably identify the base class.
  716. If your project uses proxy models, you must either modify the proxy to extend
  717. the user model that's in use in your project, or merge your proxy's behavior
  718. into your :class:`~django.contrib.auth.models.User` subclass.
  719. A full example
  720. --------------
  721. Here is an example of an admin-compliant custom user app. This user model uses
  722. an email address as the username, and has a required date of birth; it
  723. provides no permission checking, beyond a simple ``admin`` flag on the user
  724. account. This model would be compatible with all the built-in auth forms and
  725. views, except for the user creation forms. This example illustrates how most of
  726. the components work together, but is not intended to be copied directly into
  727. projects for production use.
  728. This code would all live in a ``models.py`` file for a custom
  729. authentication app::
  730. from django.db import models
  731. from django.contrib.auth.models import (
  732. BaseUserManager, AbstractBaseUser
  733. )
  734. class MyUserManager(BaseUserManager):
  735. def create_user(self, email, date_of_birth, password=None):
  736. """
  737. Creates and saves a User with the given email, date of
  738. birth and password.
  739. """
  740. if not email:
  741. raise ValueError('Users must have an email address')
  742. user = self.model(
  743. email=self.normalize_email(email),
  744. date_of_birth=date_of_birth,
  745. )
  746. user.set_password(password)
  747. user.save(using=self._db)
  748. return user
  749. def create_superuser(self, email, date_of_birth, password):
  750. """
  751. Creates and saves a superuser with the given email, date of
  752. birth and password.
  753. """
  754. user = self.create_user(
  755. email,
  756. password=password,
  757. date_of_birth=date_of_birth,
  758. )
  759. user.is_admin = True
  760. user.save(using=self._db)
  761. return user
  762. class MyUser(AbstractBaseUser):
  763. email = models.EmailField(
  764. verbose_name='email address',
  765. max_length=255,
  766. unique=True,
  767. )
  768. date_of_birth = models.DateField()
  769. is_active = models.BooleanField(default=True)
  770. is_admin = models.BooleanField(default=False)
  771. objects = MyUserManager()
  772. USERNAME_FIELD = 'email'
  773. REQUIRED_FIELDS = ['date_of_birth']
  774. def __str__(self):
  775. return self.email
  776. def has_perm(self, perm, obj=None):
  777. "Does the user have a specific permission?"
  778. # Simplest possible answer: Yes, always
  779. return True
  780. def has_module_perms(self, app_label):
  781. "Does the user have permissions to view the app `app_label`?"
  782. # Simplest possible answer: Yes, always
  783. return True
  784. @property
  785. def is_staff(self):
  786. "Is the user a member of staff?"
  787. # Simplest possible answer: All admins are staff
  788. return self.is_admin
  789. Then, to register this custom user model with Django's admin, the following
  790. code would be required in the app's ``admin.py`` file::
  791. from django import forms
  792. from django.contrib import admin
  793. from django.contrib.auth.models import Group
  794. from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
  795. from django.contrib.auth.forms import ReadOnlyPasswordHashField
  796. from customauth.models import MyUser
  797. class UserCreationForm(forms.ModelForm):
  798. """A form for creating new users. Includes all the required
  799. fields, plus a repeated password."""
  800. password1 = forms.CharField(label='Password', widget=forms.PasswordInput)
  801. password2 = forms.CharField(label='Password confirmation', widget=forms.PasswordInput)
  802. class Meta:
  803. model = MyUser
  804. fields = ('email', 'date_of_birth')
  805. def clean_password2(self):
  806. # Check that the two password entries match
  807. password1 = self.cleaned_data.get("password1")
  808. password2 = self.cleaned_data.get("password2")
  809. if password1 and password2 and password1 != password2:
  810. raise forms.ValidationError("Passwords don't match")
  811. return password2
  812. def save(self, commit=True):
  813. # Save the provided password in hashed format
  814. user = super().save(commit=False)
  815. user.set_password(self.cleaned_data["password1"])
  816. if commit:
  817. user.save()
  818. return user
  819. class UserChangeForm(forms.ModelForm):
  820. """A form for updating users. Includes all the fields on
  821. the user, but replaces the password field with admin's
  822. password hash display field.
  823. """
  824. password = ReadOnlyPasswordHashField()
  825. class Meta:
  826. model = MyUser
  827. fields = ('email', 'password', 'date_of_birth', 'is_active', 'is_admin')
  828. def clean_password(self):
  829. # Regardless of what the user provides, return the initial value.
  830. # This is done here, rather than on the field, because the
  831. # field does not have access to the initial value
  832. return self.initial["password"]
  833. class UserAdmin(BaseUserAdmin):
  834. # The forms to add and change user instances
  835. form = UserChangeForm
  836. add_form = UserCreationForm
  837. # The fields to be used in displaying the User model.
  838. # These override the definitions on the base UserAdmin
  839. # that reference specific fields on auth.User.
  840. list_display = ('email', 'date_of_birth', 'is_admin')
  841. list_filter = ('is_admin',)
  842. fieldsets = (
  843. (None, {'fields': ('email', 'password')}),
  844. ('Personal info', {'fields': ('date_of_birth',)}),
  845. ('Permissions', {'fields': ('is_admin',)}),
  846. )
  847. # add_fieldsets is not a standard ModelAdmin attribute. UserAdmin
  848. # overrides get_fieldsets to use this attribute when creating a user.
  849. add_fieldsets = (
  850. (None, {
  851. 'classes': ('wide',),
  852. 'fields': ('email', 'date_of_birth', 'password1', 'password2')}
  853. ),
  854. )
  855. search_fields = ('email',)
  856. ordering = ('email',)
  857. filter_horizontal = ()
  858. # Now register the new UserAdmin...
  859. admin.site.register(MyUser, UserAdmin)
  860. # ... and, since we're not using Django's built-in permissions,
  861. # unregister the Group model from admin.
  862. admin.site.unregister(Group)
  863. Finally, specify the custom model as the default user model for your project
  864. using the :setting:`AUTH_USER_MODEL` setting in your ``settings.py``::
  865. AUTH_USER_MODEL = 'customauth.MyUser'